2006-03-05 12:36:33 +03:00
|
|
|
MAN1_TXT= \
|
|
|
|
$(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
|
|
|
|
$(wildcard git-*.txt)) \
|
|
|
|
gitk.txt
|
2007-06-12 11:05:21 +04:00
|
|
|
MAN5_TXT=gitattributes.txt gitignore.txt gitmodules.txt
|
2005-05-22 21:44:15 +04:00
|
|
|
MAN7_TXT=git.txt
|
2005-05-11 01:32:39 +04:00
|
|
|
|
2007-04-20 07:47:04 +04:00
|
|
|
DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN5_TXT) $(MAN7_TXT))
|
2005-08-31 00:51:01 +04:00
|
|
|
|
2005-09-02 03:56:13 +04:00
|
|
|
ARTICLES = tutorial
|
2006-05-22 03:49:34 +04:00
|
|
|
ARTICLES += tutorial-2
|
2006-01-23 09:43:59 +03:00
|
|
|
ARTICLES += core-tutorial
|
2005-09-02 03:56:13 +04:00
|
|
|
ARTICLES += cvs-migration
|
|
|
|
ARTICLES += diffcore
|
|
|
|
ARTICLES += howto-index
|
|
|
|
ARTICLES += repository-layout
|
2005-09-03 08:19:26 +04:00
|
|
|
ARTICLES += hooks
|
2005-12-10 10:07:29 +03:00
|
|
|
ARTICLES += everyday
|
2006-03-05 12:36:33 +03:00
|
|
|
ARTICLES += git-tools
|
2007-03-19 00:02:37 +03:00
|
|
|
ARTICLES += glossary
|
2005-08-31 00:51:01 +04:00
|
|
|
# with their own formatting rules.
|
2007-03-19 00:02:37 +03:00
|
|
|
SP_ARTICLES = howto/revert-branch-rebase user-manual
|
2005-08-31 00:51:01 +04:00
|
|
|
|
|
|
|
DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
|
2005-08-30 10:09:22 +04:00
|
|
|
|
2005-05-22 21:44:15 +04:00
|
|
|
DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
|
2007-04-22 11:11:41 +04:00
|
|
|
DOC_MAN5=$(patsubst %.txt,%.5,$(MAN5_TXT))
|
2005-05-22 21:44:15 +04:00
|
|
|
DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
|
|
|
|
|
2005-10-09 02:54:37 +04:00
|
|
|
prefix?=$(HOME)
|
2006-06-30 00:11:25 +04:00
|
|
|
bindir?=$(prefix)/bin
|
|
|
|
mandir?=$(prefix)/man
|
2006-06-30 01:26:54 +04:00
|
|
|
man1dir=$(mandir)/man1
|
2007-04-20 07:47:04 +04:00
|
|
|
man5dir=$(mandir)/man5
|
2006-06-30 01:26:54 +04:00
|
|
|
man7dir=$(mandir)/man7
|
2005-08-05 03:56:38 +04:00
|
|
|
# DESTDIR=
|
2005-07-15 05:21:57 +04:00
|
|
|
|
2007-02-11 18:54:40 +03:00
|
|
|
ASCIIDOC=asciidoc
|
2007-02-14 02:15:05 +03:00
|
|
|
ASCIIDOC_EXTRA =
|
2007-06-15 09:20:16 +04:00
|
|
|
ifdef ASCIIDOC8
|
|
|
|
ASCIIDOC_EXTRA += -a asciidoc7compatible
|
|
|
|
endif
|
2005-10-09 02:54:37 +04:00
|
|
|
INSTALL?=install
|
2006-12-23 19:26:09 +03:00
|
|
|
DOC_REF = origin/man
|
2005-07-15 05:21:57 +04:00
|
|
|
|
2006-09-01 02:31:08 +04:00
|
|
|
-include ../config.mak.autogen
|
2007-02-28 23:57:42 +03:00
|
|
|
-include ../config.mak
|
2006-09-01 02:31:08 +04:00
|
|
|
|
2005-05-22 21:44:15 +04:00
|
|
|
#
|
|
|
|
# Please note that there is a minor bug in asciidoc.
|
|
|
|
# The version after 6.0.3 _will_ include the patch found here:
|
|
|
|
# http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
|
|
|
|
#
|
|
|
|
# Until that version is released you may have to apply the patch
|
|
|
|
# yourself - yes, all 6 characters of it!
|
|
|
|
#
|
|
|
|
|
|
|
|
all: html man
|
2005-05-11 01:32:39 +04:00
|
|
|
|
|
|
|
html: $(DOC_HTML)
|
|
|
|
|
2007-04-20 07:47:04 +04:00
|
|
|
$(DOC_HTML) $(DOC_MAN1) $(DOC_MAN5) $(DOC_MAN7): asciidoc.conf
|
2005-05-22 21:44:15 +04:00
|
|
|
|
2007-04-20 07:47:04 +04:00
|
|
|
man: man1 man5 man7
|
2005-05-22 21:44:15 +04:00
|
|
|
man1: $(DOC_MAN1)
|
2007-04-20 07:47:04 +04:00
|
|
|
man5: $(DOC_MAN5)
|
2005-05-22 21:44:15 +04:00
|
|
|
man7: $(DOC_MAN7)
|
2005-05-11 01:32:39 +04:00
|
|
|
|
2005-09-21 23:29:59 +04:00
|
|
|
install: man
|
2007-04-20 07:47:04 +04:00
|
|
|
$(INSTALL) -d -m755 $(DESTDIR)$(man1dir)
|
|
|
|
$(INSTALL) -d -m755 $(DESTDIR)$(man5dir)
|
|
|
|
$(INSTALL) -d -m755 $(DESTDIR)$(man7dir)
|
2006-12-11 10:39:32 +03:00
|
|
|
$(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
|
2007-04-20 07:48:03 +04:00
|
|
|
$(INSTALL) -m644 $(DOC_MAN5) $(DESTDIR)$(man5dir)
|
2006-12-11 10:39:32 +03:00
|
|
|
$(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
|
2005-07-15 05:21:57 +04:00
|
|
|
|
2005-11-04 11:06:20 +03:00
|
|
|
|
2007-03-25 15:56:49 +04:00
|
|
|
../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
|
|
|
|
$(MAKE) -C ../ GIT-VERSION-FILE
|
|
|
|
|
|
|
|
-include ../GIT-VERSION-FILE
|
|
|
|
|
2005-11-07 08:30:56 +03:00
|
|
|
#
|
|
|
|
# Determine "include::" file references in asciidoc files.
|
|
|
|
#
|
2005-11-08 09:21:21 +03:00
|
|
|
doc.dep : $(wildcard *.txt) build-docdep.perl
|
2005-11-08 05:21:51 +03:00
|
|
|
rm -f $@+ $@
|
|
|
|
perl ./build-docdep.perl >$@+
|
|
|
|
mv $@+ $@
|
2005-11-07 08:30:56 +03:00
|
|
|
|
2005-11-08 05:21:51 +03:00
|
|
|
-include doc.dep
|
2005-11-04 11:06:20 +03:00
|
|
|
|
2007-01-19 03:02:13 +03:00
|
|
|
cmds_txt = cmds-ancillaryinterrogators.txt \
|
|
|
|
cmds-ancillarymanipulators.txt \
|
|
|
|
cmds-mainporcelain.txt \
|
|
|
|
cmds-plumbinginterrogators.txt \
|
|
|
|
cmds-plumbingmanipulators.txt \
|
2007-01-19 09:32:38 +03:00
|
|
|
cmds-synchingrepositories.txt \
|
|
|
|
cmds-synchelpers.txt \
|
|
|
|
cmds-purehelpers.txt \
|
|
|
|
cmds-foreignscminterface.txt
|
2007-01-19 03:02:13 +03:00
|
|
|
|
2007-04-06 09:17:20 +04:00
|
|
|
$(cmds_txt): cmd-list.made
|
|
|
|
|
|
|
|
cmd-list.made: cmd-list.perl $(MAN1_TXT)
|
2007-01-19 03:02:13 +03:00
|
|
|
perl ./cmd-list.perl
|
2007-04-06 09:17:20 +04:00
|
|
|
date >$@
|
2005-05-11 01:32:39 +04:00
|
|
|
|
2007-01-19 03:02:13 +03:00
|
|
|
git.7 git.html: git.txt core-intro.txt
|
2005-11-07 08:30:56 +03:00
|
|
|
|
2005-05-11 01:32:39 +04:00
|
|
|
clean:
|
2007-04-20 07:47:04 +04:00
|
|
|
rm -f *.xml *.xml+ *.html *.html+ *.1 *.5 *.7 howto-index.txt howto/*.html doc.dep
|
2007-04-06 09:17:20 +04:00
|
|
|
rm -f $(cmds_txt) *.made
|
2005-05-11 01:32:39 +04:00
|
|
|
|
|
|
|
%.html : %.txt
|
2007-03-25 15:56:49 +04:00
|
|
|
rm -f $@+ $@
|
|
|
|
$(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
|
2007-06-01 13:10:30 +04:00
|
|
|
$(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
|
2007-03-25 15:56:49 +04:00
|
|
|
mv $@+ $@
|
2005-05-11 01:32:39 +04:00
|
|
|
|
2007-04-20 07:47:04 +04:00
|
|
|
%.1 %.5 %.7 : %.xml
|
2006-04-28 17:15:06 +04:00
|
|
|
xmlto -m callouts.xsl man $<
|
2005-05-11 01:32:39 +04:00
|
|
|
|
|
|
|
%.xml : %.txt
|
2007-03-25 15:56:49 +04:00
|
|
|
rm -f $@+ $@
|
|
|
|
$(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
|
2007-06-01 13:10:30 +04:00
|
|
|
$(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
|
2007-03-25 15:56:49 +04:00
|
|
|
mv $@+ $@
|
2005-08-15 04:24:36 +04:00
|
|
|
|
2007-01-08 03:23:49 +03:00
|
|
|
user-manual.xml: user-manual.txt user-manual.conf
|
2007-02-11 18:54:40 +03:00
|
|
|
$(ASCIIDOC) -b docbook -d book $<
|
2007-01-08 03:23:49 +03:00
|
|
|
|
2007-03-03 21:33:48 +03:00
|
|
|
XSLT = http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
|
2007-03-16 18:45:29 +03:00
|
|
|
XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
|
2007-03-03 21:33:48 +03:00
|
|
|
|
2007-01-08 03:23:49 +03:00
|
|
|
user-manual.html: user-manual.xml
|
2007-03-03 21:33:48 +03:00
|
|
|
xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<
|
2007-01-08 03:23:49 +03:00
|
|
|
|
2005-08-25 11:28:18 +04:00
|
|
|
howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
|
|
|
|
rm -f $@+ $@
|
|
|
|
sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
|
|
|
|
mv $@+ $@
|
|
|
|
|
2005-08-31 00:51:01 +04:00
|
|
|
$(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
|
2007-02-11 18:54:40 +03:00
|
|
|
$(ASCIIDOC) -b xhtml11 $*.txt
|
2005-08-25 11:28:18 +04:00
|
|
|
|
|
|
|
WEBDOC_DEST = /pub/software/scm/git/docs
|
|
|
|
|
2005-08-30 09:38:12 +04:00
|
|
|
$(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
|
|
|
|
rm -f $@+ $@
|
2007-02-11 18:54:40 +03:00
|
|
|
sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+
|
2005-08-30 09:38:12 +04:00
|
|
|
mv $@+ $@
|
|
|
|
|
2005-08-25 11:28:18 +04:00
|
|
|
install-webdoc : html
|
|
|
|
sh ./install-webdoc.sh $(WEBDOC_DEST)
|
2006-12-23 19:26:09 +03:00
|
|
|
|
|
|
|
quick-install:
|
|
|
|
sh ./install-doc-quick.sh $(DOC_REF) $(mandir)
|
2007-03-25 15:56:49 +04:00
|
|
|
|
|
|
|
.PHONY: .FORCE-GIT-VERSION-FILE
|