latexandmore/ThProg/Makefile

23 lines
651 B
Makefile
Raw Normal View History

2017-10-05 13:53:26 +02:00
.PHONY: all continuous cleanup single clean rmpdf
2017-10-03 12:41:27 +02:00
all: single
@-pdfunite Polynomordnung.pdf Konfluenz.pdf SystemF.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf PumpingLemma.pdf ThProgCheatsheet.pdf
single: Konfluenz.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf Polynomordnung.pdf SystemF.pdf PumpingLemma.pdf
2015-10-07 21:10:52 +02:00
2015-10-08 21:44:34 +02:00
continuous: $(PDF).continuous
2015-10-07 21:10:52 +02:00
2017-10-05 13:59:09 +02:00
clean: cleanup rmpdf
2015-10-08 21:44:34 +02:00
rmpdf:
2017-10-05 13:53:59 +02:00
@-rm -f *.pdf
2015-10-08 15:06:33 +02:00
2017-10-05 13:53:59 +02:00
cleanup:
2015-10-08 21:44:34 +02:00
@-rm -f *.aux *.fdb_latexmk *.fls *.log
2015-10-08 19:40:07 +02:00
2015-10-07 21:10:52 +02:00
%.continuous: %.pdf
2015-10-08 21:44:34 +02:00
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
2015-10-07 21:10:52 +02:00
%.pdf: %.tex
2015-10-08 21:44:34 +02:00
@latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $< 1>/dev/null