From f458e45abf7e114a55272bd494d6a5c13f7c85bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 9 May 2015 16:55:23 +0300 Subject: 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. --- core/test.mk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/test.mk') 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: -- cgit v1.2.3