2 $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
3 $(wildcard git-*.txt)) \
7 DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
10 ARTICLES += tutorial-2
11 ARTICLES += core-tutorial
12 ARTICLES += cvs-migration
14 ARTICLES += howto-index
15 ARTICLES += repository-layout
19 # with their own formatting rules.
20 SP_ARTICLES = glossary howto/revert-branch-rebase
22 DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
24 DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
25 DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
30 man1dir=$(mandir)/man1
31 man7dir=$(mandir)/man7
37 # Please note that there is a minor bug in asciidoc.
38 # The version after 6.0.3 _will_ include the patch found here:
39 # http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
41 # Until that version is released you may have to apply the patch
42 # yourself - yes, all 6 characters of it!
49 $(DOC_HTML) $(DOC_MAN1) $(DOC_MAN7): asciidoc.conf
56 $(INSTALL) -d -m755 $(DESTDIR)$(man1dir) $(DESTDIR)$(man7dir)
57 $(INSTALL) $(DOC_MAN1) $(DESTDIR)$(man1dir)
58 $(INSTALL) $(DOC_MAN7) $(DESTDIR)$(man7dir)
62 # Determine "include::" file references in asciidoc files.
64 doc.dep : $(wildcard *.txt) build-docdep.perl
66 perl ./build-docdep.perl >$@+
78 rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html doc.dep README
81 asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
84 xmlto -m callouts.xsl man $<
87 asciidoc -b docbook -d manpage -f asciidoc.conf $<
89 git.html: git.txt README
91 glossary.html : glossary.txt sort_glossary.pl
93 perl sort_glossary.pl | \
94 asciidoc -b xhtml11 - > glossary.html
96 howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
98 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
101 $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
102 asciidoc -b xhtml11 $*.txt
104 WEBDOC_DEST = /pub/software/scm/git/docs
106 $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
108 sed -e '1,/^$$/d' $? | asciidoc -b xhtml11 - >$@+
111 install-webdoc : html
112 sh ./install-webdoc.sh $(WEBDOC_DEST)