diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-04-19 15:09:35 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-04-19 15:09:35 +0100 |
commit | 53495c2e1b805f8192650173d3125b567a98bf0e (patch) | |
tree | 30a7deb943ba1cff87c4f1d36d0251226ac13bef /src/Makefile | |
parent | 1c5087c830f290f3e88996fc1594d94abc1e3f22 (diff) |
Fixes Gameboy output
* Fixes Gameboy output
* Documentation changes for Gameboy
* Gameboy example now works
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index 6ac1bdf..baadcb4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -79,14 +79,14 @@ clean: 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 \ - specout.h t64out.h zx81out.h z80.h 6502.h gbcpu.h + specout.h t64out.h zx81out.h gbout.h z80.h 6502.h gbcpu.h codepage.o: codepage.c global.h basetype.h util.h state.h codepage.h \ parse.h cmd.h expr.o: expr.c global.h basetype.h util.h state.h expr.h label.h gbcpu.o: gbcpu.c global.h basetype.h util.h state.h expr.h label.h \ parse.h cmd.h codepage.h varchar.h gbcpu.h -gbout.o: gbout.c global.h basetype.h util.h state.h codepage.h parse.h \ - cmd.h gbout.h +gbout.o: gbout.c global.h basetype.h util.h state.h expr.h codepage.h \ + parse.h cmd.h gbout.h label.o: label.c global.h basetype.h util.h state.h codepage.h parse.h \ cmd.h stack.h label.h listing.o: listing.c global.h basetype.h util.h state.h label.h macro.h \ @@ -94,7 +94,7 @@ listing.o: listing.c global.h basetype.h util.h state.h label.h macro.h \ macro.o: macro.c global.h basetype.h util.h state.h codepage.h parse.h \ cmd.h varchar.h macro.h output.o: output.c global.h basetype.h util.h state.h output.h parse.h \ - cmd.h rawout.h specout.h t64out.h zx81out.h + cmd.h rawout.h specout.h t64out.h zx81out.h gbout.h parse.o: parse.c global.h basetype.h util.h state.h codepage.h parse.h \ cmd.h rawout.o: rawout.c global.h basetype.h util.h state.h rawout.h parse.h \ |