Let xep-xxxx target build all versions of an XEP

This commit is contained in:
Sam Whited 2017-01-09 13:34:50 -06:00
parent c505afdc96
commit 0e782f6246
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ help:
@echo ' html - build all XEPs'
@echo ' clean - recursively unlink the build tree'
@echo ' preview - builds html whenever an XEP changes (requires inotify-tools)'
@echo ' xep-xxxx - build xep-xxxx.html'
@echo ' xep-xxxx - build HTML, PDF, and reference forms of an XEP'
@echo ' xep-xxxx.pdf - build xep-xxxx.pdf (requires xelatex and texml)'
@echo ' xep-xxxx.html - build xep-xxxx.html'
@echo ' '
@ -38,7 +38,7 @@ pdf: $(patsubst %.xml, $(OUTDIR)/%.pdf, $(wildcard *.xml))
refs: $(patsubst xep-%.xml, $(REFSDIR)/reference.XSF.XEP-%.xml, $(wildcard *.xml))
.PHONY: xep-%
xep-%: $(OUTDIR)/xep-%.html $(REFSDIR)/reference.XSF.XEP-%.xml;
xep-%: $(OUTDIR)/xep-%.html $(REFSDIR)/reference.XSF.XEP-%.xml $(OUTDIR)/xep-%.pdf;
.PHONY: xep-%.html
xep-%.html: $(OUTDIR)/xep-%.html ;