Makefile 475 B

12345678910111213141516171819202122232425
  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=ld.mold
  7. include $(INCLUDE_DIR)/toolchain-build.mk
  8. define Host/Configure
  9. endef
  10. define Host/Compile
  11. endef
  12. define Host/Install
  13. $(INSTALL_DIR) $(TOOLCHAIN_DIR)/bin
  14. $(INSTALL_BIN) $(STAGING_DIR_HOST)/bin/mold $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-ld.mold
  15. endef
  16. define Host/Clean
  17. endef
  18. $(eval $(call HostBuild))