Makefile 472 字节
Newer Older
L
Larry Finger 已提交
1 2 3 4 5 6 7 8 9
obj-$(CONFIG_RTLWIFI) 		+= rtlwifi.o
rtlwifi-objs	:=		\
		base.o		\
		cam.o		\
		core.o		\
		debug.o		\
		efuse.o		\
		ps.o		\
		rc.o		\
10
		regd.o
L
Larry Finger 已提交
11

12 13
rtl8192c_common-objs +=		\

14
ifneq ($(CONFIG_PCI),)
15 16 17
rtlwifi-objs	+= pci.o
endif

18 19 20 21
ifneq ($(CONFIG_USB),)
rtlwifi-objs	+= usb.o
endif

22
obj-$(CONFIG_RTL8192C_COMMON)	+= rtl8192c/
L
Larry Finger 已提交
23
obj-$(CONFIG_RTL8192CE)		+= rtl8192ce/
24
obj-$(CONFIG_RTL8192CU)		+= rtl8192cu/
25
obj-$(CONFIG_RTL8192SE)		+= rtl8192se/
26 27

ccflags-y += -D__CHECK_ENDIAN__