ref: 6f84ffa25e24f7622cc910685e8d53dc58904796
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}