shithub: pokecrystal

ref: 2c48427c05bd637ad006377db432d13e466c2f79
dir: /Makefile/

View raw version
.SUFFIXES: .asm .tx .o .gbc

TEXTFILES =	text/sweethoney.tx

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}