net/ipv4/arp.c: Use common hex_asc helpers
[linux-2.6] / net / mac80211 / Makefile
1 obj-$(CONFIG_MAC80211) += mac80211.o
2
3 # objects for PID algorithm
4 rc80211_pid-y := rc80211_pid_algo.o
5 rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
6
7 # build helper for PID algorithm
8 rc-pid-y := $(rc80211_pid-y)
9 rc-pid-m := rc80211_pid.o
10
11 # mac80211 objects
12 mac80211-y := \
13         main.o \
14         wext.o \
15         sta_info.o \
16         wep.o \
17         wpa.o \
18         mlme.o \
19         iface.o \
20         rate.o \
21         michael.o \
22         tkip.o \
23         aes_ccm.o \
24         cfg.o \
25         rx.o \
26         tx.o \
27         key.o \
28         util.o \
29         event.o
30
31 mac80211-$(CONFIG_MAC80211_LEDS) += led.o
32 mac80211-$(CONFIG_NET_SCHED) += wme.o
33 mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
34         debugfs.o \
35         debugfs_sta.o \
36         debugfs_netdev.o \
37         debugfs_key.o
38
39 mac80211-$(CONFIG_MAC80211_MESH) += \
40         mesh.o \
41         mesh_pathtbl.o \
42         mesh_plink.o \
43         mesh_hwmp.o
44
45
46 # Build rate control algorithm(s)
47 CFLAGS_rc80211_pid_algo.o += -DRC80211_PID_COMPILE
48 mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc-pid-$(CONFIG_MAC80211_RC_PID))
49
50 # Modular rate algorithms are assigned to mac80211-m - make separate modules
51 obj-m += $(mac80211-m)