ASM81 = ../tools/asm81

all: hello.81 hangman.81 hexedit.81

%.81: %.asm ../ti81.inc $(ASM81)
	$(ASM81) -I.. $<

../tools/asm81:
	$(MAKE) -C ../tools asm81

clean:
	rm -f *.lst *.exp *.prg *.81

.PHONY: clean all
