diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2012-11-19 02:13:14 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-03-05 18:38:41 +0100 |
commit | e36cbdb62ef0b6b74285455b88604494cfdd6a63 (patch) | |
tree | 12b6a0540e14e345849f8cb09e54d357653f4a47 /Makefile |
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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
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) + |