diff options
author | John Hodge <tpg@mutabah.net> | 2016-09-07 11:38:22 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-09-07 11:38:22 +0800 |
commit | 9ddbbdc64821c64d0ec6a08160f81dd364911470 (patch) | |
tree | 3b62cb58da5a4d205dc27518f8158376a09f9051 | |
parent | 57df16360d231f60d2030f490c1e73149b47857d (diff) | |
download | mrust-9ddbbdc64821c64d0ec6a08160f81dd364911470.tar.gz |
Makefile - Start on libcollections
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -93,7 +93,11 @@ output/libcore.hir: $(RUSTCSRC)src/libcore/lib.rs $(BIN) @echo "--- [MRUSTC] $@" @mkdir -p output/ $(DBG) $(BIN) $< -o $@ $(PIPECMD) -output/liballoc.hir output/libcollections.hir: output/%.hir: $(RUSTCSRC)src/%/lib.rs output/libcore.hir $(BIN) +output/liballoc.hir: $(RUSTCSRC)src/liballoc/lib.rs output/libcore.hir $(BIN) + @echo "--- [MRUSTC] $@" + @mkdir -p output/ + $(DBG) $(BIN) $< -o $@ $(PIPECMD) +output/libcollections.hir: $(RUSTCSRC)src/libcollections/lib.rs output/libcore.hir output/liballoc.hir $(BIN) @echo "--- [MRUSTC] $@" @mkdir -p output/ $(DBG) $(BIN) $< -o $@ $(PIPECMD) @@ -118,7 +122,7 @@ output/rust/%.o: $(RUST_TESTS_DIR)%.rs $(BIN) touch $@ .PHONY: test test_rustos -test: output/libcore.hir output/liballoc.hir $(BIN) +test: output/libcore.hir output/liballoc.hir output/libcollections.hir $(BIN) test_rustos: $(addprefix output/rust_os/,libkernel.rlib) |