diff options
author | Karel Kočí <cynerd@email.cz> | 2018-10-07 20:03:35 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-10-07 20:03:35 +0200 |
commit | 7cf03a1555d46117b5f1a3d0db7c28c02498fcee (patch) | |
tree | e7ded2835880ad350fad3209ce667f469858cfed /2018-linuxdays/makefile | |
parent | 8958b564509b4a4a63004763d70457d3ff5e5392 (diff) | |
download | presentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.tar.gz presentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.tar.bz2 presentations-7cf03a1555d46117b5f1a3d0db7c28c02498fcee.zip |
Add presentation from LinuxDays 2018
Diffstat (limited to '2018-linuxdays/makefile')
-rw-r--r-- | 2018-linuxdays/makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2018-linuxdays/makefile b/2018-linuxdays/makefile new file mode 100644 index 0000000..9ab8f60 --- /dev/null +++ b/2018-linuxdays/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 |