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