mirror of
https://github.com/Ai-Thinker-Open/Ai-Thinker-Open_RTL8710BX_ALIOS_SDK.git
synced 2025-02-06 04:15:24 +00:00
22 lines
459 B
Makefile
Executable file
22 lines
459 B
Makefile
Executable file
NAME := netmgr
|
|
|
|
$(NAME)_TYPE := framework
|
|
ifneq (,$(ssid))
|
|
$(NAME)_DEFINES += WIFI_SSID=\"$(ssid)\"
|
|
$(NAME)_DEFINES += WIFI_PWD=\"$(pwd)\"
|
|
endif
|
|
|
|
$(NAME)_SOURCES := netmgr.c
|
|
|
|
#default gcc
|
|
ifeq ($(COMPILER),)
|
|
$(NAME)_CFLAGS += -Wall -Werror
|
|
else ifeq ($(COMPILER),gcc)
|
|
$(NAME)_CFLAGS += -Wall -Werror
|
|
endif
|
|
|
|
$(NAME)_COMPONENTS += modules.fs.kv yloop kernel.hal
|
|
|
|
GLOBAL_INCLUDES += include ../protocol/alink/os/platform/
|
|
|
|
GLOBAL_DEFINES += AOS_NETMGR
|