blob: ac3ce3081d6e1012ed2117726ccd199771196be1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
ifndef MW_INSTALL_PATH
MW_INSTALL_PATH=../../../..
endif
default:
php ${MW_INSTALL_PATH}/tests/phpunit/phpunit.php .
.PHONY: *Test.php
*Test.php:
php ${MW_INSTALL_PATH}/tests/phpunit/phpunit.php $@
|