diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-04-20 15:56:38 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-04-20 15:56:38 +0100 |
commit | 6ca71dd7a7f10fa6857f1a1bc586059cd78e275a (patch) | |
tree | 6b2f2e24456491c626a57265cb8270d545fc0f38 /src/Makefile | |
parent | 519fdd7d64c2d8366a3b3b076a1ec558f63e703e (diff) |
Started on 65c816 (not yet compilable)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index baadcb4..4f7ec33 100644 --- a/src/Makefile +++ b/src/Makefile @@ -38,6 +38,7 @@ SOURCE = casm.c \ listing.c \ alias.c \ 6502.c \ + 65c816.c \ z80.c \ gbcpu.c \ rawout.c \ @@ -60,6 +61,7 @@ OBJECTS = casm.o \ listing.o \ alias.o \ 6502.o \ + 65c816.o \ z80.o \ gbcpu.o \ rawout.o \ @@ -76,6 +78,8 @@ clean: 6502.o: 6502.c global.h basetype.h util.h state.h expr.h label.h parse.h \ cmd.h codepage.h 6502.h +65c816.o: 65c816.c global.h basetype.h util.h state.h expr.h label.h \ + parse.h cmd.h codepage.h 65c816.h alias.o: alias.c global.h basetype.h util.h state.h alias.h casm.o: casm.c global.h basetype.h util.h state.h expr.h label.h macro.h \ cmd.h parse.h codepage.h stack.h listing.h alias.h output.h rawout.h \ |