mirror of
https://github.com/pine64/bl_iot_sdk.git
synced 2024-11-19 14:13:48 +00:00
36 lines
960 B
Makefile
36 lines
960 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 :=
|
|
|
|
## This component's src
|
|
COMPONENT_SRCS := src/utils_hex.c \
|
|
src/utils_crc.c \
|
|
src/utils_sha256.c \
|
|
src/utils_fec.c \
|
|
src/utils_log.c \
|
|
src/utils_dns.c \
|
|
src/utils_list.c \
|
|
src/utils_rbtree.c \
|
|
src/utils_hexdump.c \
|
|
src/utils_time.c \
|
|
src/utils_notifier.c \
|
|
src/utils_getopt.c \
|
|
src/utils_string.c \
|
|
src/utils_hmac_sha1_fast.c \
|
|
src/utils_psk_fast.c \
|
|
src/utils_memp.c \
|
|
src/utils_tlv_bl.c \
|
|
|
|
|
|
COMPONENT_OBJS := $(patsubst %.c,%.o, $(COMPONENT_SRCS))
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
|
|
##
|
|
#CPPFLAGS +=
|