mirror of
https://github.com/pine64/bl_iot_sdk.git
synced 2024-11-19 14:13:48 +00:00
17 lines
345 B
Makefile
17 lines
345 B
Makefile
# Component Makefile
|
|
#
|
|
## These include paths would be exported to project level
|
|
COMPONENT_ADD_INCLUDEDIRS +=
|
|
## not be exported to project level
|
|
COMPONENT_PRIV_INCLUDEDIRS := include
|
|
|
|
## This component's src
|
|
COMPONENT_SRCS := src/bl_romfs.c
|
|
|
|
COMPONENT_OBJS := $(patsubst %.c,%.o, $(COMPONENT_SRCS))
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
##
|
|
#CPPFLAGS +=
|