1 MAN1_TXT=$(wildcard git-*.txt) gitk.txt
4 DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
7 ARTICLES += core-tutorial
8 ARTICLES += cvs-migration
10 ARTICLES += howto-index
11 ARTICLES += repository-layout
14 # with their own formatting rules.
15 SP_ARTICLES = glossary howto/revert-branch-rebase
17 DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
19 DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
20 DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
32 # Please note that there is a minor bug in asciidoc.
33 # The version after 6.0.3 _will_ include the patch found here:
34 # http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
36 # Until that version is released you may have to apply the patch
37 # yourself - yes, all 6 characters of it!
50 $(INSTALL) -d -m755 $(DESTDIR)/$(man1) $(DESTDIR)/$(man7)
51 $(INSTALL) $(DOC_MAN1) $(DESTDIR)/$(man1)
52 $(INSTALL) $(DOC_MAN7) $(DESTDIR)/$(man7)
56 # Determine "include::" file references in asciidoc files.
58 doc.dep : $(wildcard *.txt) build-docdep.perl
60 perl ./build-docdep.perl >$@+
72 rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html doc.dep README
75 asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
81 asciidoc -b docbook -d manpage -f asciidoc.conf $<
83 git.html: git.txt README
85 glossary.html : glossary.txt sort_glossary.pl
87 perl sort_glossary.pl | \
88 asciidoc -b xhtml11 - > glossary.html
90 howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
92 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
95 $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
96 asciidoc -b xhtml11 $*.txt
98 WEBDOC_DEST = /pub/software/scm/git/docs
100 $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
102 sed -e '1,/^$$/d' $? | asciidoc -b xhtml11 - >$@+
105 install-webdoc : html
106 sh ./install-webdoc.sh $(WEBDOC_DEST)