mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
751a958529
The code required by the ESP-IDF is compiled directly from source in the `esp32_sdk` package. The compilation is structured by modules for easier use.
23 lines
665 B
Makefile
23 lines
665 B
Makefile
MODULE = esp_idf_eth
|
|
|
|
# source files to be compiled for this module
|
|
ESP32_SDK_SRC = \
|
|
components/esp_eth/src/esp_eth.c \
|
|
components/esp_eth/src/esp_eth_mac_esp.c \
|
|
components/esp_eth/src/esp_eth_netif_glue.c \
|
|
components/esp_eth/src/esp_eth_phy.c \
|
|
components/esp_eth/src/esp_eth_phy_dp83848.c \
|
|
components/esp_eth/src/esp_eth_phy_ip101.c \
|
|
components/esp_eth/src/esp_eth_phy_ksz80xx.c \
|
|
components/esp_eth/src/esp_eth_phy_lan87xx.c \
|
|
components/esp_eth/src/esp_eth_phy_rtl8201.c \
|
|
components/hal/emac_hal.c \
|
|
#
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
ESP32_SDK_BIN = $(BINDIR)/$(MODULE)
|
|
|
|
include ../esp_idf.mk
|
|
include ../esp_idf_cflags.mk
|