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
39 -include ..
/config.mak.autogen
42 # Please note that there is a minor bug in asciidoc.
43 # The version after 6.0.3 _will_ include the patch found here:
44 # http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
46 # Until that version is released you may have to apply the patch
47 # yourself - yes, all 6 characters of it!
54 $(DOC_HTML
) $(DOC_MAN1
) $(DOC_MAN7
): asciidoc.conf
61 $(INSTALL
) -d
-m755
$(DESTDIR
)$(man1dir) $(DESTDIR
)$(man7dir)
62 $(INSTALL
) -m644
$(DOC_MAN1
) $(DESTDIR
)$(man1dir)
63 $(INSTALL
) -m644
$(DOC_MAN7
) $(DESTDIR
)$(man7dir)
67 # Determine "include::" file references in asciidoc files.
69 doc.dep
: $(wildcard *.txt
) build-docdep.perl
71 perl .
/build-docdep.perl
>$@
+
76 cmds_txt
= cmds-ancillaryinterrogators.txt \
77 cmds-ancillarymanipulators.txt \
78 cmds-mainporcelain.txt \
79 cmds-plumbinginterrogators.txt \
80 cmds-plumbingmanipulators.txt \
81 cmds-synchingrepositories.txt \
82 cmds-synchelpers.txt \
83 cmds-purehelpers.txt \
84 cmds-foreignscminterface.txt
86 $(cmds_txt
): cmd-list.perl
$(MAN1_TXT
)
89 git
.7 git.html
: git.txt core-intro.txt
92 rm -f
*.xml
*.html
*.1 *.7 howto-index.txt howto
/*.html doc.dep
96 $(ASCIIDOC
) -b xhtml11
-d manpage
-f asciidoc.conf
$(ASCIIDOC_EXTRA
) $<
99 xmlto
-m callouts.xsl man
$<
102 $(ASCIIDOC
) -b docbook
-d manpage
-f asciidoc.conf
$<
104 user-manual.xml
: user-manual.txt user-manual.conf
105 $(ASCIIDOC
) -b docbook
-d book
$<
107 user-manual.html
: user-manual.xml
108 xmlto html-nochunks
$<
110 glossary.html
: glossary.txt sort_glossary.pl
112 perl sort_glossary.pl | \
113 $(ASCIIDOC
) -b xhtml11
- > glossary.html
115 howto-index.txt
: howto-index.sh
$(wildcard howto
/*.txt
)
117 sh .
/howto-index.sh
$(wildcard howto
/*.txt
) >$@
+
120 $(patsubst %,%.html
,$(ARTICLES
)) : %.html
: %.txt
121 $(ASCIIDOC
) -b xhtml11
$*.txt
123 WEBDOC_DEST
= /pub
/software
/scm
/git
/docs
125 $(patsubst %.txt
,%.html
,$(wildcard howto
/*.txt
)): %.html
: %.txt
127 sed
-e
'1,/^$$/d' $< |
$(ASCIIDOC
) -b xhtml11
- >$@
+
130 install-webdoc
: html
131 sh .
/install-webdoc.sh
$(WEBDOC_DEST
)
134 sh .
/install-doc-quick.sh
$(DOC_REF
) $(mandir)