1# 2# Component Makefile 3# 4COMPONENT_ADD_INCLUDEDIRS := include 5COMPONENT_PRIV_INCLUDEDIRS := private_include lwip 6COMPONENT_SRCDIRS := . lwip loopback 7 8ifndef CONFIG_LWIP_SLIP_SUPPORT 9 COMPONENT_OBJEXCLUDE := lwip/esp_netif_lwip_slip.o 10endif 11 12ifndef CONFIG_PPP_SUPPORT 13 COMPONENT_OBJEXCLUDE += lwip/esp_netif_lwip_ppp.o 14endif 15 16ifndef CONFIG_LWIP_NETIF_LOOPBACK 17 COMPONENT_OBJEXCLUDE += loopback/esp_netif_loopback.o 18endif 19