mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
66fb5a29bb
Apply the pre-commit hook whitespace fixes to all files in the repo. (Line endings, blank lines at end of file, trailing whitespace)
35 lines
680 B
Makefile
35 lines
680 B
Makefile
SOURCE_FILES := \
|
|
app_update/esp_ota_eps.c \
|
|
log/log.c \
|
|
newlib/lock.c \
|
|
esp32/crc.cpp \
|
|
esp32/esp_random.c \
|
|
esp_timer/src/esp_timer.c \
|
|
bootloader_support/src/bootloader_common.c
|
|
|
|
INCLUDE_DIRS := \
|
|
../include \
|
|
../private_include \
|
|
app_update/include \
|
|
driver/include \
|
|
esp_timer/include \
|
|
freertos/include \
|
|
log/include \
|
|
newlib/include \
|
|
sdmmc/include \
|
|
vfs/include \
|
|
$(addprefix ../../../../components/, \
|
|
esp_common/include \
|
|
esp_system/include \
|
|
soc/esp32/include \
|
|
soc/include \
|
|
xtensa/include \
|
|
xtensa/esp32/include \
|
|
esp32/include \
|
|
esp_timer/include \
|
|
bootloader_support/include \
|
|
app_update/include \
|
|
hal/include \
|
|
spi_flash/include \
|
|
)
|