remove trailing whitespace

This commit is contained in:
Johannes Knoedtel 2017-10-05 14:04:25 +02:00
parent d1ae89bdd6
commit 9d583fc4f1

View File

@ -1,8 +1,8 @@
PDF = document
all: $(PDF)
all: $(PDF)
continuous: $(PDF).continuous
continuous: $(PDF).continuous
%.continuous: %.pdf
latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
@ -15,8 +15,8 @@ $(PDF): $(PDF).pdf
clean:
latexmk -c -f $(PDF).tex
distclean:
distclean:
latexmk -C -f $(PDF).tex
rm -f $(PDF).pdf
rm -f $(PDF).pdf
.PHONY: all clean distclean $(PDF) continuous