comparison doc/Makefile @ 1428:9346a7fb3fe2

Change asciidoc backend to more recent name. The latest asciidoc doesn't have an 'html' backend. 'html' was last valid with version 6 ( 2005-1-28). Current options are xhtml11, or html4, with xhtml11 by default.
author Eric Bloodworth <ergosys@gmail.com>
date Mon, 24 Oct 2005 14:54:34 -0700
parents b0e581438835
children c6c76ead1cc1
comparison
equal deleted inserted replaced
1427:0980d77f5e9a 1428:9346a7fb3fe2
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 html $*.txt 18 asciidoc -b html4 $*.txt
19 19
20 clean: 20 clean:
21 $(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html) 21 $(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)