mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-24 18:22:24 -05:00
Add output when build complete
This commit is contained in:
parent
4eec7f6324
commit
b298856940
3
Makefile
3
Makefile
@ -43,11 +43,12 @@ xep-%.pdf: $(OUTDIR)/xep-%.pdf
|
|||||||
|
|
||||||
|
|
||||||
$(OUTDIR)/%.html: %.xml $(XMLDEPS)
|
$(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)
|
$(OUTDIR)/%.pdf: %.xml $(TEMPDIR)/%.xml.texml $(TEMPDIR)/%.xml.texml.tex $(TEXMLDEPS)
|
||||||
cd $(TEMPDIR); xelatex $(TEMPDIR)/$<.texml.tex
|
cd $(TEMPDIR); xelatex $(TEMPDIR)/$<.texml.tex
|
||||||
mv $(TEMPDIR)/$<.texml.pdf $(OUTDIR)/$(patsubst %.xml.pdf,%.pdf,$<.pdf)
|
mv $(TEMPDIR)/$<.texml.pdf $(OUTDIR)/$(patsubst %.xml.pdf,%.pdf,$<.pdf)
|
||||||
|
echo "Finished building $(patsubst %.xml.pdf,%.pdf,$<.pdf)"
|
||||||
|
|
||||||
$(TEMPDIR)/%.xml.texml: %.xml $(TEXMLDEPS) $(TEMPDIR)
|
$(TEMPDIR)/%.xml.texml: %.xml $(TEXMLDEPS) $(TEMPDIR)
|
||||||
xsltproc -o $(TEMPDIR)/$<.texml xep2texml.xsl "$<"
|
xsltproc -o $(TEMPDIR)/$<.texml xep2texml.xsl "$<"
|
||||||
|
Loading…
Reference in New Issue
Block a user