Makefile 678 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Copyright (C) 2012 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=mtools
  9. PKG_VERSION:=4.0.17
  10. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  11. PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
  12. PKG_MD5SUM:=231741ac95802d03aa32f44edb768171
  13. PKG_CAT:=zcat
  14. include $(INCLUDE_DIR)/host-build.mk
  15. HOST_LDFLAGS += $(HOST_STATIC_LINKING)
  16. define Host/Compile
  17. $(MAKE) -C $(HOST_BUILD_DIR) mcopy
  18. endef
  19. define Host/Install
  20. $(INSTALL_BIN) $(HOST_BUILD_DIR)/mcopy $(STAGING_DIR_HOST)/bin/
  21. endef
  22. define Host/Clean
  23. rm -f $(STAGING_DIR_HOST)/bin/mcopy
  24. endef
  25. $(eval $(call HostBuild))