From 45fd0ca73ec84a9b605f918a7b1b3497d2a25b33 Mon Sep 17 00:00:00 2001 From: Ian C Date: Fri, 20 May 2016 15:23:00 +0100 Subject: First pass at NES ROM support. --- src/Makefile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index fe9fc6d..e95a5c8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -48,7 +48,8 @@ SOURCE = casm.c \ zx81out.c \ gbout.c \ snesout.c \ - libout.c + libout.c \ + nesout.c OBJECTS = casm.o \ expr.o \ @@ -74,7 +75,8 @@ OBJECTS = casm.o \ zx81out.o \ gbout.o \ snesout.o \ - libout.o + libout.o \ + nesout.o $(TARGET): $(OBJECTS) $(CC) $(CLAGS) -o $(TARGET) $(OBJECTS) @@ -89,8 +91,8 @@ 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 gbout.h snesout.h libout.h z80.h 6502.h \ - gbcpu.h 65c816.h spc700.h + specout.h t64out.h zx81out.h gbout.h snesout.h libout.h nesout.h z80.h \ + 6502.h gbcpu.h 65c816.h spc700.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 @@ -106,8 +108,11 @@ listing.o: listing.c global.h basetype.h util.h state.h label.h macro.h \ cmd.h parse.h expr.h varchar.h listing.h macro.o: macro.c global.h basetype.h util.h state.h codepage.h parse.h \ cmd.h varchar.h macro.h +nesout.o: nesout.c global.h basetype.h util.h state.h expr.h codepage.h \ + parse.h cmd.h nesout.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 gbout.h snesout.h libout.h + cmd.h rawout.h specout.h t64out.h zx81out.h gbout.h snesout.h libout.h \ + nesout.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 \ -- cgit v1.2.3