diff options
| author | Graydon Hoare <[email protected]> | 2011-05-12 12:56:15 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-12 13:08:57 -0700 |
| commit | 1fdddede227031b4ea1df98da7eb3e2fcc8c7d87 (patch) | |
| tree | c00f88cee7bc1424ad5e9245a9a1e93a8cabe0f0 /mk/snap.mk | |
| parent | Register new snapshots for incompatible-syntax transition. (diff) | |
| download | rust-1fdddede227031b4ea1df98da7eb3e2fcc8c7d87.tar.xz rust-1fdddede227031b4ea1df98da7eb3e2fcc8c7d87.zip | |
Add snap-stageN targets.
Diffstat (limited to 'mk/snap.mk')
| -rw-r--r-- | mk/snap.mk | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ -snap: - $(CFG_SRC_DIR)src/etc/make-snapshot.py
\ No newline at end of file +snap-stage1: stage1/rustc stage1/glue.o stage1/$(CFG_STDLIB) + $(CFG_SRC_DIR)src/etc/make-snapshot.py stage1 + +snap-stage2: stage2/rustc stage2/glue.o stage2/$(CFG_STDLIB) + $(CFG_SRC_DIR)src/etc/make-snapshot.py stage2 + +snap-stage3: stage3/rustc stage3/glue.o stage3/$(CFG_STDLIB) + $(CFG_SRC_DIR)src/etc/make-snapshot.py stage3 + |