6 lines
137 B
Makefile
6 lines
137 B
Makefile
|
FILES := $(shell find . -name '*.php' -o -name '*.inc')
|
||
|
|
||
|
test-coverage : $(FILES)
|
||
|
phpunit --coverage-html coverage --syntax-check test
|
||
|
|