latexandmore/IDB/idb_skript_greeny/Makefile
2017-10-05 14:03:34 +02:00

19 lines
280 B
Makefile

PDF = IDB
all: $(PDF)
continuous: $(PDF).continuous
%.continuous: %.pdf
latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
$(PDF): $(PDF).pdf
%.pdf: %.tex
latexmk -jobname=$(@:%.pdf=%) -pdf $<
clean:
latexmk -c -f
.PHONY: all clean $(PDF) continuous