make wireless-tools install headers and library into the staging dir
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 30 May 2005 20:47:25 +0000 (20:47 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 30 May 2005 20:47:25 +0000 (20:47 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1114 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/wireless-tools/Makefile

index fe83163..4d132b9 100644 (file)
@@ -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
This page took 0.028525 seconds and 4 git commands to generate.