fix makefile for new manpages

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-05-08 15:21:15 +02:00
parent 308f1ab740
commit 2f9c491621
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ changelogs:
manpages:
mkdir -p html/doc/manpages
cd src; for manpage in *.?.txt; \
do asciidoc -a icons -b xhtml11 -o ../html/doc/manpages/`basename $${manpage} .txt`.html $$manpage; \
cd src/manpages; for manpage in *.?.txt; \
do asciidoc -a icons -b xhtml11 -o ../../html/doc/manpages/`basename $${manpage} .txt`.html $$manpage; \
done
.PHONY: authors.mdwn changelogs manpages