diff options
Diffstat (limited to 'src/example/Makefile')
-rw-r--r-- | src/example/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/example/Makefile b/src/example/Makefile index f83d006..3c57e50 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 +ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc CASM = ../casm all: $(ALL) $(CASM) @@ -45,5 +45,8 @@ gb.gb: gb.asm $(CASM) vcs.bin: vcs.asm $(CASM) $(CASM) vcs.asm +snes.sfc: snes.asm $(CASM) + $(CASM) snes.asm + clean: rm -f $(ALL) |