mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-21 17:16:29 +08:00
16 lines
264 B
Makefile
16 lines
264 B
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
|
|
ifdef CONFIG_ENABLE_PTHREAD
|
|
COMPONENT_SRCDIRS := src
|
|
endif
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
COMPONENT_ADD_LDFLAGS := -lpthread
|
|
|
|
ifdef CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK
|
|
COMPONENT_ADD_LDFLAGS += -Wl,--wrap=vPortCleanUpTCB
|
|
endif
|