mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-30 06:59:02 +08:00
17 lines
279 B
Makefile
17 lines
279 B
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
ifdef IS_BOOTLOADER_BUILD
|
|
COMPONENT_OBJS := src/spi_flash.o src/spi_flash_raw.o
|
|
endif
|
|
|
|
CFLAGS += -DPARTITION_QUEUE_HEADER=\"sys/queue.h\"
|
|
|
|
ifdef IS_BOOTLOADER_BUILD
|
|
COMPONENT_SRCDIRS += port
|
|
COMPONENT_OBJS += port/port.o
|
|
endif
|