mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-21 19:43:17 +01:00
20 lines
471 B
Makefile
20 lines
471 B
Makefile
all: klausur_idb_SS16.pdf solutions
|
|
|
|
solutions:
|
|
@pdflatex --jobname=klausur_idb_SS16_ML "\def\withsolutions{1} \input{klausur_idb_SS16.tex}"
|
|
|
|
continuous: $(PDF).continuous
|
|
|
|
clean: cleanup
|
|
|
|
cleanup:
|
|
@-rm -f *.aux *.fdb_latexmk *.fls *.log
|
|
|
|
%.continuous: %.pdf
|
|
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
|
|
|
|
%.pdf: %.tex
|
|
@latexmk -jobname=$(@:%.pdf=%) -pdf -halt-on-error $<
|
|
|
|
.PHONY: all continuous cleanup single clean rmpdf solutions
|