/mk/snap.mk

http://github.com/jruderman/rust · Makefile · 23 lines · 15 code · 6 blank · 2 comment · 0 complexity · 6ffb6d095adae41b0982fc17e5b29fc2 MD5 · raw file

  1. define DEF_SNAP_FOR_STAGE_H
  2. # $(1) stage
  3. # $(2) triple
  4. ifdef CFG_INSTALL_SNAP
  5. snap-stage$(1)-H-$(2): $$(HSREQ$(1)_H_$(2))
  6. $(S)src/etc/make-snapshot.py stage$(1) $(2) install
  7. else
  8. snap-stage$(1)-H-$(2): $$(HSREQ$(1)_H_$(2))
  9. $(S)src/etc/make-snapshot.py stage$(1) $(2)
  10. endif
  11. endef
  12. $(foreach host,$(CFG_TARGET_TRIPLES), \
  13. $(eval $(foreach stage,1 2 3, \
  14. $(eval $(call DEF_SNAP_FOR_STAGE_H,$(stage),$(host))))))
  15. snap-stage1: snap-stage1-H-$(CFG_HOST_TRIPLE)
  16. snap-stage2: snap-stage2-H-$(CFG_HOST_TRIPLE)
  17. snap-stage3: snap-stage3-H-$(CFG_HOST_TRIPLE)