mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 19:59:31 +01:00
20 lines
609 B
Makefile
20 lines
609 B
Makefile
all: Konfluenz.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf Polynomordnung.pdf SystemF.pdf PumpingLemma.pdf
|
|
|
|
continuous: $(PDF).continuous
|
|
|
|
clean: cleanup all
|
|
|
|
cleanup:
|
|
-rm -f *.aux *.fdb_latexmk *.fls *.log *.pdf
|
|
single: all
|
|
-pdftk Polynomordnung.pdf Konfluenz.pdf SystemF.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf PumpingLemma.pdf cat output ThProgCheatsheet.pdf
|
|
|
|
|
|
%.continuous: %.pdf
|
|
@command ||: latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
|
|
|
|
%.pdf: %.tex
|
|
@command ||: latexmk -jobname=$(@:%.pdf=%) -pdf $<
|
|
|
|
.PHONY: all continuous cleanup single
|