diff options
Diffstat (limited to 'net/mac80211/Makefile')
-rw-r--r-- | net/mac80211/Makefile | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/net/mac80211/Makefile b/net/mac80211/Makefile index 54f46bc80cfe..4e5847fd316c 100644 --- a/net/mac80211/Makefile +++ b/net/mac80211/Makefile | |||
@@ -10,16 +10,15 @@ rc-pid-m := rc80211_pid.o | |||
10 | 10 | ||
11 | # mac80211 objects | 11 | # mac80211 objects |
12 | mac80211-y := \ | 12 | mac80211-y := \ |
13 | ieee80211.o \ | 13 | main.o \ |
14 | ieee80211_ioctl.o \ | 14 | wext.o \ |
15 | sta_info.o \ | 15 | sta_info.o \ |
16 | wep.o \ | 16 | wep.o \ |
17 | wpa.o \ | 17 | wpa.o \ |
18 | ieee80211_sta.o \ | 18 | mlme.o \ |
19 | ieee80211_iface.o \ | 19 | iface.o \ |
20 | ieee80211_rate.o \ | 20 | rate.o \ |
21 | michael.o \ | 21 | michael.o \ |
22 | regdomain.o \ | ||
23 | tkip.o \ | 22 | tkip.o \ |
24 | aes_ccm.o \ | 23 | aes_ccm.o \ |
25 | cfg.o \ | 24 | cfg.o \ |
@@ -29,7 +28,7 @@ mac80211-y := \ | |||
29 | util.o \ | 28 | util.o \ |
30 | event.o | 29 | event.o |
31 | 30 | ||
32 | mac80211-$(CONFIG_MAC80211_LEDS) += ieee80211_led.o | 31 | mac80211-$(CONFIG_MAC80211_LEDS) += led.o |
33 | mac80211-$(CONFIG_NET_SCHED) += wme.o | 32 | mac80211-$(CONFIG_NET_SCHED) += wme.o |
34 | mac80211-$(CONFIG_MAC80211_DEBUGFS) += \ | 33 | mac80211-$(CONFIG_MAC80211_DEBUGFS) += \ |
35 | debugfs.o \ | 34 | debugfs.o \ |
@@ -37,11 +36,15 @@ mac80211-$(CONFIG_MAC80211_DEBUGFS) += \ | |||
37 | debugfs_netdev.o \ | 36 | debugfs_netdev.o \ |
38 | debugfs_key.o | 37 | debugfs_key.o |
39 | 38 | ||
39 | mac80211-$(CONFIG_MAC80211_MESH) += \ | ||
40 | mesh.o \ | ||
41 | mesh_pathtbl.o \ | ||
42 | mesh_plink.o \ | ||
43 | mesh_hwmp.o | ||
44 | |||
40 | 45 | ||
41 | # Build rate control algorithm(s) | 46 | # Build rate control algorithm(s) |
42 | CFLAGS_rc80211_simple.o += -DRC80211_SIMPLE_COMPILE | ||
43 | CFLAGS_rc80211_pid_algo.o += -DRC80211_PID_COMPILE | 47 | CFLAGS_rc80211_pid_algo.o += -DRC80211_PID_COMPILE |
44 | mac80211-$(CONFIG_MAC80211_RC_SIMPLE) += rc80211_simple.o | ||
45 | mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc-pid-$(CONFIG_MAC80211_RC_PID)) | 48 | mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc-pid-$(CONFIG_MAC80211_RC_PID)) |
46 | 49 | ||
47 | # Modular rate algorithms are assigned to mac80211-m - make separate modules | 50 | # Modular rate algorithms are assigned to mac80211-m - make separate modules |