latexandmore/Vorlesungen/ThProg/Makefile
Sheppy b0eec2f644 PumpingLemma commit
cleanup added to makefile
2015-10-07 23:39:35 +02:00

15 lines
364 B
Makefile

all: Konfluenz.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf Polynomordnung.pdf SystemF.pdf
continuous: $(PDF).continuous
cleanup:
-rm -f *.aux *.fdb_latexmk *.fls *.log
%.continuous: %.pdf
latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
%.pdf: %.tex
latexmk -jobname=$(@:%.pdf=%) -pdf $<
.PHONY: all continuous cleanup