diff options
author | Karel Kočí <cynerd@email.cz> | 2017-03-04 17:05:55 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-03-04 17:05:55 +0100 |
commit | 9cae2c9499391d074bf4122d37488da254d67573 (patch) | |
tree | f998437780ea2bb0187f3badd6bb9c9b70a1588c /installfest2017/makefile | |
download | presentations-9cae2c9499391d074bf4122d37488da254d67573.tar.gz presentations-9cae2c9499391d074bf4122d37488da254d67573.tar.bz2 presentations-9cae2c9499391d074bf4122d37488da254d67573.zip |
InstallFest 2017
3 problemy pri praci na 3 pocitacich
Diffstat (limited to 'installfest2017/makefile')
-rw-r--r-- | installfest2017/makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/installfest2017/makefile b/installfest2017/makefile new file mode 100644 index 0000000..9ab8f60 --- /dev/null +++ b/installfest2017/makefile @@ -0,0 +1,10 @@ +FILE=pres + +$(FILE).pdf: $(FILE).tex $(patsubst %.svg,%.pdf,$(wildcard *.svg)) + pdflatex -shell-escape $< + +%.pdf: %.svg + inkscape -D -z --file=$< --export-pdf=$@ --export-latex + +clean: + ls | grep -v -E "($(FILE).tex|makefile|scheme|svg|png|eps)$$" | xargs rm -rf |