Merge pull request #37 from commonquail/tabify-makefile

GNU Make requires tab-indentation
This commit is contained in:
2014-06-19 14:33:01 +01:00

View File

@@ -2,14 +2,14 @@ COMPOSER_BIN_DIR := vendor/bin
PHPUNIT_ARGS = -c tests/phpunit.xml PHPUNIT_ARGS = -c tests/phpunit.xml
test: phpunit-dep test: phpunit-dep
${COMPOSER_BIN_DIR}/phpunit ${PHPUNIT_ARGS} ${COMPOSER_BIN_DIR}/phpunit ${PHPUNIT_ARGS}
phpunit-dep: phpunit-dep:
test -f ${COMPOSER_BIN_DIR}/phpunit || ( \ test -f ${COMPOSER_BIN_DIR}/phpunit || ( \
echo "phpunit is required to run tests." \ echo "phpunit is required to run tests." \
"Please run: composer install" >&2 && \ "Please run: composer install" >&2 && \
exit 1 \ exit 1 \
) )
.SILENT: .SILENT:
.PHONY: test phpunit-dep .PHONY: test phpunit-dep