latexandmore/RK/Makefile

20 lines
422 B
Makefile
Raw Normal View History

2018-02-16 08:56:03 +01:00
all: KlausurLV_SS14_September.pdf KlausurLV_WS1415_Maerz.pdf
2017-02-10 13:25:07 +01:00
continuous: $(PDF).continuous
2017-10-05 14:00:59 +02:00
clean: cleanup rmpdf
2017-02-10 13:25:07 +01:00
rmpdf:
2017-10-05 13:59:37 +02:00
@-rm -f *.pdf
2017-02-10 13:25:07 +01:00
2017-10-05 13:59:37 +02:00
cleanup:
2018-02-16 08:56:03 +01:00
@-rm -f *.aux *.fdb_latexmk *.fls *.log *.out
2017-02-10 13:25:07 +01:00
%.continuous: %.pdf
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
%.pdf: %.tex
2018-02-16 08:56:03 +01:00
@latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $<
2017-02-10 13:25:07 +01:00
.PHONY: all continuous cleanup single clean rmpdf