diff options
| author | Graydon Hoare <[email protected]> | 2011-05-03 14:18:30 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-03 14:18:30 -0700 |
| commit | 1c85712db3a647595c57d9f5ad2d4306df1f2d69 (patch) | |
| tree | b99a1f6338181a2cc3fa4461786e017eeebdad29 /mk | |
| parent | Update copyrights for completeness. (diff) | |
| download | rust-1c85712db3a647595c57d9f5ad2d4306df1f2d69.tar.xz rust-1c85712db3a647595c57d9f5ad2d4306df1f2d69.zip | |
Remove calls to rustboot -rdeps, leave 'touch' in place while working on replacement.
Diffstat (limited to 'mk')
| -rw-r--r-- | mk/autodep.mk | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/mk/autodep.mk b/mk/autodep.mk index 59f221d0..b2a785db 100644 --- a/mk/autodep.mk +++ b/mk/autodep.mk @@ -66,17 +66,11 @@ boot/$(CFG_STDLIB).d: $(STDLIB_CRATE) $(STDLIB_INPUTS) \ stage0/rustc$(X).d: $(COMPILER_CRATE) $(COMPILER_INPUTS) \ $(STDLIB_CRATE) $(MKFILES) boot/rustboot$(X) @$(call E, dep: $@) - $(BOOT) -o $(patsubst %.d,%$(X),$@) -shared -rdeps $< >[email protected] - $(Q)$(CFG_PATH_MUNGE) [email protected] - $(Q)rm -f [email protected] - $(Q)mv [email protected] $@ + $(Q)touch $@ -%.d: %.rc $(MKFILES) boot/rustboot$(X) +%.d: %.rc $(MKFILES) @$(call E, dep: $@) - $(BOOT) -o $(patsubst %.d,%$(X),$@) -rdeps $< >[email protected] - $(Q)$(CFG_PATH_MUNGE) [email protected] - $(Q)rm -f [email protected] - $(Q)mv [email protected] $@ + $(Q)touch $@ ifneq ($(MAKECMDGOALS),clean) -include $(CRATE_DEPFILES) |