add support for hidden packages that get selected/built but do not show up in menuconfig
[openwrt/staging/chunkeey.git] / tools / mkelfimage / Makefile
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
9 PKG_NAME:=mkelfimage
10 PKG_VERSION:=2.7
11
12 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
13 PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/m/mkelfimage/
14 PKG_MD5SUM:=e505cb87e9c0cdc44cf03d2c4ea8c74b
15
16 include $(INCLUDE_DIR)/host-build.mk
17
18 define Host/Install
19 $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
20 $(INSTALL_BIN) $(HOST_BUILD_DIR)/objdir/sbin/mkelfImage $(STAGING_DIR_HOST)/bin
21 endef
22
23 $(eval $(call HostBuild))