comparison doc/Makefile @ 1689:c6c76ead1cc1

Fall back to asciidoc6 html backend if html4 doesn't work. This reenables building documentation on Debian sarge, which broke after 9346a7fb3fe2.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 03 Feb 2006 10:54:58 +0100
parents 9346a7fb3fe2
children 7956893e8458
comparison
equal deleted inserted replaced
1688:43d3db1b8296 1689:c6c76ead1cc1
13 13
14 %.xml: %.txt 14 %.xml: %.txt
15 asciidoc -d manpage -b docbook $*.txt 15 asciidoc -d manpage -b docbook $*.txt
16 16
17 %.html: %.txt 17 %.html: %.txt
18 asciidoc -b html4 $*.txt 18 asciidoc -b html4 $*.txt || asciidoc -b html $*.txt
19 19
20 clean: 20 clean:
21 $(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html) 21 $(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)