aboutsummaryrefslogtreecommitdiff
path: root/2017-meetandcode/Makefile
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-10-17 20:09:12 +0200
committerKarel Kočí <cynerd@email.cz>2017-10-17 20:10:07 +0200
commit038a291a1aacb72e395318008cf4c5631887c613 (patch)
tree30ca8bb6547377620126585590874a7b9919614f /2017-meetandcode/Makefile
parent4555491b5fdb3f38c731e409c2f98b46ac675efa (diff)
downloadpresentations-038a291a1aacb72e395318008cf4c5631887c613.tar.gz
presentations-038a291a1aacb72e395318008cf4c5631887c613.tar.bz2
presentations-038a291a1aacb72e395318008cf4c5631887c613.zip
Add presentation from Meet and Code
Diffstat (limited to '2017-meetandcode/Makefile')
-rw-r--r--2017-meetandcode/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/2017-meetandcode/Makefile b/2017-meetandcode/Makefile
new file mode 100644
index 0000000..5366756
--- /dev/null
+++ b/2017-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)$$" | xargs rm -rf