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.
|
|
|
|
#
|
2017-06-23 04:08:01 +00:00
|
|
|
ifeq ("$(MAKELEVEL)","0")
|
|
|
|
$(error Bootloader makefile expects to be run as part of 'make bootloader' from a top-level project.)
|
|
|
|
endif
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
PROJECT_NAME := bootloader
|
2016-11-09 03:26:50 +00:00
|
|
|
|
2018-11-19 03:36:19 +00:00
|
|
|
COMPONENTS := esptool_py bootloader_support log spi_flash micro-ecc soc main efuse
|
2017-06-23 04:08:01 +00:00
|
|
|
|
2017-11-15 08:09:54 +00:00
|
|
|
# Clear C and CXX from top level project
|
|
|
|
CFLAGS =
|
|
|
|
CXXFLAGS =
|
|
|
|
|
2016-11-09 03:26:50 +00:00
|
|
|
#We cannot include the esp32 component directly but we need its includes.
|
2017-06-23 04:08:01 +00:00
|
|
|
CFLAGS += -I $(IDF_PATH)/components/esp32/include
|
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-10-21 06:44:34 +00:00
|
|
|
export IS_BOOTLOADER_BUILD
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2017-06-23 04:08:01 +00:00
|
|
|
# BOOTLOADER_BUILD macro is the same, for source file changes
|
|
|
|
CFLAGS += -D BOOTLOADER_BUILD=1
|
|
|
|
|
2016-11-09 03:26:50 +00:00
|
|
|
# include the top-level "project" include directory, for sdkconfig.h
|
|
|
|
CFLAGS += -I$(BUILD_DIR_BASE)/../include
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-08-19 06:32:35 +00:00
|
|
|
include $(IDF_PATH)/make/project.mk
|