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

mac80211-objs-$(CONFIG_MAC80211_LEDS) += ieee80211_led.o
4
mac80211-objs-$(CONFIG_NET_SCHED) += wme.o
5
mac80211-objs-$(CONFIG_MAC80211_RC_SIMPLE) += rc80211_simple.o
M
Mattias Nissler 已提交
6 7 8 9 10 11 12 13 14
mac80211-objs-$(CONFIG_MAC80211_RC_PID) += rc80211_pid_algo.o

mac80211-debugfs-objs-$(CONFIG_MAC80211_RC_PID) += rc80211_pid_debugfs.o
mac80211-objs-$(CONFIG_MAC80211_DEBUGFS) += \
	debugfs.o \
	debugfs_sta.o \
	debugfs_netdev.o \
	debugfs_key.o \
	$(mac80211-debugfs-objs-y)
15 16 17 18 19 20 21 22 23 24 25

mac80211-objs := \
	ieee80211.o \
	ieee80211_ioctl.o \
	sta_info.o \
	wep.o \
	wpa.o \
	ieee80211_sta.o \
	ieee80211_iface.o \
	ieee80211_rate.o \
	michael.o \
26
	regdomain.o \
27 28
	tkip.o \
	aes_ccm.o \
29
	cfg.o \
30
	rx.o \
31
	tx.o \
32
	key.o \
J
Johannes Berg 已提交
33
	util.o \
J
Johannes Berg 已提交
34
	event.o \
35
	$(mac80211-objs-y)