2016-10-07 03:16:13 +00:00
|
|
|
#
|
|
|
|
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
|
|
|
|
# project subdirectory.
|
|
|
|
#
|
|
|
|
|
2016-11-22 12:32:45 +00:00
|
|
|
PROJECT_NAME := blufi_demo
|
2016-10-07 03:16:13 +00:00
|
|
|
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := components/include
|
|
|
|
|
|
|
|
include $(IDF_PATH)/make/project.mk
|
|
|
|
|
2016-11-30 03:26:30 +00:00
|
|
|
# Copy some defaults into the sdkconfig by default
|
|
|
|
# so BT stack is enabled
|
|
|
|
sdkconfig: sdkconfig.defaults
|
|
|
|
$(Q) cp $< $@
|
|
|
|
|
|
|
|
menuconfig: sdkconfig
|
|
|
|
defconfig: sdkconfig
|