diff options
author | Owen W. Taylor <otaylor@fishsoup.net> | 2012-03-01 11:48:09 -0500 |
---|---|---|
committer | Owen W. Taylor <otaylor@fishsoup.net> | 2012-03-01 11:48:09 -0500 |
commit | 89806cf16cb17765f1e63ac132c13eed4c3a42ac (patch) | |
tree | 430804f7000e01dcf978f01afccc84b465a44df3 | |
parent | 8c0d2f64a733c61b7ba0c736686b6a9354a5b9df (diff) | |
download | git-bz-89806cf16cb17765f1e63ac132c13eed4c3a42ac.tar.gz |
Fix up documentation generation rules
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,5 @@ +all: git-bz.html git-bz.1 + %.xml: %.txt asciidoc -f asciidoc.conf -d manpage -b docbook $< @@ -12,3 +14,5 @@ upload-html: git-bz.html if [ $$? = 0 ] ; then : ; else echo "upload location not configured" ; exit 1 ; fi ; \ scp $< $$DEST +clean: + rm -f git-bz.xml git-bz.html git-bz.1 |