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

demo:
	hare build -lSDL2 -lc -T+libc cmd/demo

run: demo
	./demo

.PHONY: demo run