shithub: pokecrystal

ref: 11ed9511cc16d1f4e9674f969e994fc46d8820da
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}