pack-objects: more threaded load balancing fix with often changed paths
[git/dscho.git] / Documentation / Makefile
blob1b5802456dea9dec329cba19eddb6ef6ea45a090
1 MAN1_TXT= \
2 $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
3 $(wildcard git-*.txt)) \
4 gitk.txt
5 MAN5_TXT=gitattributes.txt gitignore.txt gitmodules.txt
6 MAN7_TXT=git.txt
8 DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN5_TXT) $(MAN7_TXT))
10 ARTICLES = tutorial
11 ARTICLES += tutorial-2
12 ARTICLES += core-tutorial
13 ARTICLES += cvs-migration
14 ARTICLES += diffcore
15 ARTICLES += howto-index
16 ARTICLES += repository-layout
17 ARTICLES += hooks
18 ARTICLES += everyday
19 ARTICLES += git-tools
20 ARTICLES += glossary
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))
30 prefix?=$(HOME)
31 bindir?=$(prefix)/bin
32 mandir?=$(prefix)/share/man
33 man1dir=$(mandir)/man1
34 man5dir=$(mandir)/man5
35 man7dir=$(mandir)/man7
36 # DESTDIR=
38 ASCIIDOC=asciidoc
39 ASCIIDOC_EXTRA =
40 INSTALL?=install
41 RM ?= rm -f
42 DOC_REF = origin/man
44 infodir?=$(prefix)/share/info
45 MAKEINFO=makeinfo
46 INSTALL_INFO=install-info
47 DOCBOOK2X_TEXI=docbook2x-texi
48 ifndef PERL_PATH
49 PERL_PATH = /usr/bin/perl
50 endif
52 -include ../config.mak.autogen
53 -include ../config.mak
55 ifdef ASCIIDOC8
56 ASCIIDOC_EXTRA += -a asciidoc7compatible
57 endif
58 ifdef DOCBOOK_XSL_172
59 ASCIIDOC_EXTRA += -a docbook-xsl-172
60 endif
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!
71 all: html man
73 html: $(DOC_HTML)
75 $(DOC_HTML) $(DOC_MAN1) $(DOC_MAN5) $(DOC_MAN7): asciidoc.conf
77 man: man1 man5 man7
78 man1: $(DOC_MAN1)
79 man5: $(DOC_MAN5)
80 man7: $(DOC_MAN7)
82 info: git.info
84 install: man
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)
92 install-info: info
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 ;\
97 else \
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
110 $(RM) $@+ $@
111 $(PERL_PATH) ./build-docdep.perl >$@+
112 mv $@+ $@
114 -include doc.dep
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)
129 $(RM) $@
130 $(PERL_PATH) ./cmd-list.perl ../command-list.txt
131 date >$@
133 git.7 git.html: git.txt
135 clean:
136 $(RM) *.xml *.xml+ *.html *.html+ *.1 *.5 *.7 *.texi *.texi+ howto-index.txt howto/*.html doc.dep
137 $(RM) $(cmds_txt) *.made
139 %.html : %.txt
140 $(RM) $@+ $@
141 $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
142 $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
143 mv $@+ $@
145 %.1 %.5 %.7 : %.xml
146 $(RM) $@
147 xmlto -m callouts.xsl man $<
149 %.xml : %.txt
150 $(RM) $@+ $@
151 $(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
152 $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
153 mv $@+ $@
155 user-manual.xml: user-manual.txt user-manual.conf
156 $(ASCIIDOC) -b docbook -d book $<
158 XSLT = docbook.xsl
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)
172 $(RM) $@+ $@
173 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
174 mv $@+ $@
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
182 $(RM) $@+ $@
183 sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+
184 mv $@+ $@
186 install-webdoc : html
187 sh ./install-webdoc.sh $(WEBDOC_DEST)
189 quick-install:
190 sh ./install-doc-quick.sh $(DOC_REF) $(mandir)
192 .PHONY: .FORCE-GIT-VERSION-FILE