summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-10-15 11:13:30 +0800
committerJohn Hodge <tpg@mutabah.net>2016-10-15 11:13:30 +0800
commit090e92744a921730197a57e55f5697ac8ad1d986 (patch)
tree59afa01a87a6f111d0db40b9257961760bbae390
parent16e248dd5d2b1bd4298074af1be2ad3af04c7990 (diff)
downloadmrust-090e92744a921730197a57e55f5697ac8ad1d986.tar.gz
Makefile - Test dependency
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7a71a9b6..3199a60f 100644
--- a/Makefile
+++ b/Makefile
@@ -163,6 +163,7 @@ output/rust/run-pass/allocator-system.o: output/liballoc_system.hir
output/rust/run-pass/anon-extern-mod-cross-crate-2.o: output/libanonexternmod.hir
output/rust/run-pass/anon_trait_static_method_exe.o: output/libanon_trait_static_method_lib.hir
output/rust/run-pass/associated-const-cross-crate-defaults.o: output/libassociated_const_cc_lib.hir
+output/rust/run-pass/associated-const-match-patterns.o: output/libempty_struct.hir
output/liballocator_dummy.hir: $(RUST_TESTS_DIR)run-pass/auxiliary/allocator-dummy.rs output/libstd.hir
$(DBG) $(BIN) $< -o $@ $(PIPECMD)
@@ -172,6 +173,8 @@ output/libanon_trait_static_method_lib.hir: $(RUST_TESTS_DIR)run-pass/auxiliary/
$(DBG) $(BIN) $< --crate-type rlib -o $@ $(PIPECMD)
output/libassociated_const_cc_lib.hir: $(RUST_TESTS_DIR)run-pass/auxiliary/associated-const-cc-lib.rs output/libstd.hir
$(DBG) $(BIN) $< --crate-type rlib -o $@ $(PIPECMD)
+output/libempty_struct.hir: $(RUST_TESTS_DIR)run-pass/auxiliary/empty-struct.rs output/libstd.hir
+ $(DBG) $(BIN) $< --crate-type rlib -o $@ $(PIPECMD)
.PHONY: test test_rustos
#