diff options
author | John Hodge <tpg@mutabah.net> | 2017-01-07 09:58:29 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2017-01-07 09:58:29 +0800 |
commit | fdd328057b3fcabea5ea35af3579c4f5283bba13 (patch) | |
tree | 4b0ee3ddecaa1891cf8f4665f9b166e69c05400e | |
parent | 215f9d27213265457fe56a3949e85daa5393c513 (diff) | |
download | mrust-fdd328057b3fcabea5ea35af3579c4f5283bba13.tar.gz |
Makefile - Use $V for tests
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 "--- [$@]" # @./$@ |