aboutsummaryrefslogtreecommitdiffstats
path: root/core/test.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-05-09 16:55:23 +0300
committerLoïc Hoguin <[email protected]>2015-05-09 16:55:23 +0300
commitf458e45abf7e114a55272bd494d6a5c13f7c85bc (patch)
tree13d3e30251533105bc133512652ffd0c27461bd6 /core/test.mk
parent7d28bd8d9eb449c360eb9582e282bd4756f76be9 (diff)
downloaderlang.mk-f458e45abf7e114a55272bd494d6a5c13f7c85bc.tar.gz
erlang.mk-f458e45abf7e114a55272bd494d6a5c13f7c85bc.tar.bz2
erlang.mk-f458e45abf7e114a55272bd494d6a5c13f7c85bc.zip
Skip any handling of dependencies if SKIP_DEPS is defined
This includes fetching and compilation. Example usage: SKIP_DEPS=1 make tests Should improve people's life when there are no Internets.
Diffstat (limited to 'core/test.mk')
-rw-r--r--core/test.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/test.mk b/core/test.mk
index 385ec85..7dd5d61 100644
--- a/core/test.mk
+++ b/core/test.mk
@@ -16,8 +16,12 @@ TEST_ERLC_OPTS += -DTEST=1
$(foreach dep,$(TEST_DEPS),$(eval $(call dep_target,$(dep))))
+ifneq ($(SKIP_DEPS),)
+test-deps:
+else
test-deps: $(ALL_TEST_DEPS_DIRS)
@for dep in $(ALL_TEST_DEPS_DIRS) ; do $(MAKE) -C $$dep; done
+endif
ifneq ($(strip $(TEST_DIR)),)
test-dir: