blob: 45576f691dde9364a57306c3e66de2de6caa1b67 (
plain) (
tree)
|
|
%.xml: %.txt
asciidoc -f asciidoc.conf -d manpage -b docbook $<
%.html: %.txt
asciidoc -f asciidoc.conf -d manpage $<
%.1: %.xml
xmlto man $<
upload-html: git-bz.html
DEST=`git config local.upload-html-dest` ; \
if [ $$? = 0 ] ; then : ; else echo "upload location not configured" ; exit 1 ; fi ; \
scp $< $$DEST
|