Makefile 563 字节
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 11
		regd.o		\
		stats.o
L
Larry Finger 已提交
12

13 14
rtl8192c_common-objs +=		\

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

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

23
obj-$(CONFIG_RTL8192C_COMMON)	+= rtl8192c/
L
Larry Finger 已提交
24
obj-$(CONFIG_RTL8192CE)		+= rtl8192ce/
25
obj-$(CONFIG_RTL8192CU)		+= rtl8192cu/
26
obj-$(CONFIG_RTL8192SE)		+= rtl8192se/
27
obj-$(CONFIG_RTL8192DE)		+= rtl8192de/
28
obj-$(CONFIG_RTL8723AE)		+= rtl8723ae/
29 30

ccflags-y += -D__CHECK_ENDIAN__