From b2cf8fb1022b846a9c6566d462a5cbd0a6dd1102 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Tue, 22 Sep 2015 21:03:35 +0200 Subject: [PATCH] Makefile: Whitespace fixes --- Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 2f306c47..09d72248 100644 --- a/Makefile +++ b/Makefile @@ -31,16 +31,13 @@ html: $(patsubst %.xml, $(OUTDIR)/%.html, $(wildcard *.xml)) pdf: $(patsubst %.xml, $(OUTDIR)/%.pdf, $(wildcard *.xml)) .PHONY: xep-% -xep-%: $(OUTDIR)/xep-%.html $(OUTDIR)/xep-%.pdf - +xep-%: $(OUTDIR)/xep-%.html $(OUTDIR)/xep-%.pdf ; .PHONY: xep-%.html -xep-%.html: $(OUTDIR)/xep-%.html - +xep-%.html: $(OUTDIR)/xep-%.html ; .PHONY: xep-%.pdf -xep-%.pdf: $(OUTDIR)/xep-%.pdf - +xep-%.pdf: $(OUTDIR)/xep-%.pdf ; $(OUTDIR)/%.html: %.xml $(XMLDEPS) xsltproc --path $(CURDIR) xep.xsl "$<" > "$@" && echo "Finished building $@"