pokered/Makefile
Bryan Bishop 0d6370d054 set LC_CTYPE=C in Makefile for gawk
hg-commit-id: 9925b373f9ad
2012-01-15 11:26:12 -06:00

35 lines
830 B
Makefile

#gawk sort order
LC_CTYPE=C
.SUFFIXES: .asm .tx .o .gbc
TEXTFILES = text/oakspeech.tx text/pokedex.tx text/mapRedsHouse1F.tx \
text/mapBluesHouse.tx text/mapPalletTown.tx
all: pokered.gbc
pokered.o: pokered.asm common.tx constants.asm ${TEXTFILES}
rgbasm -o pokered.o pokered.asm
pokeblue.o: pokeblue.asm common.tx constants.asm ${TEXTFILES}
rgbasm -o pokeblue.o pokeblue.asm
redrle: extras/redrle.c
${CC} -o $@ $>
.asm.tx:
awk -f textpre.awk < $< > $@
pokered.gbc: pokered.o
rgblink -o $@ $<
rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON RED" $@
cmp baserom.gbc $@
pokeblue.gbc: pokeblue.o
rgblink -o $@ $<
rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON BLUE" $@
clean:
rm -f common.tx pokered.o pokered.gbc pokeblue.o pokeblue.gbc redrle ${TEXTFILES}
more: pokered.gbc pokeblue.gbc