diff options
author | Karel Kočí <cynerd@email.cz> | 2020-10-03 16:21:41 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-10-03 16:21:41 +0200 |
commit | 4d940eff936ce867b3180b5a63a4302d73260dcb (patch) | |
tree | fa7feb5476c8cb1412e439b7db5a914b399cd3e2 /2020-linuxdays/makefile | |
parent | 23f7ecb6e15a5da5ca9f3c88edf8c644be43c556 (diff) | |
download | presentations-4d940eff936ce867b3180b5a63a4302d73260dcb.tar.gz presentations-4d940eff936ce867b3180b5a63a4302d73260dcb.tar.bz2 presentations-4d940eff936ce867b3180b5a63a4302d73260dcb.zip |
Add presentation for Linuxdays 2020
Diffstat (limited to '2020-linuxdays/makefile')
-rw-r--r-- | 2020-linuxdays/makefile | 10 |
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 |