[PATCH] git-http-fetch: Allow caching of retrieved objects by proxy servers
[git/gitweb.git] / Documentation / Makefile
blobb81a6a2c72c93725c48fbbf9e7ec25e80052e87a
1 MAN1_TXT=$(wildcard git-*.txt) gitk.txt
2 MAN7_TXT=git.txt
4 DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
6 ARTICLES = tutorial
7 ARTICLES += cvs-migration
8 ARTICLES += diffcore
9 ARTICLES += howto-index
10 ARTICLES += repository-layout
11 ARTICLES += hooks
12 # with their own formatting rules.
13 SP_ARTICLES = glossary howto/revert-branch-rebase
15 DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
17 DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
18 DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
20 prefix=$(HOME)
21 bin=$(prefix)/bin
22 mandir=$(prefix)/man
23 man1=$(mandir)/man1
24 man7=$(mandir)/man7
25 # DESTDIR=
27 INSTALL=install
30 # Please note that there is a minor bug in asciidoc.
31 # The version after 6.0.3 _will_ include the patch found here:
32 # http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
34 # Until that version is released you may have to apply the patch
35 # yourself - yes, all 6 characters of it!
38 all: html man
40 html: $(DOC_HTML)
43 man: man1 man7
44 man1: $(DOC_MAN1)
45 man7: $(DOC_MAN7)
47 install:
48 $(INSTALL) -m755 -d $(DESTDIR)/$(man1) $(DESTDIR)/$(man7)
49 $(INSTALL) $(DOC_MAN1) $(DESTDIR)/$(man1)
50 $(INSTALL) $(DOC_MAN7) $(DESTDIR)/$(man7)
52 # 'include' dependencies
53 git-diff-%.txt: diff-format.txt diff-options.txt
54 touch $@
56 clean:
57 rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html
59 %.html : %.txt
60 asciidoc -b xhtml11 -d manpage $<
62 %.1 %.7 : %.xml
63 xmlto man $<
65 %.xml : %.txt
66 asciidoc -b docbook -d manpage $<
68 git.html: git.txt ../README
70 glossary.html : glossary.txt sort_glossary.pl
71 cat $< | \
72 perl sort_glossary.pl | \
73 asciidoc -b xhtml11 - > glossary.html
75 howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
76 rm -f $@+ $@
77 sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
78 mv $@+ $@
80 $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
81 asciidoc -b xhtml11 $*.txt
83 WEBDOC_DEST = /pub/software/scm/git/docs
85 $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
86 rm -f $@+ $@
87 sed -e '1,/^$$/d' $? | asciidoc -b xhtml11 - >$@+
88 mv $@+ $@
90 install-webdoc : html
91 sh ./install-webdoc.sh $(WEBDOC_DEST)