1mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) 2mkfile_dir := $(dir $(mkfile_path)) 3 4MD_PRE_OPTS:= 5MD_INC_LIST:= 6MD_SRC_LIST:= 7 8MD_PRE_OPTS +=-DLWIP_CONFIG_FILE=\"lwip/lwipopts.h\" 9MD_PRE_OPTS +=-D_PRE_WLAN_FEATURE_CSI 10MD_PRE_OPTS +=-DCONFIG_P2P_SUPPORT 11MD_PRE_OPTS +=-DCONFIG_WPS_SUPPORT 12MD_PRE_OPTS +=-DCONFIG_SET_MAC_SUPPORT 13MD_PRE_OPTS +=-DCONFIG_RST_SUPPORT 14MD_PRE_OPTS +=-DCONFIG_PLAT_DFR_SUPPORT 15MD_PRE_OPTS +=-D_PRE_WLAN_FEATURE_WOW_OFFLOAD 16MD_PRE_OPTS +=-D_PRE_WLAN_FEATURE_INTRF_MODE 17MD_PRE_OPTS +=-DCONFIG_OWE 18 19MD_INC_LIST +=include/native/osa 20MD_INC_LIST +=open_source/lwip/src/include 21MD_INC_LIST +=foundation/communication/wifi_service/service/include/native/wifi 22MD_INC_LIST +=foundation/communication/wifi_service/service 23MD_INC_LIST +=host/wifi/platform/main 24MD_INC_LIST +=host/wifi/platform/inc 25MD_INC_LIST +=utils/osal/include 26MD_INC_LIST +=host/wifi/platform/driver/mac_addr 27MD_INC_LIST +=utils/net/wireless/source/common/wifi_fe/fe_hal/rf/mpw 28MD_INC_LIST +=hi3873_rom/utils/net/wireless/source/inc/romable/hal/ws73/spec 29MD_INC_LIST +=include/native 30MD_INC_LIST +=utils/net/wireless/source/host/inc/liteOS 31MD_INC_LIST +=include/sle/middleware/services/wifi 32MD_INC_LIST +=include/sle 33# plat_tsensor 34MD_INC_LIST +=host/wifi/platform/driver/tsensor 35 36MD_SRC_LIST +=soc_wifi_service_api.c 37 38 39MD_INC_LIST_ABS=$(abspath $(addprefix $(mkfile_dir)/../../../../,$(MD_INC_LIST))) 40LMD_CFLGAS = $(MD_PRE_OPTS) $(addprefix -I,$(MD_INC_LIST_ABS)) 41LMD_SRC_LIST = $(abspath $(addprefix $(mkfile_dir)/,$(MD_SRC_LIST))) 42