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 -include ../config.mak.autogen
50 -include ../config.mak
53 ASCIIDOC_EXTRA += -a asciidoc7compatible
56 ASCIIDOC_EXTRA += -a docbook-xsl-172
60 # Please note that there is a minor bug in asciidoc.
61 # The version after 6.0.3 _will_ include the patch found here:
62 # http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
64 # Until that version is released you may have to apply the patch
65 # yourself - yes, all 6 characters of it!
72 $(DOC_HTML) $(DOC_MAN1) $(DOC_MAN5) $(DOC_MAN7): asciidoc.conf
82 $(INSTALL) -d -m755 $(DESTDIR)$(man1dir)
83 $(INSTALL) -d -m755 $(DESTDIR)$(man5dir)
84 $(INSTALL) -d -m755 $(DESTDIR)$(man7dir)
85 $(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
86 $(INSTALL) -m644 $(DOC_MAN5) $(DESTDIR)$(man5dir)
87 $(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
90 $(INSTALL) -d -m755 $(DESTDIR)$(infodir)
91 $(INSTALL) -m644 git.info $(DESTDIR)$(infodir)
92 if test -r $(DESTDIR)$(infodir)/dir; then \
93 $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) git.info ;\
95 echo "No directory found in $(DESTDIR)$(infodir)" >&2 ; \
98 ../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
99 $(MAKE) -C ../ GIT-VERSION-FILE
101 -include ../GIT-VERSION-FILE
104 # Determine "include::" file references in asciidoc files.
106 doc.dep : $(wildcard *.txt) build-docdep.perl
108 perl ./build-docdep.perl >$@+
113 cmds_txt = cmds-ancillaryinterrogators.txt \
114 cmds-ancillarymanipulators.txt \
115 cmds-mainporcelain.txt \
116 cmds-plumbinginterrogators.txt \
117 cmds-plumbingmanipulators.txt \
118 cmds-synchingrepositories.txt \
119 cmds-synchelpers.txt \
120 cmds-purehelpers.txt \
121 cmds-foreignscminterface.txt
123 $(cmds_txt): cmd-list.made
125 cmd-list.made: cmd-list.perl $(MAN1_TXT)
130 git.7 git.html: git.txt
133 $(RM) *.xml *.xml+ *.html *.html+ *.1 *.5 *.7 *.texi *.texi+ howto-index.txt howto/*.html doc.dep
134 $(RM) $(cmds_txt) *.made
138 $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
139 $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
144 xmlto -m callouts.xsl man $<
148 $(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
149 $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
152 user-manual.xml: user-manual.txt user-manual.conf
153 $(ASCIIDOC) -b docbook -d book $<
156 XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
158 user-manual.html: user-manual.xml
159 xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<
161 git.info: user-manual.xml
162 $(RM) $@ $*.texi $*.texi+
163 $(DOCBOOK2X_TEXI) user-manual.xml --to-stdout >$*.texi+
164 perl fix-texi.perl <$*.texi+ >$*.texi
165 $(MAKEINFO) --no-split $*.texi
166 $(RM) $*.texi $*.texi+
168 howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
170 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
173 $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
174 $(ASCIIDOC) -b xhtml11 $*.txt
176 WEBDOC_DEST = /pub/software/scm/git/docs
178 $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
180 sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+
183 install-webdoc : html
184 sh ./install-webdoc.sh $(WEBDOC_DEST)
187 sh ./install-doc-quick.sh $(DOC_REF) $(mandir)
189 .PHONY: .FORCE-GIT-VERSION-FILE