mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 03:49:31 +01:00
19 lines
280 B
Makefile
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
|