summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2014-04-21 18:04:40 +0000
committerOlivier Gayot <duskcoder@gmail.com>2014-04-21 18:10:21 +0000
commite2bfa9c2ac08a5ae5ae0b151a744b2e35c70993b (patch)
tree1305ff69184eb8359f95aab1d98f03fd6de3344f
parentebe2531c926d6b74eb10a2d5706f8431872712e7 (diff)
god_hands_solver: stop complaining about the missing .depend
GNU make emitted a warning at first compilation because the provided Makefile tries to include a .depend file which is not delivered in the repository. This file is created at the first compilation and therefore the warning is not emitted afterward. To stop complaining about this file, we replaced the 'include' directive by the '-include' which simply ignores the files that do not exist.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ea4b578..f96eb32 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ depend: .depend
@$(RM) .depend
@$(CC) $(CFLAGS) -MM $^ > .depend
-include .depend
+-include .depend
OBJ = $(SRC:.c=.o)