summaryrefslogtreecommitdiff
path: root/Makefile
blob: 158373be4af089228aa693514acb89bd0d254a07 (plain)
1
2
3
4
5
6
7
8
9
10
all: compile run

compile:
	gcc -g sirtet.c pieces.c ui.c util.c -lncurses -o sirtet

run:
	./sirtet

valgrind:
	valgrind --leak-check=full --show-leak-kinds=all ./sirtet