diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-05-04 13:48:43 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-05-04 13:48:43 +0100 |
commit | a395d7bf01456620806ae521878a60bdad8dc6e5 (patch) | |
tree | d32b5903d59029227c454ffbb9213cd017f22429 /src/example/Makefile | |
parent | 9b4f1b54a5b340ae094d33c7ef0eff49b86af489 (diff) |
First pass at SNES ROM output.
Still to do:
* ROM type
* ROM checksums
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) |