]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/mac80211/Makefile
mac80211: mesh hwmp locking fixes
[mirror_ubuntu-bionic-kernel.git] / net / mac80211 / Makefile
CommitLineData
ac71c691 1obj-$(CONFIG_MAC80211) += mac80211.o
f0706e82 2
4b475898
JB
3# objects for PID algorithm
4rc80211_pid-y := rc80211_pid_algo.o
5rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
12446c67 6
4b475898
JB
7# build helper for PID algorithm
8rc-pid-y := $(rc80211_pid-y)
9rc-pid-m := rc80211_pid.o
f0706e82 10
4b475898
JB
11# mac80211 objects
12mac80211-y := \
f0706e82
JB
13 ieee80211.o \
14 ieee80211_ioctl.o \
15 sta_info.o \
16 wep.o \
17 wpa.o \
18 ieee80211_sta.o \
19 ieee80211_iface.o \
20 ieee80211_rate.o \
21 michael.o \
22 tkip.o \
23 aes_ccm.o \
fa5fea71 24 cfg.o \
571ecf67 25 rx.o \
e2ebc74d 26 tx.o \
1f5a7e47 27 key.o \
c2d1560a 28 util.o \
4b475898
JB
29 event.o
30
31mac80211-$(CONFIG_MAC80211_LEDS) += ieee80211_led.o
32mac80211-$(CONFIG_NET_SCHED) += wme.o
33mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
34 debugfs.o \
35 debugfs_sta.o \
36 debugfs_netdev.o \
37 debugfs_key.o
38
39
40# Build rate control algorithm(s)
41CFLAGS_rc80211_simple.o += -DRC80211_SIMPLE_COMPILE
42CFLAGS_rc80211_pid_algo.o += -DRC80211_PID_COMPILE
43mac80211-$(CONFIG_MAC80211_RC_SIMPLE) += rc80211_simple.o
44mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc-pid-$(CONFIG_MAC80211_RC_PID))
45
46# Modular rate algorithms are assigned to mac80211-m - make separate modules
47obj-m += $(mac80211-m)