0e3ab88bb7063adac42e90c69d5985c86656ff1a
[pandora-kernel.git] / net / mac80211 / Makefile
1 obj-$(CONFIG_MAC80211) += mac80211.o
2
3 # mac80211 objects
4 mac80211-y := \
5         main.o \
6         wext.o \
7         sta_info.o \
8         wep.o \
9         wpa.o \
10         scan.o \
11         ht.o agg-tx.o agg-rx.o \
12         ibss.o \
13         mlme.o \
14         iface.o \
15         rate.o \
16         michael.o \
17         tkip.o \
18         aes_ccm.o \
19         aes_cmac.o \
20         cfg.o \
21         rx.o \
22         spectmgmt.o \
23         tx.o \
24         key.o \
25         util.o \
26         wme.o \
27         event.o
28
29 mac80211-$(CONFIG_MAC80211_LEDS) += led.o
30 mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
31         debugfs.o \
32         debugfs_sta.o \
33         debugfs_netdev.o \
34         debugfs_key.o
35
36 mac80211-$(CONFIG_MAC80211_MESH) += \
37         mesh.o \
38         mesh_pathtbl.o \
39         mesh_plink.o \
40         mesh_hwmp.o
41
42 mac80211-$(CONFIG_PM) += pm.o
43
44 # objects for PID algorithm
45 rc80211_pid-y := rc80211_pid_algo.o
46 rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
47
48 rc80211_minstrel-y := rc80211_minstrel.o
49 rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o
50
51 mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc80211_pid-y)
52 mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
53
54 ccflags-y += -D__CHECK_ENDIAN__