mirror of
https://github.com/pine64/bl_iot_sdk.git
synced 2024-11-19 14:13:48 +00:00
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
#
|
|
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
|
|
# project subdirectory.
|
|
#
|
|
|
|
PROJECT_NAME := bl602_demo_event
|
|
PROJECT_PATH := $(abspath .)
|
|
PROJECT_BOARD := evb
|
|
export PROJECT_PATH PROJECT_BOARD
|
|
#CONFIG_TOOLPREFIX :=
|
|
|
|
-include ./proj_config.mk
|
|
|
|
ifeq ($(origin BL60X_SDK_PATH), undefined)
|
|
BL60X_SDK_PATH_GUESS ?= $(shell pwd)
|
|
BL60X_SDK_PATH ?= $(BL60X_SDK_PATH_GUESS)/../..
|
|
$(info ****** Please SET BL60X_SDK_PATH ******)
|
|
$(info ****** Trying SDK PATH [$(BL60X_SDK_PATH)])
|
|
endif
|
|
|
|
COMPONENTS_NETWORK := sntp dns_server
|
|
COMPONENTS_BLSYS := bltime blfdt blmtd blota bloop loopadc looprt loopset
|
|
COMPONENTS_VFS := romfs atcmd cjson
|
|
ifeq ($(CONFIG_BT_TL),1)
|
|
COMPONENTS_BLE := blecontroller
|
|
else
|
|
COMPONENTS_BLE := blecontroller blestack
|
|
endif
|
|
|
|
INCLUDE_COMPONENTS += freertos_riscv_ram bl602 bl602_std bl602_wifi bl602_wifidrv hal_drv lwip lwip_dhcpd mbedtls vfs yloop utils cli aws-iot httpc netutils blog blog_testc
|
|
INCLUDE_COMPONENTS += easyflash4 lwip_altcp_tls_mbedtls
|
|
INCLUDE_COMPONENTS += $(COMPONENTS_NETWORK)
|
|
INCLUDE_COMPONENTS += $(COMPONENTS_BLSYS)
|
|
INCLUDE_COMPONENTS += $(COMPONENTS_VFS)
|
|
INCLUDE_COMPONENTS += $(PROJECT_NAME)
|
|
|
|
ifeq ($(CONFIG_BT),1)
|
|
INCLUDE_COMPONENTS += $(COMPONENTS_BLE)
|
|
ifeq ($(CONFIG_BT_MESH),1)
|
|
INCLUDE_COMPONENTS += blemesh
|
|
endif
|
|
ifeq ($(CONFIG_BT_MESH_MODEL),1)
|
|
INCLUDE_COMPONENTS += blemesh_model
|
|
endif
|
|
endif
|
|
include $(BL60X_SDK_PATH)/make_scripts_riscv/project.mk
|