mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
10 lines
161 B
Makefile
10 lines
161 B
Makefile
|
MODULE = esp_lcd
|
||
|
|
||
|
ifneq (,$(filter esp32 esp32s2 esp32s3,$(CPU_FAM)))
|
||
|
SRC = esp_lcd_mcu.c
|
||
|
else
|
||
|
SRC = esp_lcd_gpio.c
|
||
|
endif
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.base
|