summaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: 0a649927ed179f04de74c4b9e2768f0604c8309f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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!