aboutsummaryrefslogtreecommitdiff
path: root/2018-meetandcode/makefile
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-10-14 22:05:05 +0200
committerKarel Kočí <cynerd@email.cz>2018-10-14 22:05:05 +0200
commit9fd25c4dd8bff24c5a09cb4c8e2edae45220ae89 (patch)
tree1bb6c291b46222217db3f999f4cc220dc7a9be9c /2018-meetandcode/makefile
parent7cf03a1555d46117b5f1a3d0db7c28c02498fcee (diff)
downloadpresentations-9fd25c4dd8bff24c5a09cb4c8e2edae45220ae89.tar.gz
presentations-9fd25c4dd8bff24c5a09cb4c8e2edae45220ae89.tar.bz2
presentations-9fd25c4dd8bff24c5a09cb4c8e2edae45220ae89.zip
Add presentation from Meet And Code
Diffstat (limited to '2018-meetandcode/makefile')
-rw-r--r--2018-meetandcode/makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/2018-meetandcode/makefile b/2018-meetandcode/makefile
new file mode 100644
index 0000000..87176ff
--- /dev/null
+++ b/2018-meetandcode/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|dot)$$" | xargs rm -rf