30 lines
944 B
Makefile
30 lines
944 B
Makefile
|
# This file is licensed under the Affero General Public License version 3 or
|
||
|
# later. See the COPYING file.
|
||
|
app_name=$(notdir $(CURDIR))
|
||
|
build_tools_directory=$(CURDIR)/build/tools
|
||
|
composer=$(shell which composer 2> /dev/null)
|
||
|
|
||
|
# Dev env management
|
||
|
dev-setup: composer
|
||
|
|
||
|
|
||
|
# Installs and updates the composer dependencies. If composer is not installed
|
||
|
# a copy is fetched from the web
|
||
|
composer:
|
||
|
ifeq (, $(composer))
|
||
|
@echo "No composer command available, downloading a copy from the web"
|
||
|
mkdir -p $(build_tools_directory)
|
||
|
curl -sS https://getcomposer.org/installer | php
|
||
|
mv composer.phar $(build_tools_directory)
|
||
|
php $(build_tools_directory)/composer.phar install --prefer-dist
|
||
|
php $(build_tools_directory)/composer.phar update --prefer-dist
|
||
|
else
|
||
|
composer install --prefer-dist
|
||
|
composer update --prefer-dist
|
||
|
endif
|
||
|
|
||
|
# Tests
|
||
|
test:
|
||
|
./vendor/phpunit/phpunit/phpunit -c phpunit.xml
|
||
|
./vendor/phpunit/phpunit/phpunit -c phpunit.integration.xml
|