Makefile 717 字节
Newer Older
1
obj-$(CONFIG_MAC80211) += mac80211.o
2

3 4
# mac80211 objects
mac80211-y := \
J
Johannes Berg 已提交
5 6
	main.o \
	wext.o \
7 8 9
	sta_info.o \
	wep.o \
	wpa.o \
10
	scan.o \
11
	ht.o \
J
Johannes Berg 已提交
12 13 14
	mlme.o \
	iface.o \
	rate.o \
15 16 17
	michael.o \
	tkip.o \
	aes_ccm.o \
18
	cfg.o \
19
	rx.o \
20
	spectmgmt.o \
21
	tx.o \
22
	key.o \
J
Johannes Berg 已提交
23
	util.o \
24
	wme.o \
25 26
	event.o

J
Johannes Berg 已提交
27
mac80211-$(CONFIG_MAC80211_LEDS) += led.o
28 29 30 31 32 33
mac80211-$(CONFIG_MAC80211_DEBUGFS) += \
	debugfs.o \
	debugfs_sta.o \
	debugfs_netdev.o \
	debugfs_key.o

J
Johannes Berg 已提交
34 35 36 37 38 39
mac80211-$(CONFIG_MAC80211_MESH) += \
	mesh.o \
	mesh_pathtbl.o \
	mesh_plink.o \
	mesh_hwmp.o

40 41 42
# objects for PID algorithm
rc80211_pid-y := rc80211_pid_algo.o
rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
43

44
mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc80211_pid-y)