Makefile 597 B

1234567891011121314151617181920212223
  1. #
  2. # Copyright (C) 2006 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:=mkelfimage
  9. PKG_VERSION:=2.7
  10. PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
  11. PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/m/mkelfimage/
  12. PKG_MD5SUM:=e505cb87e9c0cdc44cf03d2c4ea8c74b
  13. include $(INCLUDE_DIR)/host-build.mk
  14. define Host/Install
  15. $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
  16. $(INSTALL_BIN) $(HOST_BUILD_DIR)/objdir/sbin/mkelfImage $(STAGING_DIR_HOST)/bin
  17. endef
  18. $(eval $(call HostBuild))