aboutsummaryrefslogtreecommitdiffstats
path: root/gfx.mk
blob: 8b3699580c593b3d382f1b1621b41ffdf7cd7367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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/gevent.c \
			$(GFXLIB)/src/gtimer.c \
            $(GFXLIB)/src/gwin.c \
            $(GFXLIB)/src/touchscreen.c \
			$(GFXLIB)/src/graph.c \

GFXINC +=   $(GFXLIB)/include

include $(GFXLIB)/src/gwin/gwin.mk
include $(GFXLIB)/src/ginput/ginput.mk