mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-03-22 15:16:53 +01:00
22 lines
638 B
Makefile
22 lines
638 B
Makefile
# Component Makefile
|
|
#
|
|
## These include paths would be exported to project level
|
|
COMPONENT_ADD_INCLUDEDIRS += src/ src/httpserver/ src/cmnds/ src/logging/ src/hal/bl602/ src/mqtt/ src/cJSON src/driver src/devicegroups src/bitmessage
|
|
|
|
## not be exported to project level
|
|
COMPONENT_PRIV_INCLUDEDIRS :=
|
|
|
|
|
|
## This component's src
|
|
COMPONENT_SRCS :=
|
|
|
|
|
|
COMPONENT_OBJS := $(patsubst %.c,%.o, $(COMPONENT_SRCS))
|
|
COMPONENT_OBJS := $(patsubst %.S,%.o, $(COMPONENT_OBJS))
|
|
|
|
COMPONENT_SRCDIRS := src/ src/jsmn src/httpserver/ src/cmnds/ src/logging/ src/hal/bl602/ src/mqtt/ src/cJSON src/driver src/devicegroups src/bitmessage
|
|
|
|
|
|
|
|
|