slidenado/Makefile

18 lines
383 B
Makefile
Raw Normal View History

2018-08-19 15:23:40 +02:00
PRESENTATIONS=$(patsubst %.tex, %.pdf, $(wildcard presentations/*.tex))
all: ${PRESENTATIONS}
2018-08-19 15:40:27 +02:00
clean:
rm -f presentations/*.log
rm -f presentations/*.out
rm -f presentations/*.nav
rm -f presentations/*.aux
rm -f presentations/*.snm
rm -f presentations/*.toc
2018-08-08 20:25:42 +02:00
.ONESHELL:
presentations/%.pdf : presentations/%.tex
cd presentations
pdflatex $(notdir $<)
pdflatex $(notdir $<)