ref: 26e0ee9545f40522e4ff3f5a4c54437618d14f57
dir: /Makefile/
.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}