mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 11:49:32 +01:00
b0eec2f644
cleanup added to makefile
15 lines
364 B
Makefile
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
|