diff options
author | Karel Kočí <cynerd@email.cz> | 2023-10-07 07:38:42 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-10-07 07:39:07 +0200 |
commit | d2665d506b876d72acf2d301188bcf78d1f30fdc (patch) | |
tree | 77434d3379bba619f4bfe67170b9ae8540eb02d6 /2023-linuxdays/usbkey/makefile | |
parent | f91786db5b9f7e17a94ce7316fef08313c014cf2 (diff) | |
download | presentations-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/makefile | 10 |
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 |