diff options
| author | Graydon Hoare <[email protected]> | 2011-05-03 15:51:21 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-03 15:56:00 -0700 |
| commit | 4f52ab52c19154f63f09d9f3d066af61264b1600 (patch) | |
| tree | ea13b0413497b12c7f2dc56e2884133df56157c9 /mk/stage0.mk | |
| parent | Start sketching --depend support in rustc. (diff) | |
| download | rust-4f52ab52c19154f63f09d9f3d066af61264b1600.tar.xz rust-4f52ab52c19154f63f09d9f3d066af61264b1600.zip | |
Remove everything to do with rustboot from makefiles.
Diffstat (limited to 'mk/stage0.mk')
| -rw-r--r-- | mk/stage0.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/stage0.mk b/mk/stage0.mk index c41cddaf..493f9e00 100644 --- a/mk/stage0.mk +++ b/mk/stage0.mk @@ -1,9 +1,12 @@ stage0/rustc$(X): $(S)src/snapshots.txt $(S)src/etc/get-snapshot.py $(MKFILES) @$(call E, fetch: $@) - $(S)src/etc/get-snapshot.py + $(Q)$(S)src/etc/get-snapshot.py + $(Q)touch $@ # These two will be made in the process of making rustc above. stage0/glue.o: stage0/rustc$(X) + $(Q)touch $@ stage0/$(CFG_STDLIB): stage0/rustc$(X) + $(Q)touch $@ |