diff options
author | Karel Kočí <cynerd@email.cz> | 2020-02-29 17:30:00 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-02-29 17:30:00 +0100 |
commit | 23f7ecb6e15a5da5ca9f3c88edf8c644be43c556 (patch) | |
tree | 697c75c57b4f9dd7e67f3369a768c9c84c54eda6 /2020-installfest/makefile | |
parent | 8c324e64190caf668d72b3b12d533592223ca01c (diff) | |
download | presentations-23f7ecb6e15a5da5ca9f3c88edf8c644be43c556.tar.gz presentations-23f7ecb6e15a5da5ca9f3c88edf8c644be43c556.tar.bz2 presentations-23f7ecb6e15a5da5ca9f3c88edf8c644be43c556.zip |
Add presentation Installfest 2020
Diffstat (limited to '2020-installfest/makefile')
-rw-r--r-- | 2020-installfest/makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2020-installfest/makefile b/2020-installfest/makefile new file mode 100644 index 0000000..7b97a99 --- /dev/null +++ b/2020-installfest/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|jpg|eps)$$" | xargs rm -rf |