diff options
author | Avery Pennarun <apenwarr@gmail.com> | 2009-11-20 19:43:47 -0500 |
---|---|---|
committer | Avery Pennarun <apenwarr@gmail.com> | 2009-11-20 19:43:47 -0500 |
commit | d344532afd3d99c9cdd6d7cfc46bd92ff7def4e8 (patch) | |
tree | 97c1e65e3c882fa9951f7dfc43b294e070e29717 | |
parent | make git version dynamic when building documentation (diff) | |
download | tgif-d344532afd3d99c9cdd6d7cfc46bd92ff7def4e8.tar.xz |
Weird, I forgot to have 'make test' call test.sh.
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -15,6 +15,7 @@ default: @echo "Just copy it somewhere on your PATH, like /usr/local/bin." @echo @echo "Try: make doc" + @echo " or: make test" @false install: install-exe install-doc @@ -35,6 +36,9 @@ doc: git-subtree.1 %.xml: %.txt asciidoc -b docbook -d manpage -f asciidoc.conf \ -agit_version=$(gitver) $^ + +test: + ./test.sh clean: rm -f *~ *.xml *.html *.1 |