From 07f34835358ef65de310934ae726b66c7ca46f68 Mon Sep 17 00:00:00 2001 From: Andrew Hannam Date: Thu, 6 Dec 2012 18:45:54 +1000 Subject: Restructure Create global include file called gfx.h which knows about sub-system dependancies. Deprecate Touchscreen (GINPUT touch is now working properly) Merge Graph into GWIN Change directory structure to reflect sub-system structure Many small bugs fixed Split Nokia6610 gdisp driver into GE8 and GE12 controller versions Fixed broken demos. GFX sub-systems are now clearly defined and new ones should be much easier to add. --- gfx.mk | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'gfx.mk') diff --git a/gfx.mk b/gfx.mk index 8b369958..545e3157 100644 --- a/gfx.mk +++ b/gfx.mk @@ -3,15 +3,11 @@ 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 +GFXSRC += +include $(GFXLIB)/src/gdisp/gdisp.mk +include $(GFXLIB)/src/gevent/gevent.mk +include $(GFXLIB)/src/gtimer/gtimer.mk include $(GFXLIB)/src/gwin/gwin.mk include $(GFXLIB)/src/ginput/ginput.mk -- cgit v1.2.3