Makefile 554 字节
Newer Older
T
Tomas Winkler 已提交
1
obj-$(CONFIG_IWLCORE)	+= iwlcore.o
2
iwlcore-objs 		= iwl-core.o iwl-eeprom.o iwl-hcmd.o
T
Tomas Winkler 已提交
3

T
Tomas Winkler 已提交
4 5 6 7
ifeq ($(CONFIG_IWLWIFI_DEBUGFS),y)
	iwlcore-objs += iwl-debugfs.o
endif

M
Mohamed Abbas 已提交
8 9 10 11
ifeq ($(CONFIG_IWLWIFI_LEDS),y)
	iwlcore-objs += iwl-led.o
endif

12 13 14 15
ifeq ($(CONFIG_IWLCORE_RFKILL),y)
	iwlcore-objs += iwl-rfkill.o
endif

Z
Zhu Yi 已提交
16 17 18
obj-$(CONFIG_IWL3945)	+= iwl3945.o
iwl3945-objs		= iwl3945-base.o iwl-3945.o iwl-3945-rs.o

M
Mohamed Abbas 已提交
19 20 21 22 23
ifeq ($(CONFIG_IWL3945_LEDS),y)
	iwl3945-objs += iwl-3945-led.o
endif


Z
Zhu Yi 已提交
24 25
obj-$(CONFIG_IWL4965)	+= iwl4965.o
iwl4965-objs		= iwl4965-base.o iwl-4965.o iwl-4965-rs.o
M
Mohamed Abbas 已提交
26