summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-05-06 00:34:28 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-05-06 00:34:28 +0200
commit616becbfdb3bed82da99bd950cbfe4bf28856bb7 (patch)
treed17bb7acd70817fe42aef83c07bb8e72555dde54 /Makefile
parent382fc245366999b540bf547b9ccb2f9529a2116b (diff)
Replace shell test script by Perl TAP stuff, add test target to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e5891da..05a85e3 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,10 @@ uninstall:
rm -f ${basedir}/bin/efa
rm -f ${basedir}/share/man/man1/efa.1
+test:
+ @prove test
+
clean:
rm -rf build
-.PHONY: install uninstall clean
+.PHONY: install uninstall test clean