Makefile 638 B

12345678910111213141516171819202122232425262728293031
  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. define Host/Compile
  16. $(MAKE) -C $(HOST_BUILD_DIR) mcopy
  17. endef
  18. define Host/Install
  19. $(INSTALL_BIN) $(HOST_BUILD_DIR)/mcopy $(STAGING_DIR_HOST)/bin/
  20. endef
  21. define Host/Clean
  22. rm -f $(STAGING_DIR_HOST)/bin/mcopy
  23. endef
  24. $(eval $(call HostBuild))