summaryrefslogtreecommitdiff
path: root/Makefile
blob: 23120d0097e94c3c05825cd510c40646575688bb (plain)
1
2
3
4
5
6
7
8
9
10
.POSIX:
.SUFFIXES:

run: opcodes.ha
	hare run

opcodes.ha: mnems.py
	./mnems.py >opcodes.ha

.PHONY: run