summaryrefslogtreecommitdiff
path: root/Makefile
blob: aea03ac306fdf45fc3ad6833decf59c2b93037b4 (plain)
1
2
3
4
5
6
7
8
9
10
CC ?= cc
LDFLAGS = -lncurses

output:
	${CC} main.c ncurses.c valid.c checks.c computer_player.c $(LDFLAGS) -o chess

clean: 
	rm -f chess

install: output