summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2018-03-15 03:19:32 -0600
committerIIMarckus <iimarckus@gmail.com>2018-03-15 03:19:32 -0600
commitd305a0fb7ff6822233dca3b2d9e3790983e709a1 (patch)
tree87497146c185c5c1f41251d09f47a7323222f46c /Makefile
parentee2f01f903038f01de2e7477af35993dcc2b142a (diff)
Add the emulated boot ROMs from Pokémon Stadium 2.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d6e3725..ae7118c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
.SUFFIXES: .s .o .bin
-all: dmg0.bin dmg.bin mgb.bin sgb.bin sgb2.bin
+all: dmg0.bin dmg.bin mgb.bin sgb.bin sgb2.bin stadium_mgb.bin stadium_cgb.bin
.s.o:
rgbasm -o $@ $<
@@ -8,5 +8,13 @@ all: dmg0.bin dmg.bin mgb.bin sgb.bin sgb2.bin
.o.bin:
rgblink -o $@ $<
+stadium_mgb.bin: stadium_mgb.o
+ rgblink -o $@ $<
+ rgbfix -f hl $@
+
+stadium_cgb.bin: stadium_cgb.o
+ rgblink -o $@ $<
+ rgbfix -f hl $@
+
clean:
rm -f *.o *.bin