diff options
| author | Graydon Hoare <[email protected]> | 2011-05-02 17:56:15 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-02 17:56:33 -0700 |
| commit | 5d1c8dbfa9c4af701c0975386b3b65f4de810665 (patch) | |
| tree | d1c5a8edcdef83992d7378eb1ca3d285e810117e /Makefile.in | |
| parent | rustc: Time the Rust translation and LLVM passes separately (diff) | |
| download | rust-5d1c8dbfa9c4af701c0975386b3b65f4de810665.tar.xz rust-5d1c8dbfa9c4af701c0975386b3b65f4de810665.zip | |
Add stage1, stage2 to Makefile.in default target, so tinderboxes notice breakage.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 2caeafe0..1e91fefd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -147,13 +147,13 @@ all: boot/rustboot$(X) \ $(GENERATED) \ $(DOCS) \ stage1/$(CFG_STDLIB) \ - stage1/glue.o -# stage1/rustc$(X) \ -# stage2/$(CFG_STDLIB) \ + stage1/glue.o \ + stage1/rustc$(X) \ + stage2/$(CFG_STDLIB) \ + stage2/glue.o \ + stage2/rustc$(X) # stage3/$(CFG_STDLIB) \ -# stage2/glue.o \ # stage3/glue.o \ -# stage2/rustc$(X) \ # stage3/rustc$(X) \ |