2016-08-17 15:08:22 +00:00
|
|
|
#
|
|
|
|
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
|
|
|
|
# project subdirectory.
|
|
|
|
#
|
|
|
|
|
|
|
|
PROJECT_NAME := bootloader
|
2016-09-14 16:53:33 +00:00
|
|
|
COMPONENTS := esptool_py bootloader log
|
2016-09-13 03:46:51 +00:00
|
|
|
|
|
|
|
# The bootloader pseudo-component is also included in this build, for its Kconfig.projbuild to be included.
|
|
|
|
#
|
|
|
|
# IS_BOOTLOADER_BUILD tells the component Makefile.projbuild to be a no-op
|
|
|
|
IS_BOOTLOADER_BUILD := 1
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-09-14 18:37:54 +00:00
|
|
|
#We cannot include the esp32 component directly but we need its includes.
|
|
|
|
#This is fixed by adding CFLAGS from Makefile.projbuild
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-08-19 06:32:35 +00:00
|
|
|
include $(IDF_PATH)/make/project.mk
|