1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/st77xx/Makefile

16 lines
257 B
Makefile

SRC = st77xx.c
ifneq (,$(filter st7735,$(USEMODULE)))
SRC += st7735_init.c
endif
ifneq (,$(filter st7789,$(USEMODULE)))
SRC += st7789_init.c
endif
ifneq (,$(filter st7796,$(USEMODULE)))
SRC += st7796_init.c
endif
include $(RIOTBASE)/Makefile.base