Commit f0b09d02 authored by Jeremy Mikola's avatar Jeremy Mikola

Fix trailing semicolons for some Makefile commands

parent b8ac034e
...@@ -6,7 +6,7 @@ PHPUNIT_ARGS=--process-isolation ...@@ -6,7 +6,7 @@ PHPUNIT_ARGS=--process-isolation
composer: composer:
@command -v composer >/dev/null 2>&1; \ @command -v composer >/dev/null 2>&1; \
if test $$? -eq 0; then \ if test $$? -eq 0; then \
composer $(COMPOSER_ARGS) ;\ composer $(COMPOSER_ARGS); \
elif test -r composer.phar; then \ elif test -r composer.phar; then \
php composer.phar $(COMPOSER_ARGS); \ php composer.phar $(COMPOSER_ARGS); \
else \ else \
...@@ -18,7 +18,7 @@ composer: ...@@ -18,7 +18,7 @@ composer:
test: composer test: composer
@command -v phpunit >/dev/null 2>&1; \ @command -v phpunit >/dev/null 2>&1; \
if test $$? -eq 0; then \ if test $$? -eq 0; then \
phpunit $(PHPUNIT_ARGS) ;\ phpunit $(PHPUNIT_ARGS); \
elif test -r phpunit.phar; then \ elif test -r phpunit.phar; then \
php phpunit.phar $(PHPUNIT_ARGS); \ php phpunit.phar $(PHPUNIT_ARGS); \
else \ else \
...@@ -30,9 +30,9 @@ test: composer ...@@ -30,9 +30,9 @@ test: composer
apigen: apigen:
@command -v apigen >/dev/null 2>&1; \ @command -v apigen >/dev/null 2>&1; \
if test $$? -eq 0; then \ if test $$? -eq 0; then \
apigen generate apigen generate; \
elif test -r apigen.phar; then \ elif test -r apigen.phar; then \
php apigen.phar generate \ php apigen.phar generate; \
else \ else \
echo "Cannot find apigen :("; \ echo "Cannot find apigen :("; \
echo "Aborting."; \ echo "Aborting."; \
...@@ -42,7 +42,7 @@ apigen: ...@@ -42,7 +42,7 @@ apigen:
mkdocs: mkdocs:
@command -v mkdocs >/dev/null 2>&1; \ @command -v mkdocs >/dev/null 2>&1; \
if test $$? -eq 0; then \ if test $$? -eq 0; then \
mkdocs build --clean \ mkdocs build --clean; \
else \ else \
echo "Cannot find mkdocs :("; \ echo "Cannot find mkdocs :("; \
echo "Aborting."; \ echo "Aborting."; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment