2 $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
3 $(wildcard git-*.txt)) \
5 MAN5_TXT=gitattributes.txt gitignore.txt gitmodules.txt
8 DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN5_TXT) $(MAN7_TXT))
11 ARTICLES += tutorial-2
12 ARTICLES += core-tutorial
13 ARTICLES += cvs-migration
15 ARTICLES += howto-index
16 ARTICLES += repository-layout
21 # with their own formatting rules.
22 SP_ARTICLES = howto/revert-branch-rebase user-manual
24 DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
26 DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
27 DOC_MAN5=$(patsubst %.txt,%.5,$(MAN5_TXT))
28 DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
32 mandir?=$(prefix)/share/man
33 man1dir=$(mandir)/man1
34 man5dir=$(mandir)/man5
35 man7dir=$(mandir)/man7
44 infodir?=$(prefix)/share/info
46 INSTALL_INFO=install-info
47 DOCBOOK2X_TEXI=docbook2x-texi
49 PERL_PATH = /usr/bin/perl
52 -include ../config.mak.autogen
53 -include ../config.mak
56 ASCIIDOC_EXTRA += -a asciidoc7compatible
59 ASCIIDOC_EXTRA += -a docbook-xsl-172
63 # Please note that there is a minor bug in asciidoc.
64 # The version after 6.0.3 _will_ include the patch found here:
65 # http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
67 # Until that version is released you may have to apply the patch
68 # yourself - yes, all 6 characters of it!
75 $(DOC_HTML) $(DOC_MAN1) $(DOC_MAN5) $(DOC_MAN7): asciidoc.conf
85 $(INSTALL) -d -m 755 $(DESTDIR)$(man1dir)
86 $(INSTALL) -d -m 755 $(DESTDIR)$(man5dir)
87 $(INSTALL) -d -m 755 $(DESTDIR)$(man7dir)
88 $(INSTALL) -m 644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
89 $(INSTALL) -m 644 $(DOC_MAN5) $(DESTDIR)$(man5dir)
90 $(INSTALL) -m 644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
93 $(INSTALL) -d -m 755 $(DESTDIR)$(infodir)
94 $(INSTALL) -m 644 git.info $(DESTDIR)$(infodir)
95 if test -r $(DESTDIR)$(infodir)/dir; then \
96 $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) git.info ;\
98 echo "No directory found in $(DESTDIR)$(infodir)" >&2 ; \
101 ../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
102 $(MAKE) -C ../ GIT-VERSION-FILE
104 -include ../GIT-VERSION-FILE
107 # Determine "include::" file references in asciidoc files.
109 doc.dep : $(wildcard *.txt) build-docdep.perl
111 $(PERL_PATH) ./build-docdep.perl >$@+
116 cmds_txt = cmds-ancillaryinterrogators.txt \
117 cmds-ancillarymanipulators.txt \
118 cmds-mainporcelain.txt \
119 cmds-plumbinginterrogators.txt \
120 cmds-plumbingmanipulators.txt \
121 cmds-synchingrepositories.txt \
122 cmds-synchelpers.txt \
123 cmds-purehelpers.txt \
124 cmds-foreignscminterface.txt
126 $(cmds_txt): cmd-list.made
128 cmd-list.made: cmd-list.perl ../command-list.txt $(MAN1_TXT)
130 $(PERL_PATH) ./cmd-list.perl ../command-list.txt
133 git.7 git.html: git.txt
136 $(RM) *.xml *.xml+ *.html *.html+ *.1 *.5 *.7 *.texi *.texi+ howto-index.txt howto/*.html doc.dep
137 $(RM) $(cmds_txt) *.made
141 $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
142 $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
147 xmlto -m callouts.xsl man $<
151 $(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
152 $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
155 user-manual.xml: user-manual.txt user-manual.conf
156 $(ASCIIDOC) -b docbook -d book $<
159 XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
161 user-manual.html: user-manual.xml
162 xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<
164 git.info: user-manual.xml
165 $(RM) $@ $*.texi $*.texi+
166 $(DOCBOOK2X_TEXI) user-manual.xml --to-stdout >$*.texi+
167 $(PERL_PATH) fix-texi.perl <$*.texi+ >$*.texi
168 $(MAKEINFO) --no-split $*.texi
169 $(RM) $*.texi $*.texi+
171 howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
173 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
176 $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
177 $(ASCIIDOC) -b xhtml11 $*.txt
179 WEBDOC_DEST = /pub/software/scm/git/docs
181 $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
183 sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+
186 install-webdoc : html
187 sh ./install-webdoc.sh $(WEBDOC_DEST)
190 sh ./install-doc-quick.sh $(DOC_REF) $(mandir)
192 .PHONY: .FORCE-GIT-VERSION-FILE