diff options
author | est31 <MTest31@outlook.com> | 2016-09-28 15:54:35 +0200 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2016-09-28 15:54:35 +0200 |
commit | c518dcf7facc96fa6105c84cb61546bbc44c0111 (patch) | |
tree | 2d511e47b4526e29d2e0c86c2a3023f328733447 | |
parent | 336247fe7101499794cff44e31ee1f794422aab4 (diff) | |
download | mrust-c518dcf7facc96fa6105c84cb61546bbc44c0111.tar.gz |
Makefile: make rustc-nightly directory a direct depenency of test target
Make test will now download rustc on a clean clone
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -141,7 +141,7 @@ output/rust/%.o: $(RUST_TESTS_DIR)%.rs $(RUSTCSRC) $(BIN) touch $@ .PHONY: test test_rustos -test: output/libcore.hir output/liballoc.hir output/libcollections.hir output/libstd.hir $(BIN) +test: $(RUSTCSRC) output/libcore.hir output/liballoc.hir output/libcollections.hir output/libstd.hir $(BIN) test_rustos: $(addprefix output/rust_os/,libkernel.rlib) |