2016-08-17 23:08:22 +08:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
2018-09-06 19:43:08 +08:00
|
|
|
COMPONENT_SUBMODULES += lwip
|
2016-08-17 23:08:22 +08:00
|
|
|
|
2017-04-25 17:22:09 +08:00
|
|
|
COMPONENT_ADD_INCLUDEDIRS := \
|
2018-09-06 19:43:08 +08:00
|
|
|
include/apps \
|
|
|
|
lwip/src/include \
|
|
|
|
port/esp32/include \
|
|
|
|
port/esp32/include/arch
|
2017-04-25 17:22:09 +08:00
|
|
|
|
|
|
|
COMPONENT_SRCDIRS := \
|
2018-09-06 19:43:08 +08: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 \
|
|
|
|
lwip/src/netif/ppp \
|
|
|
|
port/esp32 \
|
|
|
|
port/esp32/freertos \
|
|
|
|
port/esp32/netif \
|
|
|
|
port/esp32/debug
|
2016-08-17 23:08:22 +08:00
|
|
|
|
2016-12-06 10:52:40 -08:00
|
|
|
CFLAGS += -Wno-address # lots of LWIP source files evaluate macros that check address of stack variables
|
2016-08-17 23:08:22 +08:00
|
|
|
|
2016-12-06 10:52:40 -08:00
|
|
|
api/tcpip.o apps/dhcpserver.o: CFLAGS += -Wno-unused-variable
|
|
|
|
apps/dhcpserver.o core/pbuf.o core/tcp_in.o: CFLAGS += -Wno-unused-but-set-variable
|
2017-01-20 12:05:38 +01:00
|
|
|
netif/ppp/pppos.o: CFLAGS += -Wno-type-limits
|
|
|
|
|