rust/mk/stage0.mk

23 lines
606 B
Makefile
Raw Normal View History

# Extract the snapshot host compiler
2011-11-21 22:11:40 +01:00
$(HBIN0_H_$(CFG_HOST_TRIPLE))/rustc$(X): \
$(S)src/snapshots.txt \
$(S)src/etc/get-snapshot.py $(MKFILES)
@$(call E, fetch: $@)
2011-11-21 22:11:40 +01:00
$(Q)$(S)src/etc/get-snapshot.py $(CFG_HOST_TRIPLE)
$(Q)touch $@
2011-05-01 22:18:52 +02:00
# Host libs will be extracted by the above rule
2011-11-21 22:11:40 +01:00
$(HLIB0_H_$(CFG_HOST_TRIPLE))/$(CFG_RUNTIME): \
$(HBIN0_H_$(CFG_HOST_TRIPLE))/rustc$(X)
$(Q)touch $@
2011-05-05 03:28:30 +02:00
2011-11-21 22:11:40 +01:00
$(HLIB0_H_$(CFG_HOST_TRIPLE))/$(CFG_STDLIB): \
$(HBIN0_H_$(CFG_HOST_TRIPLE))/rustc$(X)
$(Q)touch $@
2011-11-21 22:11:40 +01:00
$(HLIB0_H_$(CFG_HOST_TRIPLE))/$(CFG_RUSTLLVM): \
$(HBIN0_H_$(CFG_HOST_TRIPLE))/rustc$(X)
$(Q)touch $@