From b2988569408f0e22288211bbbaf9e0e3a21ba206 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Thu, 10 Sep 2015 13:06:50 -0500 Subject: [PATCH] Add output when build complete --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1598e95e..e1b98e35 100644 --- a/Makefile +++ b/Makefile @@ -43,11 +43,12 @@ xep-%.pdf: $(OUTDIR)/xep-%.pdf $(OUTDIR)/%.html: %.xml $(XMLDEPS) - xsltproc --path $(CURDIR) xep.xsl "$<" > "$@" + xsltproc --path $(CURDIR) xep.xsl "$<" > "$@" && echo "Finished building $@" $(OUTDIR)/%.pdf: %.xml $(TEMPDIR)/%.xml.texml $(TEMPDIR)/%.xml.texml.tex $(TEXMLDEPS) cd $(TEMPDIR); xelatex $(TEMPDIR)/$<.texml.tex mv $(TEMPDIR)/$<.texml.pdf $(OUTDIR)/$(patsubst %.xml.pdf,%.pdf,$<.pdf) + echo "Finished building $(patsubst %.xml.pdf,%.pdf,$<.pdf)" $(TEMPDIR)/%.xml.texml: %.xml $(TEXMLDEPS) $(TEMPDIR) xsltproc -o $(TEMPDIR)/$<.texml xep2texml.xsl "$<"