comparison Makefile @ 2269:b838c069bf4e stable

make: fix indent of ifeq-endif ifeq() can't be a recipe.
author Yuya Nishihara <yuya@tcha.org>
date Wed, 19 Apr 2017 21:34:03 +0900
parents 934d70e3be97
children b53343c8d692
comparison
equal deleted inserted replaced
2268:f2ebe960998b 2269:b838c069bf4e
32 @echo ' tests-%s - run all tests in the specified hg version' 32 @echo ' tests-%s - run all tests in the specified hg version'
33 33
34 all: help 34 all: help
35 35
36 _check_hgroot: 36 _check_hgroot:
37 ifeq ($(HGROOT),) 37 ifeq ($(HGROOT),)
38 $(error HGROOT is not set to the root of the hg source tree) 38 $(error HGROOT is not set to the root of the hg source tree)
39 endif 39 endif
40 40
41 tests: _check_hgroot 41 tests: _check_hgroot
42 cd tests && $(PYTHON) $(HGTESTS)/run-tests.py $(TESTFLAGS) 42 cd tests && $(PYTHON) $(HGTESTS)/run-tests.py $(TESTFLAGS)
43 43
44 # /!\ run outside of the compatibility branch output test will likely fails 44 # /!\ run outside of the compatibility branch output test will likely fails