Documentation: generated cmds-*.txt does not depend on git.txt
[git/gitweb.git] / Documentation / Makefile
blob97ea133b43da0a1f930f6ec6f3d2f6364ec159d5
1 MAN1_TXT= \
2 $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
3 $(wildcard git-*.txt)) \
4 gitk.txt
5 MAN7_TXT=git.txt
7 DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
9 ARTICLES = tutorial
10 ARTICLES += tutorial-2
11 ARTICLES += core-tutorial
12 ARTICLES += cvs-migration
13 ARTICLES += diffcore
14 ARTICLES += howto-index
15 ARTICLES += repository-layout
16 ARTICLES += hooks
17 ARTICLES += everyday
18 ARTICLES += git-tools
19 # with their own formatting rules.
20 SP_ARTICLES = glossary howto/revert-branch-rebase
22 DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
24 DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
25 DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
27 prefix?=$(HOME)
28 bindir?=$(prefix)/bin
29 mandir?=$(prefix)/man
30 man1dir=$(mandir)/man1
31 man7dir=$(mandir)/man7
32 # DESTDIR=
34 INSTALL?=install
35 DOC_REF = origin/man
37 -include ../config.mak.autogen
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
44 # Until that version is released you may have to apply the patch
45 # yourself - yes, all 6 characters of it!
48 all: html man
50 html: $(DOC_HTML)
52 $(DOC_HTML) $(DOC_MAN1) $(DOC_MAN7): asciidoc.conf
54 man: man1 man7
55 man1: $(DOC_MAN1)
56 man7: $(DOC_MAN7)
58 install: man
59 $(INSTALL) -d -m755 $(DESTDIR)$(man1dir) $(DESTDIR)$(man7dir)
60 $(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
61 $(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
65 # Determine "include::" file references in asciidoc files.
67 doc.dep : $(wildcard *.txt) build-docdep.perl
68 rm -f $@+ $@
69 perl ./build-docdep.perl >$@+
70 mv $@+ $@
72 -include doc.dep
74 cmds_txt = cmds-ancillaryinterrogators.txt \
75 cmds-ancillarymanipulators.txt \
76 cmds-mainporcelain.txt \
77 cmds-plumbinginterrogators.txt \
78 cmds-plumbingmanipulators.txt \
79 cmds-synchingrepositories.txt
81 $(cmds_txt): cmd-list.perl $(MAN1_TXT)
82 perl ./cmd-list.perl
84 git.7 git.html: git.txt core-intro.txt
86 clean:
87 rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html doc.dep
88 rm -f $(cmds_txt)
90 %.html : %.txt
91 asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
93 %.1 %.7 : %.xml
94 xmlto -m callouts.xsl man $<
96 %.xml : %.txt
97 asciidoc -b docbook -d manpage -f asciidoc.conf $<
99 glossary.html : glossary.txt sort_glossary.pl
100 cat $< | \
101 perl sort_glossary.pl | \
102 asciidoc -b xhtml11 - > glossary.html
104 howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
105 rm -f $@+ $@
106 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
107 mv $@+ $@
109 $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
110 asciidoc -b xhtml11 $*.txt
112 WEBDOC_DEST = /pub/software/scm/git/docs
114 $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
115 rm -f $@+ $@
116 sed -e '1,/^$$/d' $< | asciidoc -b xhtml11 - >$@+
117 mv $@+ $@
119 install-webdoc : html
120 sh ./install-webdoc.sh $(WEBDOC_DEST)
122 quick-install:
123 sh ./install-doc-quick.sh $(DOC_REF) $(mandir)