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 mandir?
=$(prefix)/share
/man
36 man1dir=$(mandir)/man1
37 man5dir=$(mandir)/man5
38 man7dir=$(mandir)/man7
43 MANPAGE_XSL
= callouts.xsl
47 HTML_REF
= origin/html
49 infodir?
=$(prefix)/share
/info
51 INSTALL_INFO
=install-info
52 DOCBOOK2X_TEXI
=docbook2x-texi
54 PERL_PATH
= /usr
/bin
/perl
57 -include ..
/config.mak.autogen
58 -include ..
/config.mak
61 ASCIIDOC_EXTRA
+= -a asciidoc7compatible
64 ASCIIDOC_EXTRA
+= -a docbook-xsl-172
65 MANPAGE_XSL
= manpage-1.72.xsl
69 # Please note that there is a minor bug in asciidoc.
70 # The version after 6.0.3 _will_ include the patch found here:
71 # http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
73 # Until that version is released you may have to apply the patch
74 # yourself - yes, all 6 characters of it!
81 $(DOC_HTML
) $(DOC_MAN1
) $(DOC_MAN5
) $(DOC_MAN7
): asciidoc.conf
88 info: git.
info gitman.
info
93 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(man1dir)
94 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(man5dir)
95 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(man7dir)
96 $(INSTALL
) -m
644 $(DOC_MAN1
) $(DESTDIR
)$(man1dir)
97 $(INSTALL
) -m
644 $(DOC_MAN5
) $(DESTDIR
)$(man5dir)
98 $(INSTALL
) -m
644 $(DOC_MAN7
) $(DESTDIR
)$(man7dir)
101 $(INSTALL
) -d
-m
755 $(DESTDIR
)$(infodir)
102 $(INSTALL
) -m
644 git.
info gitman.
info $(DESTDIR
)$(infodir)
103 if
test -r
$(DESTDIR
)$(infodir)/dir; then \
104 $(INSTALL_INFO
) --info-dir
=$(DESTDIR
)$(infodir) git.
info ;\
105 $(INSTALL_INFO
) --info-dir
=$(DESTDIR
)$(infodir) gitman.
info ;\
107 echo
"No directory found in $(DESTDIR)$(infodir)" >&2 ; \
111 sh .
/install-webdoc.sh
$(DESTDIR
)$(htmldir
)
113 ..
/GIT-VERSION-FILE
: .FORCE-GIT-VERSION-FILE
114 $(MAKE
) -C ..
/ GIT-VERSION-FILE
116 -include ..
/GIT-VERSION-FILE
119 # Determine "include::" file references in asciidoc files.
121 doc.dep
: $(wildcard *.txt
) build-docdep.perl
123 $(PERL_PATH
) .
/build-docdep.perl
>$@
+
128 cmds_txt
= cmds-ancillaryinterrogators.txt \
129 cmds-ancillarymanipulators.txt \
130 cmds-mainporcelain.txt \
131 cmds-plumbinginterrogators.txt \
132 cmds-plumbingmanipulators.txt \
133 cmds-synchingrepositories.txt \
134 cmds-synchelpers.txt \
135 cmds-purehelpers.txt \
136 cmds-foreignscminterface.txt
138 $(cmds_txt
): cmd-list.made
140 cmd-list.made
: cmd-list.perl ..
/command-list.txt
$(MAN1_TXT
)
142 $(PERL_PATH
) .
/cmd-list.perl ..
/command-list.txt
146 $(RM
) *.xml
*.xml
+ *.html
*.html
+ *.1 *.5 *.7
147 $(RM
) *.texi
*.texi
+ git.
info gitman.
info
148 $(RM
) howto-index.txt howto
/*.html doc.dep
149 $(RM
) technical
/api-
*.html technical
/api-index.txt
150 $(RM
) $(cmds_txt
) *.made
152 $(MAN_HTML
): %.html
: %.txt
154 $(ASCIIDOC
) -b xhtml11
-d manpage
-f asciidoc.conf \
155 $(ASCIIDOC_EXTRA
) -agit_version
=$(GIT_VERSION
) -o
$@
+ $<
160 xmlto
-m
$(MANPAGE_XSL
) man
$<
164 $(ASCIIDOC
) -b docbook
-d manpage
-f asciidoc.conf \
165 $(ASCIIDOC_EXTRA
) -agit_version
=$(GIT_VERSION
) -o
$@
+ $<
168 user-manual.xml
: user-manual.txt user-manual.conf
169 $(ASCIIDOC
) -b docbook
-d book
$<
171 technical
/api-index.txt
: technical
/api-index-skel.txt \
172 technical
/api-index.sh
$(patsubst %,%.txt
,$(API_DOCS
))
173 cd technical
&& sh .
/api-index.sh
175 $(patsubst %,%.html
,$(API_DOCS
) technical
/api-index
): %.html
: %.txt
176 $(ASCIIDOC
) -b xhtml11
-f asciidoc.conf \
177 $(ASCIIDOC_EXTRA
) -agit_version
=$(GIT_VERSION
) $*.txt
180 XSLTOPTS
= --xinclude
--stringparam html.stylesheet docbook-xsl.css
182 user-manual.html
: user-manual.xml
183 xsltproc
$(XSLTOPTS
) -o
$@
$(XSLT
) $<
185 git.
info: user-manual.texi
186 $(MAKEINFO
) --no-split
-o
$@ user-manual.texi
188 user-manual.texi
: user-manual.xml
190 $(DOCBOOK2X_TEXI
) user-manual.xml
--to-stdout |
$(PERL_PATH
) fix-texi.perl
>$@
+
193 gitman.texi
: $(MAN_XML
) cat-texi.perl
195 ($(foreach xml
,$(MAN_XML
),$(DOCBOOK2X_TEXI
) --to-stdout
$(xml
);)) | \
196 $(PERL_PATH
) cat-texi.perl
$@
>$@
+
199 gitman.
info: gitman.texi
200 $(MAKEINFO
) --no-split
$*.texi
202 $(patsubst %.txt
,%.texi
,$(MAN_TXT
)): %.texi
: %.xml
204 $(DOCBOOK2X_TEXI
) --to-stdout
$*.xml
>$@
+
207 howto-index.txt
: howto-index.sh
$(wildcard howto
/*.txt
)
209 sh .
/howto-index.sh
$(wildcard howto
/*.txt
) >$@
+
212 $(patsubst %,%.html
,$(ARTICLES
)) : %.html
: %.txt
213 $(ASCIIDOC
) -b xhtml11
$*.txt
215 WEBDOC_DEST
= /pub
/software
/scm
/git
/docs
217 $(patsubst %.txt
,%.html
,$(wildcard howto
/*.txt
)): %.html
: %.txt
219 sed
-e
'1,/^$$/d' $< |
$(ASCIIDOC
) -b xhtml11
- >$@
+
222 install-webdoc
: html
223 sh .
/install-webdoc.sh
$(WEBDOC_DEST
)
225 quick-install
: quick-install-man
228 sh .
/install-doc-quick.sh
$(DOC_REF
) $(DESTDIR
)$(mandir)
231 sh .
/install-doc-quick.sh
$(HTML_REF
) $(DESTDIR
)$(htmldir
)
233 .PHONY
: .FORCE-GIT-VERSION-FILE