]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/Makefile
Documentation: sync git.txt command list and manual page title
[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
8db9307c
JH
19# with their own formatting rules.
20SP_ARTICLES = glossary howto/revert-branch-rebase
21
22DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
789d5774 23
b2bf34d6
DG
24DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
25DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
26
d2b8593f 27prefix?=$(HOME)
e14421b9
JN
28bindir?=$(prefix)/bin
29mandir?=$(prefix)/man
7b8cf0cf
JN
30man1dir=$(mandir)/man1
31man7dir=$(mandir)/man7
a682ef9f 32# DESTDIR=
87a81c83 33
d2b8593f 34INSTALL?=install
6538d1ef 35DOC_REF = origin/man
87a81c83 36
95676853
JF
37-include ../config.mak.autogen
38
b2bf34d6
DG
39#
40# Please note that there is a minor bug in asciidoc.
41# The version after 6.0.3 _will_ include the patch found here:
42# http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
43#
44# Until that version is released you may have to apply the patch
45# yourself - yes, all 6 characters of it!
46#
47
48all: html man
b790abb8
DG
49
50html: $(DOC_HTML)
51
c7543ce0 52$(DOC_HTML) $(DOC_MAN1) $(DOC_MAN7): asciidoc.conf
b2bf34d6
DG
53
54man: man1 man7
55man1: $(DOC_MAN1)
56man7: $(DOC_MAN7)
b790abb8 57
b163512d 58install: man
7b8cf0cf 59 $(INSTALL) -d -m755 $(DESTDIR)$(man1dir) $(DESTDIR)$(man7dir)
d44c92d6
CW
60 $(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
61 $(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
87a81c83 62
37465016 63
93d69d86
JL
64#
65# Determine "include::" file references in asciidoc files.
66#
fb612d54 67doc.dep : $(wildcard *.txt) build-docdep.perl
a5ae8e64
JH
68 rm -f $@+ $@
69 perl ./build-docdep.perl >$@+
70 mv $@+ $@
93d69d86 71
a5ae8e64 72-include doc.dep
37465016 73
556b6600 74git.7 git.html: git.txt core-intro.txt
b790abb8 75
93d69d86 76
b790abb8 77clean:
556b6600 78 rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html doc.dep
b790abb8
DG
79
80%.html : %.txt
d1c2e113 81 asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
b790abb8 82
7984eabe 83%.1 %.7 : %.xml
776e994a 84 xmlto -m callouts.xsl man $<
b790abb8
DG
85
86%.xml : %.txt
d1c2e113 87 asciidoc -b docbook -d manpage -f asciidoc.conf $<
3f971fc4 88
23bb8df2
JS
89glossary.html : glossary.txt sort_glossary.pl
90 cat $< | \
91 perl sort_glossary.pl | \
92 asciidoc -b xhtml11 - > glossary.html
93
e6fc2346
JH
94howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
95 rm -f $@+ $@
96 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
97 mv $@+ $@
98
8db9307c
JH
99$(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
100 asciidoc -b xhtml11 $*.txt
e6fc2346
JH
101
102WEBDOC_DEST = /pub/software/scm/git/docs
103
8d0991d7
JH
104$(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
105 rm -f $@+ $@
501524e9 106 sed -e '1,/^$$/d' $< | asciidoc -b xhtml11 - >$@+
8d0991d7
JH
107 mv $@+ $@
108
e6fc2346
JH
109install-webdoc : html
110 sh ./install-webdoc.sh $(WEBDOC_DEST)
6538d1ef
EW
111
112quick-install:
113 sh ./install-doc-quick.sh $(DOC_REF) $(mandir)