1
0
mirror of https://gitlab.cs.fau.de/ik15ydit/latexandmore.git synced 2025-03-17 23:29:31 +01:00
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