Makefile 578 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
obj-$(CONFIG_ATH10K) += ath10k_core.o
ath10k_core-y += mac.o \
		 debug.o \
		 core.o \
		 htc.o \
		 htt.o \
		 htt_rx.o \
		 htt_tx.o \
		 txrx.o \
		 wmi.o \
M
Michal Kazior 已提交
11
		 wmi-tlv.o \
12 13
		 bmi.o

14
ath10k_core-$(CONFIG_ATH10K_DEBUGFS) += spectral.o
K
Kalle Valo 已提交
15
ath10k_core-$(CONFIG_NL80211_TESTMODE) += testmode.o
16
ath10k_core-$(CONFIG_ATH10K_TRACING) += trace.o
17
ath10k_core-$(CONFIG_THERMAL) += thermal.o
18
ath10k_core-$(CONFIG_MAC80211_DEBUGFS) += debugfs_sta.o
19 20 21 22 23 24 25

obj-$(CONFIG_ATH10K_PCI) += ath10k_pci.o
ath10k_pci-y += pci.o \
		ce.o

# for tracing framework to find trace.h
CFLAGS_trace.o := -I$(src)