2019-04-10 16:24:50 +08:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
|
2019-07-12 17:58:45 +08:00
|
|
|
ifndef CONFIG_ETH_USE_ESP32_EMAC
|
2019-04-10 16:24:50 +08:00
|
|
|
COMPONENT_OBJEXCLUDE += src/esp_eth_mac_esp32.o
|
|
|
|
endif
|
2019-06-25 19:36:56 +08:00
|
|
|
|
|
|
|
ifndef CONFIG_ETH_SPI_ETHERNET_DM9051
|
|
|
|
COMPONENT_OBJEXCLUDE += src/esp_eth_mac_dm9051.o src/esp_eth_phy_dm9051.o
|
|
|
|
endif
|
2019-10-01 18:50:34 +02:00
|
|
|
|
2020-11-06 12:17:18 +08:00
|
|
|
ifndef CONFIG_ETH_SPI_ETHERNET_W5500
|
|
|
|
COMPONENT_OBJEXCLUDE += src/esp_eth_mac_w5500.o src/esp_eth_phy_w5500.o
|
|
|
|
endif
|
|
|
|
|
2019-10-01 18:50:34 +02:00
|
|
|
ifndef CONFIG_ETH_USE_OPENETH
|
|
|
|
COMPONENT_OBJEXCLUDE += src/esp_eth_mac_openeth.o
|
|
|
|
endif
|
2019-11-26 17:48:38 +08:00
|
|
|
|
|
|
|
# uses C11 atomic feature
|
|
|
|
src/esp_eth.o: CFLAGS += -std=gnu11
|