Makefile 976 字节
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
	aes_cmac.o \
19
	cfg.o \
20
	rx.o \
21
	spectmgmt.o \
22
	tx.o \
23
	key.o \
J
Johannes Berg 已提交
24
	util.o \
25
	wme.o \
26 27
	event.o

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

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

41 42
mac80211-$(CONFIG_PM) += pm.o

43 44 45
# objects for PID algorithm
rc80211_pid-y := rc80211_pid_algo.o
rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
46

47 48 49
rc80211_minstrel-y := rc80211_minstrel.o
rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o

50
mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc80211_pid-y)
51
mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
52 53

ccflags-y += -D__CHECK_ENDIAN__