summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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)