blob: 1df7c94380bfdf1d06adb2049c60a14df30ba4c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
ifndef MW_INSTALL_PATH
MW_INSTALL_PATH=../../../..
endif
DIRS = api ffs messagegroups PageTranslation tag translationaids unit utils Validation
default:
php ${MW_INSTALL_PATH}/tests/phpunit/phpunit.php .
.PHONY: *Test.php $(DIRS)
*Test.php $(DIRS):
php ${MW_INSTALL_PATH}/tests/phpunit/phpunit.php $@
|