mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 17:53:09 +02:00
3060881070
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32165 3c298f89-4303-0410-b956-a3cf2f4a3e73
33 lines
809 B
Makefile
33 lines
809 B
Makefile
#
|
|
# Copyright (C) 2009-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mklibs
|
|
PKG_VERSION:=0.1.34
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://ftp.de.debian.org/debian/pool/main/m/mklibs/
|
|
PKG_MD5SUM:=afe0ed527ba96b8a882b5de350603007
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
HOST_CFLAGS += -I$(CURDIR)/include
|
|
|
|
define Host/Install
|
|
$(INSTALL_BIN) \
|
|
$(HOST_BUILD_DIR)/src/mklibs \
|
|
$(HOST_BUILD_DIR)/src/mklibs-copy \
|
|
$(HOST_BUILD_DIR)/src/mklibs-readelf/mklibs-readelf \
|
|
$(STAGING_DIR_HOST)/bin/
|
|
endef
|
|
|
|
define Host/Clean
|
|
rm -f $(STAGING_DIR_HOST)/bin/mklibs*
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|