1obj-$(CONFIG_MAC80211) += mac80211.o 2 3# mac80211 objects 4mac80211-y := \ 5 main.o status.o \ 6 sta_info.o \ 7 wep.o \ 8 wpa.o \ 9 scan.o offchannel.o \ 10 ht.o agg-tx.o agg-rx.o \ 11 ibss.o \ 12 iface.o \ 13 rate.o \ 14 michael.o \ 15 tkip.o \ 16 aes_ccm.o \ 17 aes_cmac.o \ 18 cfg.o \ 19 rx.o \ 20 spectmgmt.o \ 21 tx.o \ 22 key.o \ 23 util.o \ 24 wme.o \ 25 event.o \ 26 chan.o \ 27 trace.o mlme.o 28 29mac80211-$(CONFIG_MAC80211_LEDS) += led.o 30mac80211-$(CONFIG_MAC80211_DEBUGFS) += \ 31 debugfs.o \ 32 debugfs_sta.o \ 33 debugfs_netdev.o \ 34 debugfs_key.o 35 36mac80211-$(CONFIG_MAC80211_MESH) += \ 37 mesh.o \ 38 mesh_pathtbl.o \ 39 mesh_plink.o \ 40 mesh_hwmp.o \ 41 mesh_sync.o 42 43mac80211-$(CONFIG_PM) += pm.o 44 45CFLAGS_trace.o := -I$(src) 46 47# objects for PID algorithm 48rc80211_pid-y := rc80211_pid_algo.o 49rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o 50 51rc80211_minstrel-y := rc80211_minstrel.o 52rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o 53 54rc80211_minstrel_ht-y := rc80211_minstrel_ht.o 55rc80211_minstrel_ht-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_ht_debugfs.o 56 57mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc80211_pid-y) 58mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y) 59mac80211-$(CONFIG_MAC80211_RC_MINSTREL_HT) += $(rc80211_minstrel_ht-y) 60 61ccflags-y += -D__CHECK_ENDIAN__ -DDEBUG 62