diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2014-03-05 15:11:03 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-03-05 18:39:20 +0100 |
commit | c14c190414c1336643cd7d0c29f0626ccc7dea6d (patch) | |
tree | 7fb193d1d15c20fcc5fa4805cfc7e7870fb03484 /Makefile | |
parent | 92561c6d565939f15daf9dd4420729a6a0f1c0ca (diff) |
Clean the code and avoid fix some crashes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |