summaryrefslogtreecommitdiff
path: root/Makefile
blob: 07b5fea2985451e3278f3da74c4a95737ff4db5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS += -Werror -Wall

all: solve

solve: display.o update.o cell.h

display.o: display.c cell.h display.h

update.o: update.c cell.h display.h

clean:
	rm -f *.o solve