aboutsummaryrefslogtreecommitdiffstats
path: root/core/test.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-07-04 18:10:03 +0200
committerLoïc Hoguin <[email protected]>2015-07-04 18:10:03 +0200
commit0eb54a71605a955df14c5df793ebe676c86259f9 (patch)
treea9259406c19b034c32d426d570b941e89e237058 /core/test.mk
parentc2debce2bfcf2400905ff56c4a80e4c3251c6e56 (diff)
downloaderlang.mk-0eb54a71605a955df14c5df793ebe676c86259f9.tar.gz
erlang.mk-0eb54a71605a955df14c5df793ebe676c86259f9.tar.bz2
erlang.mk-0eb54a71605a955df14c5df793ebe676c86259f9.zip
Add $(verbose) to avoid completely silencing commands
Diffstat (limited to 'core/test.mk')
-rw-r--r--core/test.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/test.mk b/core/test.mk
index 3832996..acc792a 100644
--- a/core/test.mk
+++ b/core/test.mk
@@ -20,7 +20,7 @@ ifneq ($(SKIP_DEPS),)
test-deps:
else
test-deps: $(ALL_TEST_DEPS_DIRS)
- @for dep in $(ALL_TEST_DEPS_DIRS) ; do $(MAKE) -C $$dep; done
+ $(verbose) for dep in $(ALL_TEST_DEPS_DIRS) ; do $(MAKE) -C $$dep; done
endif
ifneq ($(wildcard $(TEST_DIR)),)
@@ -32,12 +32,12 @@ endif
ifeq ($(wildcard ebin/test),)
test-build:: ERLC_OPTS=$(TEST_ERLC_OPTS)
test-build:: clean deps test-deps
- @$(MAKE) --no-print-directory app-build test-dir ERLC_OPTS="$(TEST_ERLC_OPTS)"
+ $(verbose) $(MAKE) --no-print-directory app-build test-dir ERLC_OPTS="$(TEST_ERLC_OPTS)"
$(gen_verbose) touch ebin/test
else
test-build:: ERLC_OPTS=$(TEST_ERLC_OPTS)
test-build:: deps test-deps
- @$(MAKE) --no-print-directory app-build test-dir ERLC_OPTS="$(TEST_ERLC_OPTS)"
+ $(verbose) $(MAKE) --no-print-directory app-build test-dir ERLC_OPTS="$(TEST_ERLC_OPTS)"
endif
clean:: clean-test-dir