From a9589b5e4142ee0f5581a3b625a3c25e11dbba6f Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 30 May 2005 20:47:25 +0000 Subject: [PATCH] make wireless-tools install headers and library into the staging dir SVN-Revision: 1114 --- openwrt/package/wireless-tools/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/openwrt/package/wireless-tools/Makefile b/openwrt/package/wireless-tools/Makefile index fe83163ccd..4d132b99dd 100644 --- a/openwrt/package/wireless-tools/Makefile +++ b/openwrt/package/wireless-tools/Makefile @@ -40,3 +40,16 @@ $(IPKG_WIRELESS_TOOLS): cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/iw{config,getid,list,priv,spy} $(IDIR_WIRELESS_TOOLS)/usr/sbin/ $(RSTRIP) $(IDIR_WIRELESS_TOOLS) $(IPKG_BUILD) $(IDIR_WIRELESS_TOOLS) $(PACKAGE_DIR) + +install-dev: + mkdir -p $(STAGING_DIR)/usr/{lib,include} + cp -a $(PKG_BUILD_DIR)/libiw.so* $(STAGING_DIR)/usr/lib/ + ln -sf libiw.so.28 $(STAGING_DIR)/usr/lib/libiw.so + cp -a $(PKG_BUILD_DIR)/{iwlib,wireless}.h $(STAGING_DIR)/usr/include/ + +uninstall-dev: + rm -f $(STAGING_DIR)/usr/lib/libiw.* + rm -f $(STAGING_DIR)/usr/include/{iwlib,wireless}.h + +compile: install-dev +clean: uninstall-dev