1#######################################################
2# DO NOT EDIT THIS FILE!                              #
3#                                                     #
4# It's auto-generated by symfony-cmf/dev-kit package. #
5#######################################################
6
7############################################################################
8# This file is part of the Symfony CMF package.                            #
9#                                                                          #
10# (c) 2011-2017 Symfony CMF                                                #
11#                                                                          #
12# For the full copyright and license information, please view the LICENSE  #
13# file that was distributed with this source code.                         #
14############################################################################
15
16TESTING_SCRIPTS_DIR=vendor/symfony-cmf/testing/bin
17CONSOLE=${TESTING_SCRIPTS_DIR}/console
18VERSION=dev-master
19ifdef BRANCH
20	VERSION=dev-${BRANCH}
21endif
22PACKAGE=symfony-cmf/routing
23list:
24	@echo 'test:                    will run all tests'
25	@echo 'unit_tests:               will run unit tests only'
26
27
28
29include ${TESTING_SCRIPTS_DIR}/make/unit_tests.mk
30
31.PHONY: test
32test: unit_tests
33