Makefile 702 字节
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
	tx.o \
21
	key.o \
J
Johannes Berg 已提交
22
	util.o \
23
	wme.o \
24 25
	event.o

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

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

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

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