2018-06-21 04:51:44 -04:00
|
|
|
SOURCE_FILES := \
|
2021-09-09 03:34:42 -04:00
|
|
|
SpiFlash.cpp \
|
|
|
|
flash_mock.cpp \
|
|
|
|
flash_mock_util.c \
|
|
|
|
$(addprefix ../, \
|
|
|
|
partition.c \
|
2022-01-28 12:16:13 -05:00
|
|
|
../spi_flash/partition_target.c \
|
2021-09-09 03:34:42 -04:00
|
|
|
flash_ops.c \
|
2022-07-21 07:14:26 -04:00
|
|
|
../esp_rom/linux/esp_rom_efuse.c \
|
2021-09-09 03:34:42 -04:00
|
|
|
) \
|
2018-06-21 04:51:44 -04:00
|
|
|
|
|
|
|
INCLUDE_DIRS := \
|
2021-09-09 03:34:42 -04:00
|
|
|
. \
|
|
|
|
../ \
|
|
|
|
../include \
|
|
|
|
../private_include \
|
|
|
|
$(addprefix stubs/, \
|
|
|
|
app_update/include \
|
2022-06-27 03:24:07 -04:00
|
|
|
bsd/include \
|
2021-09-09 03:34:42 -04:00
|
|
|
driver/include \
|
2022-07-21 02:03:43 -04:00
|
|
|
esp_app_format/include \
|
2021-09-09 03:34:42 -04:00
|
|
|
esp_timer/include \
|
|
|
|
freertos/include \
|
|
|
|
log/include \
|
|
|
|
newlib/include \
|
|
|
|
sdmmc/include \
|
|
|
|
vfs/include \
|
|
|
|
) \
|
|
|
|
$(addprefix ../../../components/, \
|
|
|
|
esp_rom/include \
|
|
|
|
esp_common/include \
|
|
|
|
esp_hw_support/include \
|
|
|
|
esp_hw_support/include/soc \
|
|
|
|
esp_system/include \
|
|
|
|
xtensa/include \
|
|
|
|
xtensa/esp32/include \
|
|
|
|
soc/esp32/include \
|
2022-07-21 02:03:43 -04:00
|
|
|
heap/include \
|
2021-09-09 03:34:42 -04:00
|
|
|
soc/include \
|
|
|
|
esp32/include \
|
|
|
|
esp_timer/include \
|
|
|
|
bootloader_support/include \
|
2021-11-08 02:10:13 -05:00
|
|
|
bootloader_support/bootloader_flash/include \
|
2021-09-09 03:34:42 -04:00
|
|
|
app_update/include \
|
|
|
|
hal/include \
|
|
|
|
hal/esp32/include \
|
|
|
|
hal/platform_port/include \
|
|
|
|
spi_flash/include \
|
|
|
|
)
|