2016-08-17 15:08:22 +00:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
2018-09-06 11:43:08 +00:00
|
|
|
COMPONENT_SUBMODULES += lwip
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2017-04-25 09:22:09 +00:00
|
|
|
COMPONENT_ADD_INCLUDEDIRS := \
|
2018-09-06 11:43:08 +00:00
|
|
|
include/apps \
|
|
|
|
lwip/src/include \
|
|
|
|
port/esp32/include \
|
|
|
|
port/esp32/include/arch
|
2017-04-25 09:22:09 +00:00
|
|
|
|
|
|
|
COMPONENT_SRCDIRS := \
|
2018-09-06 11:43:08 +00:00
|
|
|
apps/dhcpserver \
|
|
|
|
apps/ping \
|
|
|
|
lwip/src/api \
|
|
|
|
lwip/src/apps/sntp \
|
|
|
|
lwip/src/core \
|
|
|
|
lwip/src/core/ipv4 \
|
|
|
|
lwip/src/core/ipv6 \
|
|
|
|
lwip/src/netif \
|
|
|
|
port/esp32 \
|
|
|
|
port/esp32/freertos \
|
|
|
|
port/esp32/netif \
|
2018-09-06 12:23:20 +00:00
|
|
|
port/esp32/debug
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2018-09-06 12:23:20 +00:00
|
|
|
ifdef CONFIG_PPP_SUPPORT
|
|
|
|
COMPONENT_SRCDIRS += lwip/src/netif/ppp lwip/src/netif/ppp/polarssl
|
|
|
|
endif
|
2017-01-20 11:05:38 +00:00
|
|
|
|
2018-09-06 12:23:20 +00:00
|
|
|
CFLAGS += -Wno-address # lots of LWIP source files evaluate macros that check address of stack variables
|