put .PHONY rule at top of Makefile

This commit is contained in:
Johannes Knoedtel 2017-10-05 13:53:26 +02:00
parent 0b17e06b66
commit 5c05aca793

View File

@ -1,3 +1,5 @@
.PHONY: all continuous cleanup single clean rmpdf
all: single all: single
@-pdfunite Polynomordnung.pdf Konfluenz.pdf SystemF.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf PumpingLemma.pdf ThProgCheatsheet.pdf @-pdfunite Polynomordnung.pdf Konfluenz.pdf SystemF.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf PumpingLemma.pdf ThProgCheatsheet.pdf
@ -18,5 +20,3 @@ cleanup:
%.pdf: %.tex %.pdf: %.tex
@latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $< 1>/dev/null @latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $< 1>/dev/null
.PHONY: all continuous cleanup single clean rmpdf