diff options
author | John Hodge <tpg@mutabah.net> | 2016-10-30 16:07:48 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-10-30 16:12:53 +0800 |
commit | 5b670937ed4f466a4b488aa820e2c310ee79e271 (patch) | |
tree | 0309937991a33bedea15f8f46d6bb5aadfc3a4bc | |
parent | a45cb623dd862a0f08345b60be18f041afbaa3e4 (diff) | |
download | mrust-5b670937ed4f466a4b488aa820e2c310ee79e271.tar.gz |
Makefile - More correct dependencies for -j builds
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -134,12 +134,18 @@ output/librustc_unicode.hir: output/libcore.hir output/libcollections.hir: output/libcore.hir output/liballoc.hir output/librustc_unicode.hir output/librand.hir: output/libcore.hir output/liblibc.hir: output/libcore.hir +output/libcompiler_builtins.hir: output/libcore.hir output/libstd.hir: $(call fcn_extcrate, core collections rand libc unwind compiler_builtins) output/libunwind.hir: $(call fcn_extcrate, core libc) +output/libterm.hir: $(call fcn_extcrate, std) +output/libpanic_unwind.hir: $(call fcn_extcrate, core alloc libc unwind) output/libtest.hir: $(call fcn_extcrate, std getopts term panic_unwind) output/libgetopts.hir: output/libstd.hir +output/liballoc_system.hir: $(call fcn_extcrate, core libc) +output/liballoc_jemalloc.hir: $(call fcn_extcrate, core libc) + output/libserialize.hir: $(call fcn_extcrate, std log) output/librbml.hir: $(call fcn_extcrate, std serialize) output/librustc_llvm.hir: $(call fcn_extcrate, std rustc_bitflags) |