aboutsummaryrefslogtreecommitdiff
path: root/src/example/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/example/Makefile')
-rw-r--r--src/example/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/example/Makefile b/src/example/Makefile
index 3c57e50..e92b2ec 100644
--- a/src/example/Makefile
+++ b/src/example/Makefile
@@ -20,7 +20,7 @@
# Makefile for examples
#
-ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc
+ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes
CASM = ../casm
all: $(ALL) $(CASM)
@@ -48,5 +48,8 @@ vcs.bin: vcs.asm $(CASM)
snes.sfc: snes.asm $(CASM)
$(CASM) snes.asm
+nes.nes: nes.asm $(CASM)
+ $(CASM) nes.asm
+
clean:
rm -f $(ALL)