From 205c47519171187243d95625878b513bc058964c Mon Sep 17 00:00:00 2001 From: yenatch Date: Fri, 14 Feb 2014 00:03:58 -0500 Subject: [PATCH] Consolidate rgbfix options between Red and Blue. Yellow and JP roms will take different options, but this is good for now. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f7cc2092f2..7fceae92fd 100644 --- a/Makefile +++ b/Makefile @@ -58,11 +58,14 @@ $(OBJS): $$*.tx $$(patsubst %.asm, %.tx, $$($$*_DEPENDENCIES)) @$(eval TEXTQUEUE :=) rgbasm -o $@ $*.tx + +OPTIONS = -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 + pokered.gbc: $(RED_OBJS) rgblink -n $*.sym -m $*.map -o $@ $^ - rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON RED" $@ + rgbfix $(OPTIONS) -t "POKEMON RED" $@ pokeblue.gbc: $(BLUE_OBJS) rgblink -n $*.sym -m $*.map -o $@ $^ - rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON BLUE" $@ + rgbfix $(OPTIONS) -t "POKEMON BLUE" $@