X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/fd52912d651e59701714b4b957757bca4725a728..224ef1ec6e53988776b257de48a0b559ef43a8be:/Documentation/Makefile diff --git a/Documentation/Makefile b/Documentation/Makefile index c53c4af..dd029d5 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -1,13 +1,14 @@ -MAN1_TXT=$(wildcard stg*.txt) +COMMANDS = $(shell ../stg-build --commands) +COMMANDS_TXT = $(patsubst %,stg-%.txt,$(COMMANDS)) + +MAN1_TXT= stg.txt $(COMMANDS_TXT) DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT)) -ARTICLES = -# with their own formatting rules. -SP_ARTICLES = tutorial +ARTICLES = tutorial -DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES)) -DOC_PDF += $(patsubst %,%.pdf,$(ARTICLES) $(SP_ARTICLES)) +DOC_HTML += $(patsubst %,%.html,$(ARTICLES)) +DOC_PDF += $(patsubst %,%.pdf,$(ARTICLES)) DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT)) @@ -57,7 +58,15 @@ doc.dep : $(wildcard *.txt) build-docdep.perl -include doc.dep clean: - rm -f *.xml *.html *.pdf *.1 doc.dep + rm -f *.xml *.html *.pdf *.1 doc.dep $(COMMANDS_TXT) command-list.txt + +ALL_PY = $(shell find ../stgit -name '*.py') + +$(COMMANDS_TXT): $(ALL_PY) + ../stg-build --asciidoc $(basename $(subst stg-,,$@)) > $@ + +command-list.txt: $(ALL_PY) + ../stg-build --cmd-list > $@ %.html : %.txt $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf $(ASCIIDOC_EXTRA) $< @@ -73,6 +82,7 @@ clean: # special formatting rules tutorial.html : %.html : %.txt - $(ASCIIDOC) -b xhtml11 -d article -f tutorial.conf $(ASCIIDOC_EXTRA) $< + $(ASCIIDOC) -b xhtml11 -d article -a toc -f tutorial.conf \ + $(ASCIIDOC_EXTRA) $< tutorial.xml : %.xml : %.txt $(ASCIIDOC) -b docbook -d article -f tutorial.conf $<