12 lines
302 B
Makefile
12 lines
302 B
Makefile
# don't re-define GFXLIB if it has been set elsewhere, e.g in Makefile
|
|
ifeq ($(GFXLIB),)
|
|
GFXLIB = $(CHIBIOS)/ext/gfx
|
|
endif
|
|
|
|
GFXSRC += $(GFXLIB)/src/gdisp.c \
|
|
$(GFXLIB)/src/gdisp_fonts.c \
|
|
$(GFXLIB)/src/touchpad.c \
|
|
$(GFXLIB)/src/console.c \
|
|
|
|
GFXINC += $(GFXLIB)/include
|