diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-03-21 15:35:43 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-03-21 15:35:43 +0000 |
commit | 7c361248bba7799400dee7b7b1dc33f5dadcf3a4 (patch) | |
tree | 88437733db07e1c919d3a8385d17304610e80147 /src/Makefile | |
parent | 765c8e3f85b172a155a9172ec3bc8a6fb965f671 (diff) |
Added initial version of T64 output driver.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 1980209..3931901 100644 --- a/src/Makefile +++ b/src/Makefile @@ -40,7 +40,8 @@ SOURCE = casm.c \ 6502.c \ z80.c \ rawout.c \ - specout.c + specout.c \ + t64out.c OBJECTS = casm.o \ expr.o \ @@ -58,7 +59,8 @@ OBJECTS = casm.o \ 6502.o \ z80.o \ rawout.o \ - specout.o + specout.o \ + t64out.o $(TARGET): $(OBJECTS) $(CC) $(CLAGS) -o $(TARGET) $(OBJECTS) |