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