aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2016-05-20 15:23:00 +0100
committerIan C <ianc@noddybox.co.uk>2016-05-20 15:23:00 +0100
commit45fd0ca73ec84a9b605f918a7b1b3497d2a25b33 (patch)
tree4b01f2dcc8f0ce5b80092a08427f8aa449f43ad6 /src/Makefile
parent393556d2fc70dc0def5a6bb0463daf234ef23e36 (diff)
First pass at NES ROM support.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile15
1 files changed, 10 insertions, 5 deletions
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 \