[backfire] cleanup: remove refs to unsupported "etrax" target
[openwrt-10.03/.git] / package / iw / Makefile
1 #
2 # Copyright (C) 2007-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=iw
11 PKG_VERSION:=0.9.22
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://wireless.kernel.org/download/iw/
16 PKG_MD5SUM:=561c2602c5ce7c65a590118286c0892a
17 PKG_BUILD_DEPENDS:=mac80211
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/iw
22   SECTION:=net
23   CATEGORY:=Network
24   TITLE:=cfg80211 interface configuration utility
25   URL:=http://wireless.kernel.org/en/users/Documentation/iw
26   DEPENDS:= +libnl-tiny @(!(TARGET_avr32)||BROKEN)
27 endef
28
29 define Build/Configure
30         echo "const char iw_version[] = \"$(PKG_VERSION)\";" > $(PKG_BUILD_DIR)/version.c
31         rm -f $(PKG_BUILD_DIR)/version.sh
32         touch $(PKG_BUILD_DIR)/version.sh
33         chmod +x $(PKG_BUILD_DIR)/version.sh
34 endef
35
36 TARGET_CPPFLAGS:= \
37         -I$(STAGING_DIR)/usr/include/libnl-tiny \
38         -I$(STAGING_DIR)/usr/include/mac80211 \
39         $(TARGET_CPPFLAGS) \
40         -DCONFIG_LIBNL20 \
41         -D_GNU_SOURCE
42
43 MAKE_FLAGS += \
44         CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
45         LDFLAGS="$(TARGET_LDFLAGS)" \
46         NL1FOUND="" NL2FOUND=Y \
47         NLLIBNAME="libnl-tiny" \
48         LIBS="-lm -lnl-tiny" \
49         V=1
50
51 define Package/iw/install
52         $(INSTALL_DIR) $(1)/usr/sbin
53         $(INSTALL_BIN) $(PKG_BUILD_DIR)/iw $(1)/usr/sbin/
54 endef
55
56 $(eval $(call BuildPackage,iw))