diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /tools/mklibs/Makefile | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'tools/mklibs/Makefile')
-rw-r--r-- | tools/mklibs/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/mklibs/Makefile b/tools/mklibs/Makefile new file mode 100644 index 0000000..fa0bce7 --- /dev/null +++ b/tools/mklibs/Makefile @@ -0,0 +1,35 @@ +# +# Copyright (C) 2009-2013 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.35 + +PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://ftp.de.debian.org/debian/pool/main/m/mklibs/ +PKG_MD5SUM:=3d2a4bd0bbf5ba964b0a1ecdafd1ea9a + +HOST_FIXUP:=autoreconf + +include $(INCLUDE_DIR)/host-build.mk + +HOST_CFLAGS += -I$(CURDIR)/include +HOST_LDFLAGS += $(HOST_STATIC_LINKING) + +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)) |