From ac4c4699cb4685c83b6c289bcefe7587f144484b Mon Sep 17 00:00:00 2001 From: Mikkel Kjeldsen Date: Thu, 19 Jun 2014 14:36:50 +0200 Subject: [PATCH] GNU Make requires tab-indentation GNU Make does not play nicely with leading spaces after rules. It requires that the first line starts with a tab. Although it isn't strictly necessary to change subsequent lines as well, mixing tabs and spaces is a nightmare. --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 71b1056..3af38cf 100644 --- a/Makefile +++ b/Makefile @@ -2,14 +2,14 @@ COMPOSER_BIN_DIR := vendor/bin PHPUNIT_ARGS = -c tests/phpunit.xml test: phpunit-dep - ${COMPOSER_BIN_DIR}/phpunit ${PHPUNIT_ARGS} + ${COMPOSER_BIN_DIR}/phpunit ${PHPUNIT_ARGS} phpunit-dep: - test -f ${COMPOSER_BIN_DIR}/phpunit || ( \ - echo "phpunit is required to run tests." \ - "Please run: composer install" >&2 && \ - exit 1 \ - ) + test -f ${COMPOSER_BIN_DIR}/phpunit || ( \ + echo "phpunit is required to run tests." \ + "Please run: composer install" >&2 && \ + exit 1 \ + ) .SILENT: .PHONY: test phpunit-dep