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

compile:
	gcc -g sirtet.c pieces.c -o sirtet

run:
	./sirtet

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