2 $(filter-out $(addsuffix .txt
, $(ARTICLES
) $(SP_ARTICLES
)), \
3 $(wildcard git-
*.txt
)) \
5 MAN5_TXT
=gitattributes.txt gitignore.txt gitmodules.txt githooks.txt \
6 gitrepository-layout.txt
7 MAN7_TXT
=gitcli.txt gittutorial.txt gittutorial-2.txt \
8 gitcvs-migration.txt gitcore-tutorial.txt gitglossary.txt \
9 gitdiffcore.txt gitworkflows.txt
11 MAN_TXT
= $(MAN1_TXT
) $(MAN5_TXT
) $(MAN7_TXT
)
12 MAN_XML
=$(patsubst %.txt
,%.xml
,$(MAN_TXT
))
13 MAN_HTML
=$(patsubst %.txt
,%.html
,$(MAN_TXT
))
17 ARTICLES
= howto-index
20 # with their own formatting rules.
21 SP_ARTICLES
= howto
/revert-branch-rebase howto
/using-merge-subtree user-manual
22 API_DOCS
= $(patsubst %.txt
,%,$(filter-out technical
/api-index-skel.txt technical
/api-index.txt
, $(wildcard technical
/api-
*.txt
)))
23 SP_ARTICLES
+= $(API_DOCS
)
24 SP_ARTICLES
+= technical
/api-index
26 DOC_HTML
+= $(patsubst %,%.html
,$(ARTICLES
) $(SP_ARTICLES
))
28 DOC_MAN1
=$(patsubst %.txt
,%.1,$(MAN1_TXT
))
29 DOC_MAN5
=$(patsubst %.txt
,%.5,$(MAN5_TXT
))
30 DOC_MAN7
=$(patsubst %.txt
,%.7,$(MAN7_TXT
))
34 htmldir?
=$(prefix)/share
/doc
/git-doc
35 pdfdir?
=$(prefix)/share
/doc
/git-doc
36 mandir?
=$(prefix)/share
/man
37 man1dir=$(mandir)/man1
38 man5dir=$(mandir)/man5
39 man7dir=$(mandir)/man7
44 MANPAGE_XSL
= callouts.xsl
48 HTML_REF
= origin/html
50 infodir?
=$(prefix)/share
/info
52 INSTALL_INFO
=install-info
53 DOCBOOK2X_TEXI
=docbook2x-texi
56 PERL_PATH
= /usr
/bin
/perl
59 -include ..
/config.mak.autogen
60 -include ..
/config.mak
63 ASCIIDOC_EXTRA
+= -a asciidoc7compatible
66 ASCIIDOC_EXTRA
+= -a docbook-xsl-172
67 MANPAGE_XSL
= manpage-1.72.xsl
71 # Please note that there is a minor bug in asciidoc.
72 # The version after 6.0.3 _will_ include the patch found here:
73 # http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
75 # Until that version is released you may have to apply the patch
76 # yourself - yes, all 6 characters of it!
83 $(DOC_HTML
) $(DOC_MAN1
) $(DOC_MAN5
) $(DOC_MAN7
): asciidoc.conf
90 info: git.
info gitman.
info
97 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(man1dir)
98 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(man5dir)
99 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(man7dir)
100 $(INSTALL
) -m
644 $(DOC_MAN1
) $(DESTDIR
)$(man1dir)
101 $(INSTALL
) -m
644 $(DOC_MAN5
) $(DESTDIR
)$(man5dir)
102 $(INSTALL
) -m
644 $(DOC_MAN7
) $(DESTDIR
)$(man7dir)
105 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(infodir)
106 $(INSTALL
) -m
644 git.
info gitman.
info $(DESTDIR
)$(infodir)
107 if
test -r
$(DESTDIR
)$(infodir)/dir; then \
108 $(INSTALL_INFO
) --info-dir
=$(DESTDIR
)$(infodir) git.
info ;\
109 $(INSTALL_INFO
) --info-dir
=$(DESTDIR
)$(infodir) gitman.
info ;\
111 echo
"No directory found in $(DESTDIR)$(infodir)" >&2 ; \
115 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(pdfdir
)
116 $(INSTALL
) -m
644 user-manual.pdf
$(DESTDIR
)$(pdfdir
)
119 sh .
/install-webdoc.sh
$(DESTDIR
)$(htmldir
)
121 ..
/GIT-VERSION-FILE
: .FORCE-GIT-VERSION-FILE
122 $(MAKE
) -C ..
/ GIT-VERSION-FILE
124 -include ..
/GIT-VERSION-FILE
127 # Determine "include::" file references in asciidoc files.
129 doc.dep
: $(wildcard *.txt
) build-docdep.perl
131 $(PERL_PATH
) .
/build-docdep.perl
>$@
+
136 cmds_txt
= cmds-ancillaryinterrogators.txt \
137 cmds-ancillarymanipulators.txt \
138 cmds-mainporcelain.txt \
139 cmds-plumbinginterrogators.txt \
140 cmds-plumbingmanipulators.txt \
141 cmds-synchingrepositories.txt \
142 cmds-synchelpers.txt \
143 cmds-purehelpers.txt \
144 cmds-foreignscminterface.txt
146 $(cmds_txt
): cmd-list.made
148 cmd-list.made
: cmd-list.perl ..
/command-list.txt
$(MAN1_TXT
)
150 $(PERL_PATH
) .
/cmd-list.perl ..
/command-list.txt
154 $(RM
) *.xml
*.xml
+ *.html
*.html
+ *.1 *.5 *.7
155 $(RM
) *.texi
*.texi
+ git.
info gitman.
info
156 $(RM
) howto-index.txt howto
/*.html doc.dep
157 $(RM
) technical
/api-
*.html technical
/api-index.txt
158 $(RM
) $(cmds_txt
) *.made
160 $(MAN_HTML
): %.html
: %.txt
162 $(ASCIIDOC
) -b xhtml11
-d manpage
-f asciidoc.conf \
163 $(ASCIIDOC_EXTRA
) -agit_version
=$(GIT_VERSION
) -o
$@
+ $<
168 xmlto
-m
$(MANPAGE_XSL
) man
$<
172 $(ASCIIDOC
) -b docbook
-d manpage
-f asciidoc.conf \
173 $(ASCIIDOC_EXTRA
) -agit_version
=$(GIT_VERSION
) -o
$@
+ $<
176 user-manual.xml
: user-manual.txt user-manual.conf
177 $(ASCIIDOC
) -b docbook
-d book
$<
179 technical
/api-index.txt
: technical
/api-index-skel.txt \
180 technical
/api-index.sh
$(patsubst %,%.txt
,$(API_DOCS
))
181 cd technical
&& sh .
/api-index.sh
183 $(patsubst %,%.html
,$(API_DOCS
) technical
/api-index
): %.html
: %.txt
184 $(ASCIIDOC
) -b xhtml11
-f asciidoc.conf \
185 $(ASCIIDOC_EXTRA
) -agit_version
=$(GIT_VERSION
) $*.txt
188 XSLTOPTS
= --xinclude
--stringparam html.stylesheet docbook-xsl.css
190 user-manual.html
: user-manual.xml
191 xsltproc
$(XSLTOPTS
) -o
$@
$(XSLT
) $<
193 git.
info: user-manual.texi
194 $(MAKEINFO
) --no-split
-o
$@ user-manual.texi
196 user-manual.texi
: user-manual.xml
198 $(DOCBOOK2X_TEXI
) user-manual.xml
--encoding
=UTF-8
--to-stdout | \
199 $(PERL_PATH
) fix-texi.perl
>$@
+
202 user-manual.pdf
: user-manual.xml
204 $(DBLATEX
) -o
$@
+ -p
/etc
/asciidoc
/dblatex
/asciidoc-dblatex.xsl
-s
/etc
/asciidoc
/dblatex
/asciidoc-dblatex.sty
$<
207 gitman.texi
: $(MAN_XML
) cat-texi.perl
209 ($(foreach xml
,$(MAN_XML
),$(DOCBOOK2X_TEXI
) --encoding
=UTF-8 \
210 --to-stdout
$(xml
);)) |
$(PERL_PATH
) cat-texi.perl
$@
>$@
+
213 gitman.
info: gitman.texi
214 $(MAKEINFO
) --no-split
--no-validate
$*.texi
216 $(patsubst %.txt
,%.texi
,$(MAN_TXT
)): %.texi
: %.xml
218 $(DOCBOOK2X_TEXI
) --to-stdout
$*.xml
>$@
+
221 howto-index.txt
: howto-index.sh
$(wildcard howto
/*.txt
)
223 sh .
/howto-index.sh
$(wildcard howto
/*.txt
) >$@
+
226 $(patsubst %,%.html
,$(ARTICLES
)) : %.html
: %.txt
227 $(ASCIIDOC
) -b xhtml11
$*.txt
229 WEBDOC_DEST
= /pub
/software
/scm
/git
/docs
231 $(patsubst %.txt
,%.html
,$(wildcard howto
/*.txt
)): %.html
: %.txt
233 sed
-e
'1,/^$$/d' $< |
$(ASCIIDOC
) -b xhtml11
- >$@
+
236 install-webdoc
: html
237 sh .
/install-webdoc.sh
$(WEBDOC_DEST
)
239 quick-install
: quick-install-man
242 sh .
/install-doc-quick.sh
$(DOC_REF
) $(DESTDIR
)$(mandir)
245 sh .
/install-doc-quick.sh
$(HTML_REF
) $(DESTDIR
)$(htmldir
)
247 .PHONY
: .FORCE-GIT-VERSION-FILE