diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-04-15 15:58:09 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-04-15 15:58:09 +0100 |
commit | 24ebb224a11d31bfe039352fd29d2b89368583ac (patch) | |
tree | ee34d23fc3f10a47591ef5d0c027a7efa881be1e /src/example/Makefile | |
parent | 044adfa27731c0314bc4c9340fd1eebfaf3cf270 (diff) |
Started on Gameboy support.
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 7c53209..d184de0 100644 --- a/src/example/Makefile +++ b/src/example/Makefile @@ -20,7 +20,7 @@ # Makefile for examples # -ALL = spectrum.tap c64.t64 zx81.p +ALL = spectrum.tap c64.t64 zx81.p gb.rom CASM = ../casm all: $(ALL) $(CASM) @@ -39,5 +39,8 @@ c64.t64: c64.asm $(CASM) zx81.p: zx81.asm $(CASM) $(CASM) zx81.asm +gb.rom: gb.asm $(CASM) + $(CASM) gb.asm + clean: rm -f $(ALL) |