summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2017-01-07 09:58:29 +0800
committerJohn Hodge <tpg@mutabah.net>2017-01-07 09:58:29 +0800
commitfdd328057b3fcabea5ea35af3579c4f5283bba13 (patch)
tree4b0ee3ddecaa1891cf8f4665f9b166e69c05400e
parent215f9d27213265457fe56a3949e85daa5393c513 (diff)
downloadmrust-fdd328057b3fcabea5ea35af3579c4f5283bba13.tar.gz
Makefile - Use $V for tests
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d8808a1..a401174e 100644
--- a/Makefile
+++ b/Makefile
@@ -241,9 +241,9 @@ output/rust/%: $(RUST_TESTS_DIR)%.rs $(RUSTCSRC) $(BIN) output/libstd.hir output
@mkdir -p $(dir $@)
@echo "=== TEST $(patsubst output/rust/%.o,%,$@)"
@echo "--- [MRUSTC] -o $@.c"
- @$(BIN) $< -o $@.c --stop-after $(RUST_TESTS_FINAL_STAGE) $(TEST_ARGS_$*) > $@.txt 2>&1 || (tail -n 1 $@.txt; false)
+ $V$(BIN) $< -o $@.c --stop-after $(RUST_TESTS_FINAL_STAGE) $(TEST_ARGS_$*) > $@.txt 2>&1 || (tail -n 1 $@.txt; false)
@echo "--- [CC] -o $@"
- $(TARGET_CC) $@.c -pthread -g -o $@
+ $V$(TARGET_CC) $@.c -pthread -g -o $@
# @echo "--- [$@]"
# @./$@