2019-04-10 08:24:50 +00:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
COMPONENT_ADD_LDFRAGMENTS += linker.lf
|
|
|
|
|
2019-07-12 09:58:45 +00:00
|
|
|
ifndef CONFIG_ETH_USE_ESP32_EMAC
|
2019-04-10 08:24:50 +00:00
|
|
|
COMPONENT_OBJEXCLUDE += src/esp_eth_mac_esp32.o
|
|
|
|
endif
|
2019-06-25 11:36:56 +00: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 16:50:34 +00:00
|
|
|
|
|
|
|
ifndef CONFIG_ETH_USE_OPENETH
|
|
|
|
COMPONENT_OBJEXCLUDE += src/esp_eth_mac_openeth.o
|
|
|
|
endif
|