mirror of
https://github.com/Ai-Thinker-Open/Ai-Thinker-Open_RTL8710BX_ALIOS_SDK.git
synced 2025-02-05 11:55:22 +00:00
15 lines
378 B
Makefile
15 lines
378 B
Makefile
NAME := uffs
|
|
|
|
$(NAME)_TYPE := kernel
|
|
|
|
$(NAME)_SOURCES += uffs_aos.c uffs_port.c
|
|
|
|
#default gcc
|
|
ifeq ($(COMPILER),)
|
|
$(NAME)_CFLAGS += -Wall -Werror -Wno-strict-aliasing -Wno-uninitialized
|
|
else ifeq ($(COMPILER),gcc)
|
|
$(NAME)_CFLAGS += -Wall -Werror -Wno-strict-aliasing -Wno-uninitialized
|
|
endif
|
|
|
|
GLOBAL_INCLUDES += include
|
|
GLOBAL_DEFINES += AOS_UFFS
|