summaryrefslogtreecommitdiff
path: root/Makefile
blob: 631cf472260d011594becd79fb58d9b2261f110b (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 preprocessor.py < $< > $@

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

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