2 $(filter-out $(addsuffix .txt
, $(ARTICLES
) $(SP_ARTICLES
)), \
3 $(wildcard git-
*.txt
)) \
7 DOC_HTML
=$(patsubst %.txt
,%.html
,$(MAN1_TXT
) $(MAN7_TXT
))
10 ARTICLES
+= tutorial-2
11 ARTICLES
+= core-tutorial
12 ARTICLES
+= cvs-migration
14 ARTICLES
+= howto-index
15 ARTICLES
+= repository-layout
19 # with their own formatting rules.
20 SP_ARTICLES
= glossary howto
/revert-branch-rebase user-manual
22 DOC_HTML
+= $(patsubst %,%.html
,$(ARTICLES
) $(SP_ARTICLES
))
24 DOC_MAN1
=$(patsubst %.txt
,%.1,$(MAN1_TXT
))
25 DOC_MAN7
=$(patsubst %.txt
,%.7,$(MAN7_TXT
))
30 man1dir=$(mandir)/man1
31 man7dir=$(mandir)/man7
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!
52 $(DOC_HTML
) $(DOC_MAN1
) $(DOC_MAN7
): asciidoc.conf
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
69 perl .
/build-docdep.perl
>$@
+
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 \
80 cmds-synchelpers.txt \
81 cmds-purehelpers.txt \
82 cmds-foreignscminterface.txt
84 $(cmds_txt
): cmd-list.perl
$(MAN1_TXT
)
87 git
.7 git.html
: git.txt core-intro.txt
90 rm -f
*.xml
*.html
*.1 *.7 howto-index.txt howto
/*.html doc.dep
94 asciidoc
-b xhtml11
-d manpage
-f asciidoc.conf
$<
97 xmlto
-m callouts.xsl man
$<
100 asciidoc
-b docbook
-d manpage
-f asciidoc.conf
$<
102 user-manual.xml
: user-manual.txt user-manual.conf
103 asciidoc
-b docbook
-d book
$<
105 user-manual.html
: user-manual.xml
106 xmlto html-nochunks
$<
108 glossary.html
: glossary.txt sort_glossary.pl
110 perl sort_glossary.pl | \
111 asciidoc
-b xhtml11
- > glossary.html
113 howto-index.txt
: howto-index.sh
$(wildcard howto
/*.txt
)
115 sh .
/howto-index.sh
$(wildcard howto
/*.txt
) >$@
+
118 $(patsubst %,%.html
,$(ARTICLES
)) : %.html
: %.txt
119 asciidoc
-b xhtml11
$*.txt
121 WEBDOC_DEST
= /pub
/software
/scm
/git
/docs
123 $(patsubst %.txt
,%.html
,$(wildcard howto
/*.txt
)): %.html
: %.txt
125 sed
-e
'1,/^$$/d' $< | asciidoc
-b xhtml11
- >$@
+
128 install-webdoc
: html
129 sh .
/install-webdoc.sh
$(WEBDOC_DEST
)
132 sh .
/install-doc-quick.sh
$(DOC_REF
) $(mandir)