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
|
||||
ASCIIDOC=asciidoc
|
||||
DOCBOOKTOTEXI=docbook2x-texi
|
||||
DOCBOOKTOMAN=docbook2x-man
|
||||
|
||||
prefix=/usr/packages/ccollect-git
|
||||
bindir=$(prefix)/bin
|
||||
|
@ -50,6 +51,9 @@ install-script:
|
|||
%.texi: %.docbook
|
||||
${DOCBOOKTOTEXI} --to-stdout $< > $@
|
||||
|
||||
%.man: %.docbook
|
||||
${DOCBOOKTOMAN} --to-stdout $< > $@
|
||||
|
||||
#
|
||||
# Developer targets
|
||||
#
|
||||
|
@ -72,8 +76,11 @@ HTMLDOCS = $(DOCS:.text=.html)
|
|||
|
||||
TEXIDOCS = $(DOCS:.text=.texi)
|
||||
|
||||
MANPDOCS = $(DOCS:.text=.man)
|
||||
|
||||
DOCBDOCS = $(DOCS:.text=.docbook)
|
||||
|
||||
|
||||
html: ${HTMLDOCS}
|
||||
|
||||
info: ${TEXIDOCS}
|
||||
|
|
Loading…
Reference in a new issue