1MAN1_TXT= \
2 $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
3 $(wildcard git-*.txt)) \
4 gitk.txt
5MAN7_TXT=git.txt
6
7DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
8
9ARTICLES = tutorial
10ARTICLES += tutorial-2
11ARTICLES += core-tutorial
12ARTICLES += cvs-migration
13ARTICLES += diffcore
14ARTICLES += howto-index
15ARTICLES += repository-layout
16ARTICLES += hooks
17ARTICLES += everyday
18ARTICLES += git-tools
19ARTICLES += glossary
20# with their own formatting rules.
21SP_ARTICLES = howto/revert-branch-rebase user-manual
22
23DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
24
25DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
26DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
27
28prefix?=$(HOME)
29bindir?=$(prefix)/bin
30mandir?=$(prefix)/man
31man1dir=$(mandir)/man1
32man7dir=$(mandir)/man7
33# DESTDIR=
34
35ASCIIDOC=asciidoc
36ASCIIDOC_EXTRA =
37INSTALL?=install
38DOC_REF = origin/man
39
40-include ../config.mak.autogen
41-include ../config.mak
42
43#
44# Please note that there is a minor bug in asciidoc.
45# The version after 6.0.3 _will_ include the patch found here:
46# http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
47#
48# Until that version is released you may have to apply the patch
49# yourself - yes, all 6 characters of it!
50#
51
52all: html man
53
54html: $(DOC_HTML)
55
56$(DOC_HTML) $(DOC_MAN1) $(DOC_MAN7): asciidoc.conf
57
58man: man1 man7
59man1: $(DOC_MAN1)
60man7: $(DOC_MAN7)
61
62install: man
63 $(INSTALL) -d -m755 $(DESTDIR)$(man1dir) $(DESTDIR)$(man7dir)
64 $(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
65 $(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
66
67
68../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
69 $(MAKE) -C ../ GIT-VERSION-FILE
70
71-include ../GIT-VERSION-FILE
72
73#
74# Determine "include::" file references in asciidoc files.
75#
76doc.dep : $(wildcard *.txt) build-docdep.perl
77 rm -f $@+ $@
78 perl ./build-docdep.perl >$@+
79 mv $@+ $@
80
81-include doc.dep
82
83cmds_txt = cmds-ancillaryinterrogators.txt \
84 cmds-ancillarymanipulators.txt \
85 cmds-mainporcelain.txt \
86 cmds-plumbinginterrogators.txt \
87 cmds-plumbingmanipulators.txt \
88 cmds-synchingrepositories.txt \
89 cmds-synchelpers.txt \
90 cmds-purehelpers.txt \
91 cmds-foreignscminterface.txt
92
93$(cmds_txt): cmd-list.perl $(MAN1_TXT)
94 perl ./cmd-list.perl
95
96git.7 git.html: git.txt core-intro.txt
97
98clean:
99 rm -f *.xml *.xml+ *.html *.html+ *.1 *.7 howto-index.txt howto/*.html doc.dep
100 rm -f $(cmds_txt)
101
102%.html : %.txt
103 rm -f $@+ $@
104 $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
105 $(ASCIIDOC_EXTRA) -o - $< | \
106 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' >$@+
107 mv $@+ $@
108
109%.1 %.7 : %.xml
110 xmlto -m callouts.xsl man $<
111
112%.xml : %.txt
113 rm -f $@+ $@
114 $(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
115 $(ASCIIDOC_EXTRA) -o - $< | \
116 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' >$@+
117 mv $@+ $@
118
119user-manual.xml: user-manual.txt user-manual.conf
120 $(ASCIIDOC) -b docbook -d book $<
121
122XSLT = http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
123XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
124
125user-manual.html: user-manual.xml
126 xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<
127
128howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
129 rm -f $@+ $@
130 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
131 mv $@+ $@
132
133$(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
134 $(ASCIIDOC) -b xhtml11 $*.txt
135
136WEBDOC_DEST = /pub/software/scm/git/docs
137
138$(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
139 rm -f $@+ $@
140 sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+
141 mv $@+ $@
142
143install-webdoc : html
144 sh ./install-webdoc.sh $(WEBDOC_DEST)
145
146quick-install:
147 sh ./install-doc-quick.sh $(DOC_REF) $(mandir)
148
149.PHONY: .FORCE-GIT-VERSION-FILE