forked from ungleich-public/ccollect
Added first manual page tests
This commit is contained in:
parent
0e5041f833
commit
d322792bd4
1 changed files with 7 additions and 0 deletions
7
Makefile
7
Makefile
|
@ -8,6 +8,7 @@ CCOLLECT=ccollect.sh
|
||||||
LN=ln -sf
|
LN=ln -sf
|
||||||
ASCIIDOC=asciidoc
|
ASCIIDOC=asciidoc
|
||||||
DOCBOOKTOTEXI=docbook2x-texi
|
DOCBOOKTOTEXI=docbook2x-texi
|
||||||
|
DOCBOOKTOMAN=docbook2x-man
|
||||||
|
|
||||||
prefix=/usr/packages/ccollect-git
|
prefix=/usr/packages/ccollect-git
|
||||||
bindir=$(prefix)/bin
|
bindir=$(prefix)/bin
|
||||||
|
@ -50,6 +51,9 @@ install-script:
|
||||||
%.texi: %.docbook
|
%.texi: %.docbook
|
||||||
${DOCBOOKTOTEXI} --to-stdout $< > $@
|
${DOCBOOKTOTEXI} --to-stdout $< > $@
|
||||||
|
|
||||||
|
%.man: %.docbook
|
||||||
|
${DOCBOOKTOMAN} --to-stdout $< > $@
|
||||||
|
|
||||||
#
|
#
|
||||||
# Developer targets
|
# Developer targets
|
||||||
#
|
#
|
||||||
|
@ -72,8 +76,11 @@ HTMLDOCS = $(DOCS:.text=.html)
|
||||||
|
|
||||||
TEXIDOCS = $(DOCS:.text=.texi)
|
TEXIDOCS = $(DOCS:.text=.texi)
|
||||||
|
|
||||||
|
MANPDOCS = $(DOCS:.text=.man)
|
||||||
|
|
||||||
DOCBDOCS = $(DOCS:.text=.docbook)
|
DOCBDOCS = $(DOCS:.text=.docbook)
|
||||||
|
|
||||||
|
|
||||||
html: ${HTMLDOCS}
|
html: ${HTMLDOCS}
|
||||||
|
|
||||||
info: ${TEXIDOCS}
|
info: ${TEXIDOCS}
|
||||||
|
|
Loading…
Reference in a new issue