aboutsummaryrefslogtreecommitdiff
path: root/2020-linuxdays/makefile
diff options
context:
space:
mode:
Diffstat (limited to '2020-linuxdays/makefile')
-rw-r--r--2020-linuxdays/makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/2020-linuxdays/makefile b/2020-linuxdays/makefile
new file mode 100644
index 0000000..a90bd93
--- /dev/null
+++ b/2020-linuxdays/makefile
@@ -0,0 +1,10 @@
+FILE=pres
+
+$(FILE).pdf: $(FILE).tex $(patsubst %.svg,%.pdf,$(wildcard *.svg))
+ lualatex -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