summaryrefslogtreecommitdiff
path: root/Makefile
blob: 25222ce9c6dbc4de8173c8ba3eba6184dc345a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.SUFFIXES: .asm .tx .o .gbc

TEXTFILES =	

all: pokecrystal.gbc

pokecrystal.o: pokecrystal.asm main.tx constants.asm wram.asm ${TEXTFILES}
	rgbasm -o pokecrystal.o pokecrystal.asm
	
.asm.tx:
	python textpre.py < $< > $@

pokecrystal.gbc: pokecrystal.o
	rgblink -o $@ $<
	cmp baserom.gbc $@

clean:
	rm -f main.tx pokecrystal.o pokecrystal.gbc ${TEXTFILES}