aboutsummaryrefslogtreecommitdiff
path: root/linuxdays2017/Makefile
blob: 0c3c782eac892ef36b4f77edb1a1213b2603e3c7 (plain)
1
2
3
4
5
6
7
8
9
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|theme|svg|png|eps)$$" | xargs rm -rf