1MAN1_TXT=$(wildcard git-*.txt) gitk.txt
2MAN7_TXT=git.txt
3
4DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
5
6ARTICLES = tutorial
7ARTICLES += core-tutorial
8ARTICLES += cvs-migration
9ARTICLES += diffcore
10ARTICLES += howto-index
11ARTICLES += repository-layout
12ARTICLES += hooks
13ARTICLES += everyday
14# with their own formatting rules.
15SP_ARTICLES = glossary howto/revert-branch-rebase
16
17DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
18
19DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
20DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
21
22prefix?=$(HOME)
23bin=$(prefix)/bin
24mandir=$(prefix)/man
25man1=$(mandir)/man1
26man7=$(mandir)/man7
27# DESTDIR=
28
29INSTALL?=install
30
31#
32# Please note that there is a minor bug in asciidoc.
33# The version after 6.0.3 _will_ include the patch found here:
34# http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
35#
36# Until that version is released you may have to apply the patch
37# yourself - yes, all 6 characters of it!
38#
39
40all: html man
41
42html: $(DOC_HTML)
43
44
45man: man1 man7
46man1: $(DOC_MAN1)
47man7: $(DOC_MAN7)
48
49install: man
50 $(INSTALL) -d -m755 $(DESTDIR)/$(man1) $(DESTDIR)/$(man7)
51 $(INSTALL) $(DOC_MAN1) $(DESTDIR)/$(man1)
52 $(INSTALL) $(DOC_MAN7) $(DESTDIR)/$(man7)
53
54
55#
56# Determine "include::" file references in asciidoc files.
57#
58doc.dep : $(wildcard *.txt) build-docdep.perl
59 rm -f $@+ $@
60 perl ./build-docdep.perl >$@+
61 mv $@+ $@
62
63-include doc.dep
64
65git.7: README
66
67README: ../README
68 cp $< $@
69
70
71clean:
72 rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html doc.dep README
73
74%.html : %.txt
75 asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
76
77%.1 %.7 : %.xml
78 xmlto man $<
79
80%.xml : %.txt
81 asciidoc -b docbook -d manpage -f asciidoc.conf $<
82
83git.html: git.txt README
84
85glossary.html : glossary.txt sort_glossary.pl
86 cat $< | \
87 perl sort_glossary.pl | \
88 asciidoc -b xhtml11 - > glossary.html
89
90howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
91 rm -f $@+ $@
92 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
93 mv $@+ $@
94
95$(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
96 asciidoc -b xhtml11 $*.txt
97
98WEBDOC_DEST = /pub/software/scm/git/docs
99
100$(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
101 rm -f $@+ $@
102 sed -e '1,/^$$/d' $? | asciidoc -b xhtml11 - >$@+
103 mv $@+ $@
104
105install-webdoc : html
106 sh ./install-webdoc.sh $(WEBDOC_DEST)