summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 00000000..0a649927
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,15 @@
+.PHONY: help test
+all test:
+ php RunTests.php
+install:
+ cvs -z9 -d:pserver:cvsread:@cvs.php.net:/repository/ co -P pear/PHPUnit
+ mv pear/PHPUnit .
+ rm -rf pear
+clean:
+ rm -rf PHPUnit pear
+help:
+ # Options:
+ # test (default) Run the unit tests
+ # install Install PHPUnit from CVS
+ # clean Remove local PHPUnit install
+ # help You're looking at it!