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