mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-22 04:23:39 +00:00
rtl8188eu: Flatten core
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
2e52830997
commit
81aeb84017
30 changed files with 32 additions and 32 deletions
64
Makefile
64
Makefile
|
@ -417,49 +417,49 @@ endif
|
|||
|
||||
ifneq ($(KERNELRELEASE),)
|
||||
|
||||
rtk_core := core/rtw_cmd.o \
|
||||
core/rtw_security.o \
|
||||
core/rtw_debug.o \
|
||||
core/rtw_io.o \
|
||||
core/rtw_ioctl_query.o \
|
||||
core/rtw_ioctl_set.o \
|
||||
core/rtw_ieee80211.o \
|
||||
core/rtw_mlme.o \
|
||||
core/rtw_mlme_ext.o \
|
||||
core/rtw_mi.o \
|
||||
core/rtw_wlan_util.o \
|
||||
core/rtw_pwrctrl.o \
|
||||
core/rtw_rf.o \
|
||||
core/rtw_recv.o \
|
||||
core/rtw_sta_mgt.o \
|
||||
core/rtw_ap.o \
|
||||
core/rtw_xmit.o \
|
||||
core/rtw_p2p.o \
|
||||
core/rtw_tdls.o \
|
||||
core/rtw_br_ext.o \
|
||||
core/rtw_iol.o \
|
||||
core/rtw_sreset.o \
|
||||
core/rtw_btcoex_wifionly.o \
|
||||
core/rtw_btcoex.o \
|
||||
core/rtw_beamforming.o \
|
||||
core/rtw_odm.o \
|
||||
core/rtw_efuse.o
|
||||
rtk_core := rtw_cmd.o \
|
||||
rtw_security.o \
|
||||
rtw_debug.o \
|
||||
rtw_io.o \
|
||||
rtw_ioctl_query.o \
|
||||
rtw_ioctl_set.o \
|
||||
rtw_ieee80211.o \
|
||||
rtw_mlme.o \
|
||||
rtw_mlme_ext.o \
|
||||
rtw_mi.o \
|
||||
rtw_wlan_util.o \
|
||||
rtw_pwrctrl.o \
|
||||
rtw_rf.o \
|
||||
rtw_recv.o \
|
||||
rtw_sta_mgt.o \
|
||||
rtw_ap.o \
|
||||
rtw_xmit.o \
|
||||
rtw_p2p.o \
|
||||
rtw_tdls.o \
|
||||
rtw_br_ext.o \
|
||||
rtw_iol.o \
|
||||
rtw_sreset.o \
|
||||
rtw_btcoex_wifionly.o \
|
||||
rtw_btcoex.o \
|
||||
rtw_beamforming.o \
|
||||
rtw_odm.o \
|
||||
rtw_efuse.o
|
||||
|
||||
8188eu-y += $(rtk_core)
|
||||
|
||||
8188eu-$(CONFIG_INTEL_WIDI) += core/rtw_intel_widi.o
|
||||
8188eu-$(CONFIG_INTEL_WIDI) += rtw_intel_widi.o
|
||||
|
||||
8188eu-$(CONFIG_WAPI_SUPPORT) += core/rtw_wapi.o \
|
||||
core/rtw_wapi_sms4.o
|
||||
8188eu-$(CONFIG_WAPI_SUPPORT) += rtw_wapi.o \
|
||||
rtw_wapi_sms4.o
|
||||
|
||||
8188eu-y += $(_OS_INTFS_FILES)
|
||||
8188eu-y += $(_HAL_INTFS_FILES)
|
||||
8188eu-y += $(_OUTSRC_FILES)
|
||||
|
||||
8188eu-$(CONFIG_MP_INCLUDED) += core/rtw_mp.o
|
||||
8188eu-$(CONFIG_MP_INCLUDED) += rtw_mp.o
|
||||
|
||||
ifeq ($(CONFIG_RTL8723B), y)
|
||||
8188eu-$(CONFIG_MP_INCLUDED)+= core/rtw_bt_mp.o
|
||||
8188eu-$(CONFIG_MP_INCLUDED)+= rtw_bt_mp.o
|
||||
endif
|
||||
|
||||
obj-m := 8188eu.o
|
||||
|
|
Loading…
Reference in a new issue