aboutsummaryrefslogtreecommitdiffstats
path: root/gfx.mk
diff options
context:
space:
mode:
authorAndrew Hannam <andrewh@inmarket.com.au>2012-12-06 18:45:54 +1000
committerAndrew Hannam <andrewh@inmarket.com.au>2012-12-06 18:45:54 +1000
commit07f34835358ef65de310934ae726b66c7ca46f68 (patch)
tree6b6875cc38f19bc1dd41b3b7edc8ea10ab7dbc84 /gfx.mk
parente236a0a6b79ccd4446df72256740913392cf12f7 (diff)
downloaduGFX-07f34835358ef65de310934ae726b66c7ca46f68.tar.gz
uGFX-07f34835358ef65de310934ae726b66c7ca46f68.tar.bz2
uGFX-07f34835358ef65de310934ae726b66c7ca46f68.zip
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.
Diffstat (limited to 'gfx.mk')
-rw-r--r--gfx.mk12
1 files changed, 4 insertions, 8 deletions
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