bl_iot_sdk/components/network/ble/blemesh/bouffalo.mk
Robert Lipe 3bc544d9f3 clean components/ whitespace issues
image_conf, make_scripts_riscv -  Delete trailing spaces. Change tabs to 4 space multiples.

    .c and .h get tabs expanded to four spaces for consistency, traliing whitespace whacked.
    Makefiles do NOT get tabs changed.
2020-11-08 13:56:51 -06:00

55 lines
1.4 KiB
Makefile

include $(COMPONENT_PATH)/../ble_common.mk
# Component Makefile
#
## These include paths would be exported to project level
COMPONENT_ADD_INCLUDEDIRS += src \
src/include \
src/mesh_cli_cmds
ifeq ($(CONFIG_BT_MESH_MODEL), 0)
COMPONENT_ADD_INCLUDEDIRS += src/mesh_models/include \
src/mesh_models/server/include
endif
## not be exported to project level
COMPONENT_PRIV_INCLUDEDIRS :=
## This component's src
COMPONENT_SRCS := src/access.c \
src/adv.c \
src/beacon.c \
src/cfg_cli.c \
src/cfg_srv.c \
src/crypto.c \
src/health_cli.c \
src/health_srv.c \
src/main.c \
src/net.c \
src/prov.c \
src/proxy.c \
src/settings.c \
src/transport.c \
src/mesh_cli_cmds/mesh_cli_cmds.c \
src/local_operation.c \
ifeq ($(CONFIG_BT_MESH_FRIEND),1)
COMPONENT_SRCS += src/friend.c
endif
ifeq ($(CONFIG_BT_MESH_LOW_POWER),1)
COMPONENT_SRCS += src/lpn.c
endif
ifeq ($(CONFIG_BT_MESH_MODEL), 0)
ifeq ($(CONFIG_BT_MESH_MODEL_GEN_SRV),1)
COMPONENT_SRCS += src/mesh_models/server/common_srv.c \
src/mesh_models/server/gen_srv.c
endif
endif
COMPONENT_OBJS := $(patsubst %.c,%.o, $(COMPONENT_SRCS))
COMPONENT_SRCDIRS:= src \
src/mesh_cli_cmds
ifeq ($(CONFIG_BT_MESH_MODEL), 0)
COMPONENT_SRCDIRS+= src/mesh_models/server
endif