latexandmore/IDB/klausur_ss16/Makefile

20 lines
471 B
Makefile
Raw Permalink Normal View History

2017-02-23 12:13:05 +01:00
all: klausur_idb_SS16.pdf solutions
2017-10-05 14:03:43 +02:00
solutions:
2017-02-23 12:13:05 +01:00
@pdflatex --jobname=klausur_idb_SS16_ML "\def\withsolutions{1} \input{klausur_idb_SS16.tex}"
2017-01-28 22:04:27 +01:00
continuous: $(PDF).continuous
2017-10-05 14:11:06 +02:00
clean: cleanup
2017-01-28 22:04:27 +01:00
2017-10-05 14:03:43 +02:00
cleanup:
2017-01-28 22:04:27 +01:00
@-rm -f *.aux *.fdb_latexmk *.fls *.log
%.continuous: %.pdf
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
%.pdf: %.tex
2017-02-15 23:24:28 +01:00
@latexmk -jobname=$(@:%.pdf=%) -pdf -halt-on-error $<
2017-01-28 22:04:27 +01:00
.PHONY: all continuous cleanup single clean rmpdf solutions