diff options
author | Ian C <ianc@noddybox.co.uk> | 2003-12-19 01:14:08 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2003-12-19 01:14:08 +0000 |
commit | 50f23c8c394338fc48f825e5b61303d4ac0360db (patch) | |
tree | 5ad022778212fc6b094b3e11dd1a73fe3df7f9c2 /src/Makefile | |
parent | 3a80024643367a4514f0160a90583e00042382b2 (diff) |
Added basic GFX wrapper
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 5ebcd48..2d87ddc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: Makefile,v 1.2 2003-12-17 16:55:42 ianc Exp $ +# $Id: Makefile,v 1.3 2003-12-19 01:14:08 ianc Exp $ # @@ -32,12 +32,16 @@ TARGET = ezx81 Z80LIB = z80/z80.a -SOURCE = ezx81.c \ +SOURCE = main.c \ zx81.c \ + config.c \ + gfx.c \ exit.c -OBJECTS = ezx81.o \ +OBJECTS = main.o \ zx81.o \ + config.o \ + gfx.o \ exit.o EMMA = emma |