2 $(filter-out $(addsuffix .txt
, $(ARTICLES
) $(SP_ARTICLES
)), \
3 $(wildcard git-
*.txt
)) \
5 MAN5_TXT
=gitattributes.txt
8 DOC_HTML
=$(patsubst %.txt
,%.html
,$(MAN1_TXT
) $(MAN5_TXT
) $(MAN7_TXT
))
11 ARTICLES
+= tutorial-2
12 ARTICLES
+= core-tutorial
13 ARTICLES
+= cvs-migration
15 ARTICLES
+= howto-index
16 ARTICLES
+= repository-layout
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
))
33 man1dir=$(mandir)/man1
34 man5dir=$(mandir)/man5
35 man7dir=$(mandir)/man7
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!
59 $(DOC_HTML
) $(DOC_MAN1
) $(DOC_MAN5
) $(DOC_MAN7
): asciidoc.conf
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
85 perl .
/build-docdep.perl
>$@
+
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
)
106 git
.7 git.html
: git.txt core-intro.txt
109 rm -f
*.xml
*.xml
+ *.html
*.html
+ *.1 *.5 *.7 howto-index.txt howto
/*.html doc.dep
110 rm -f
$(cmds_txt
) *.made
114 $(ASCIIDOC
) -b xhtml11
-d manpage
-f asciidoc.conf \
115 $(ASCIIDOC_EXTRA
) -o
- $< | \
116 sed
-e
's/@@GIT_VERSION@@/$(GIT_VERSION)/g' >$@
+
120 xmlto
-m callouts.xsl man
$<
124 $(ASCIIDOC
) -b docbook
-d manpage
-f asciidoc.conf \
125 $(ASCIIDOC_EXTRA
) -o
- $< | \
126 sed
-e
's/@@GIT_VERSION@@/$(GIT_VERSION)/g' >$@
+
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
)
140 sh .
/howto-index.sh
$(wildcard howto
/*.txt
) >$@
+
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
150 sed
-e
'1,/^$$/d' $< |
$(ASCIIDOC
) -b xhtml11
- >$@
+
153 install-webdoc
: html
154 sh .
/install-webdoc.sh
$(WEBDOC_DEST
)
157 sh .
/install-doc-quick.sh
$(DOC_REF
) $(mandir)
159 .PHONY
: .FORCE-GIT-VERSION-FILE