2011-07-21 23:11:35 +00:00
|
|
|
# FIXME: temporary hack: stdlib and rustrt come in the lib/ directory,
|
|
|
|
# but we want them in the base directory, so we move them out.
|
2011-07-07 23:40:58 +00:00
|
|
|
stage0/rustc$(X): $(S)src/snapshots.txt $(S)src/etc/get-snapshot.py $(MKFILES)
|
2011-05-03 18:34:44 +00:00
|
|
|
@$(call E, fetch: $@)
|
2011-05-03 22:51:21 +00:00
|
|
|
$(Q)$(S)src/etc/get-snapshot.py
|
2011-07-20 23:32:53 +00:00
|
|
|
$(Q)mv stage0/lib/$(CFG_STDLIB) stage0/$(CFG_STDLIB)
|
2011-05-03 22:51:21 +00:00
|
|
|
$(Q)touch $@
|
2011-05-01 20:18:52 +00:00
|
|
|
|
2011-07-15 23:12:41 +00:00
|
|
|
# Host libs will be made in the process of making rustc above.
|
2011-05-03 18:34:44 +00:00
|
|
|
|
2011-07-21 23:11:35 +00:00
|
|
|
stage0/$(CFG_RUNTIME): stage0/rustc$(X)
|
|
|
|
$(Q)touch $@
|
2011-05-05 01:28:30 +00:00
|
|
|
|
2011-07-20 23:32:53 +00:00
|
|
|
stage0/$(CFG_STDLIB): stage0/rustc$(X)
|
|
|
|
$(Q)touch $@
|
2011-07-11 20:31:47 +00:00
|
|
|
|
2011-07-11 22:33:17 +00:00
|
|
|
stage0/$(CFG_RUSTLLVM): stage0/rustc$(X)
|
2011-07-11 20:31:47 +00:00
|
|
|
$(Q)touch $@
|
|
|
|
|
2011-07-15 23:12:41 +00:00
|
|
|
# Target libs will be made in the process of making rustc above.
|
|
|
|
|
|
|
|
stage0/lib/glue.o: stage0/rustc$(X)
|
|
|
|
$(Q)touch $@
|
|
|
|
|
|
|
|
# FIXME: temporary hack: currently not distributing main.o like we should;
|
|
|
|
# copying from rt
|
|
|
|
|
|
|
|
stage0/lib/main.o: rt/main.o
|
|
|
|
$(Q)cp $< $@
|
|
|
|
|
2011-07-21 18:58:01 +00:00
|
|
|
# Instantiate template (in stageN.mk) for building
|
|
|
|
# stage0/lib/$(CFG_STDLIB) and stage0/lib/libstd.rlib.
|
|
|
|
SREQpre = stage0/lib/main.o $(MKFILES)
|
2011-07-21 23:11:35 +00:00
|
|
|
$(eval $(call LIBGEN,pre,0))
|
2011-07-20 20:02:36 +00:00
|
|
|
|