From e36cbdb62ef0b6b74285455b88604494cfdd6a63 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Mon, 19 Nov 2012 02:13:14 +0100 Subject: god_hands_solver: commit first version of the project This version of the project is entirely functionnal. Nevertheless, we should make a small interface showing the values as a circle because the id's on standard output do not seem very clear. --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2a405f9 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +CC = gcc +CFLAGS = -Wall -W -std=c99 -g + +god_hands_solver: main.o + $(CC) -o $@ $^ $(LDFLAGS) + +main.o: main.c + $(CC) -o $@ -c $< $(CFLAGS) + -- cgit v1.2.3