summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2014-03-05 15:11:03 +0100
committerOlivier Gayot <duskcoder@gmail.com>2014-03-05 18:39:20 +0100
commitc14c190414c1336643cd7d0c29f0626ccc7dea6d (patch)
tree7fb193d1d15c20fcc5fa4805cfc7e7870fb03484 /Makefile
parent92561c6d565939f15daf9dd4420729a6a0f1c0ca (diff)
Clean the code and avoid fix some crashes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a405f9..fa5f19a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
CC = gcc
CFLAGS = -Wall -W -std=c99 -g
-god_hands_solver: main.o
+god_hands_solver: god_hands.o
$(CC) -o $@ $^ $(LDFLAGS)
-main.o: main.c
+god_hands.o: god_hands.c
$(CC) -o $@ -c $< $(CFLAGS)