mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 19:59:31 +01:00
98be59801b
git-subtree-dir: idb_skript git-subtree-mainline:d4458978d8
git-subtree-split:c58e48248d
19 lines
282 B
Makefile
19 lines
282 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
|