]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/Makefile
Simplify code to find recursive merge driver.
[thirdparty/git.git] / Documentation / Makefile
CommitLineData
4a5d6939
MW
1MAN1_TXT= \
2 $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
3 $(wildcard git-*.txt)) \
4 gitk.txt
b2bf34d6 5MAN7_TXT=git.txt
b790abb8 6
2a29da7c 7DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
8db9307c 8
a1d4aa74 9ARTICLES = tutorial
e31952da 10ARTICLES += tutorial-2
dcc6e28f 11ARTICLES += core-tutorial
a1d4aa74
JH
12ARTICLES += cvs-migration
13ARTICLES += diffcore
14ARTICLES += howto-index
15ARTICLES += repository-layout
6d35cc76 16ARTICLES += hooks
db9536c8 17ARTICLES += everyday
4a5d6939 18ARTICLES += git-tools
f562e6f3 19ARTICLES += glossary
8db9307c 20# with their own formatting rules.
f562e6f3 21SP_ARTICLES = howto/revert-branch-rebase user-manual
8db9307c
JH
22
23DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
789d5774 24
b2bf34d6
DG
25DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
26DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
27
d2b8593f 28prefix?=$(HOME)
e14421b9
JN
29bindir?=$(prefix)/bin
30mandir?=$(prefix)/man
7b8cf0cf
JN
31man1dir=$(mandir)/man1
32man7dir=$(mandir)/man7
a682ef9f 33# DESTDIR=
87a81c83 34
1187d756 35ASCIIDOC=asciidoc
26cfcfbf 36ASCIIDOC_EXTRA =
d2b8593f 37INSTALL?=install
6538d1ef 38DOC_REF = origin/man
87a81c83 39
95676853 40-include ../config.mak.autogen
4fa96e15 41-include ../config.mak
95676853 42
b2bf34d6
DG
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
b790abb8
DG
53
54html: $(DOC_HTML)
55
c7543ce0 56$(DOC_HTML) $(DOC_MAN1) $(DOC_MAN7): asciidoc.conf
b2bf34d6
DG
57
58man: man1 man7
59man1: $(DOC_MAN1)
60man7: $(DOC_MAN7)
b790abb8 61
b163512d 62install: man
7b8cf0cf 63 $(INSTALL) -d -m755 $(DESTDIR)$(man1dir) $(DESTDIR)$(man7dir)
d44c92d6
CW
64 $(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
65 $(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
87a81c83 66
37465016 67
7b8a74f3
FL
68../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
69 $(MAKE) -C ../ GIT-VERSION-FILE
70
71-include ../GIT-VERSION-FILE
72
93d69d86
JL
73#
74# Determine "include::" file references in asciidoc files.
75#
fb612d54 76doc.dep : $(wildcard *.txt) build-docdep.perl
a5ae8e64
JH
77 rm -f $@+ $@
78 perl ./build-docdep.perl >$@+
79 mv $@+ $@
93d69d86 80
a5ae8e64 81-include doc.dep
37465016 82
72fe6a59
JH
83cmds_txt = cmds-ancillaryinterrogators.txt \
84 cmds-ancillarymanipulators.txt \
85 cmds-mainporcelain.txt \
86 cmds-plumbinginterrogators.txt \
87 cmds-plumbingmanipulators.txt \
89bf2077
JH
88 cmds-synchingrepositories.txt \
89 cmds-synchelpers.txt \
90 cmds-purehelpers.txt \
91 cmds-foreignscminterface.txt
72fe6a59 92
d7907392
JH
93$(cmds_txt): cmd-list.made
94
95cmd-list.made: cmd-list.perl $(MAN1_TXT)
72fe6a59 96 perl ./cmd-list.perl
d7907392 97 date >$@
b790abb8 98
72fe6a59 99git.7 git.html: git.txt core-intro.txt
93d69d86 100
b790abb8 101clean:
7b8a74f3 102 rm -f *.xml *.xml+ *.html *.html+ *.1 *.7 howto-index.txt howto/*.html doc.dep
d7907392 103 rm -f $(cmds_txt) *.made
b790abb8
DG
104
105%.html : %.txt
7b8a74f3
FL
106 rm -f $@+ $@
107 $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
108 $(ASCIIDOC_EXTRA) -o - $< | \
109 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' >$@+
110 mv $@+ $@
b790abb8 111
7984eabe 112%.1 %.7 : %.xml
776e994a 113 xmlto -m callouts.xsl man $<
b790abb8
DG
114
115%.xml : %.txt
7b8a74f3
FL
116 rm -f $@+ $@
117 $(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
118 $(ASCIIDOC_EXTRA) -o - $< | \
119 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' >$@+
120 mv $@+ $@
3f971fc4 121
d19fbc3c 122user-manual.xml: user-manual.txt user-manual.conf
1187d756 123 $(ASCIIDOC) -b docbook -d book $<
d19fbc3c 124
1c95c565 125XSLT = http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
0a3985dc 126XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
1c95c565 127
d19fbc3c 128user-manual.html: user-manual.xml
1c95c565 129 xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<
d19fbc3c 130
e6fc2346
JH
131howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
132 rm -f $@+ $@
133 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
134 mv $@+ $@
135
8db9307c 136$(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
1187d756 137 $(ASCIIDOC) -b xhtml11 $*.txt
e6fc2346
JH
138
139WEBDOC_DEST = /pub/software/scm/git/docs
140
8d0991d7
JH
141$(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
142 rm -f $@+ $@
1187d756 143 sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+
8d0991d7
JH
144 mv $@+ $@
145
e6fc2346
JH
146install-webdoc : html
147 sh ./install-webdoc.sh $(WEBDOC_DEST)
6538d1ef
EW
148
149quick-install:
150 sh ./install-doc-quick.sh $(DOC_REF) $(mandir)
7b8a74f3
FL
151
152.PHONY: .FORCE-GIT-VERSION-FILE