Makefile: Fail properly if asciidoc is missing

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2014-02-27 16:26:45 +01:00
parent 66dd58a5cb
commit 3376e5d702
1 changed files with 1 additions and 1 deletions

View File

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