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 vht.o \ 12 ibss.o \ 13 iface.o \ 14 rate.o \ 15 michael.o \ 16 tkip.o \ 17 aes_ccm.o \ 18 aes_gcm.o \ 19 aes_cmac.o \ 20 cfg.o \ 21 ethtool.o \ 22 rx.o \ 23 spectmgmt.o \ 24 tx.o \ 25 key.o \ 26 util.o \ 27 wme.o \ 28 event.o \ 29 chan.o \ 30 trace.o mlme.o \ 31 tdls.o \ 32 ocb.o 33 34mac80211-$(CONFIG_MAC80211_LEDS) += led.o 35mac80211-$(CONFIG_MAC80211_DEBUGFS) += \ 36 debugfs.o \ 37 debugfs_sta.o \ 38 debugfs_netdev.o \ 39 debugfs_key.o 40 41mac80211-$(CONFIG_MAC80211_MESH) += \ 42 mesh.o \ 43 mesh_pathtbl.o \ 44 mesh_plink.o \ 45 mesh_hwmp.o \ 46 mesh_sync.o \ 47 mesh_ps.o 48 49mac80211-$(CONFIG_PM) += pm.o 50 51CFLAGS_trace.o := -I$(src) 52 53rc80211_minstrel-y := rc80211_minstrel.o 54rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o 55 56rc80211_minstrel_ht-y := rc80211_minstrel_ht.o 57rc80211_minstrel_ht-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_ht_debugfs.o 58 59mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y) 60mac80211-$(CONFIG_MAC80211_RC_MINSTREL_HT) += $(rc80211_minstrel_ht-y) 61 62ccflags-y += -D__CHECK_ENDIAN__ -DDEBUG 63