diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-30 20:47:25 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-30 20:47:25 +0000 |
commit | d3fd3b7dd1563a1623e80ef6d2fd28156323dc04 (patch) | |
tree | b6ee5a26a5f3ebed5066b80e86f635dc3888864a /openwrt | |
parent | 2678033947fbba158fcfa9bdfa33d27a0edd59b6 (diff) |
make wireless-tools install headers and library into the staging dir
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1114 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt')
-rw-r--r-- | openwrt/package/wireless-tools/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/openwrt/package/wireless-tools/Makefile b/openwrt/package/wireless-tools/Makefile index fe83163cc..4d132b99d 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 |