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 \
|
2019-03-01 18:12:11 +00:00
|
|
|
include/apps/sntp \
|
2018-09-06 11:43:08 +00:00
|
|
|
lwip/src/include \
|
|
|
|
port/esp32/include \
|
2019-03-01 18:12:11 +00:00
|
|
|
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 \
|
2019-03-01 18:12:11 +00:00
|
|
|
apps/sntp \
|
2018-09-06 11:43:08 +00:00
|
|
|
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
|
|
|
|
2019-04-29 12:30:13 +00:00
|
|
|
ifdef CONFIG_LWIP_PPP_SUPPORT
|
2018-09-06 12:23:20 +00:00
|
|
|
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
|
2018-08-30 03:24:34 +00:00
|
|
|
|
|
|
|
ifeq ($(GCC_NOT_5_2_0), 1)
|
2018-09-07 13:37:27 +00:00
|
|
|
lwip/src/netif/ppp/ppp.o: CFLAGS += -Wno-uninitialized
|
|
|
|
lwip/src/netif/ppp/pppos.o: CFLAGS += -Wno-implicit-fallthrough
|
|
|
|
endif
|
2019-02-13 07:57:11 +00:00
|
|
|
|
|
|
|
COMPONENT_ADD_LDFRAGMENTS += linker.lf
|