aboutsummaryrefslogtreecommitdiff
path: root/2023-linuxdays/usbkey/makefile
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2023-10-07 07:38:42 +0200
committerKarel Kočí <cynerd@email.cz>2023-10-07 07:39:07 +0200
commitd2665d506b876d72acf2d301188bcf78d1f30fdc (patch)
tree77434d3379bba619f4bfe67170b9ae8540eb02d6 /2023-linuxdays/usbkey/makefile
parentf91786db5b9f7e17a94ce7316fef08313c014cf2 (diff)
downloadpresentations-d2665d506b876d72acf2d301188bcf78d1f30fdc.tar.gz
presentations-d2665d506b876d72acf2d301188bcf78d1f30fdc.tar.bz2
presentations-d2665d506b876d72acf2d301188bcf78d1f30fdc.zip
Add presentation about USBKey: LinuxDays 2023
Diffstat (limited to '2023-linuxdays/usbkey/makefile')
-rw-r--r--2023-linuxdays/usbkey/makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/2023-linuxdays/usbkey/makefile b/2023-linuxdays/usbkey/makefile
new file mode 100644
index 0000000..7b97a99
--- /dev/null
+++ b/2023-linuxdays/usbkey/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