mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 03:49:31 +01:00
20 lines
437 B
Makefile
20 lines
437 B
Makefile
all: KlausurLV_SS14_September2014.tex KlausurLV_WS1415_Maerz2015.tex
|
|
|
|
continuous: $(PDF).continuous
|
|
|
|
clean: cleanup rmpdf
|
|
|
|
rmpdf:
|
|
@-rm -f *.pdf
|
|
|
|
cleanup:
|
|
@-rm -f *.aux *.fdb_latexmk *.fls *.log
|
|
|
|
%.continuous: %.pdf
|
|
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
|
|
|
|
%.pdf: %.tex
|
|
@latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $< 1>/dev/null
|
|
|
|
.PHONY: all continuous cleanup single clean rmpdf
|