11 lines
271 B
Makefile
11 lines
271 B
Makefile
# don't re-define LCDLIB if it has been set elsewhere, e.g in Makefile
|
|
ifeq ($(LCDLIB),)
|
|
LCDLIB = $(CHIBIOS)/ext/lcd
|
|
endif
|
|
|
|
LCDSRC += $(LCDLIB)/src/gdisp.c \
|
|
$(LCDLIB)/src/gdisp_fonts.c \
|
|
$(LCDLIB)/src/touchpad.c
|
|
|
|
LCDINC += $(LCDLIB)/include
|