From e2bfa9c2ac08a5ae5ae0b151a744b2e35c70993b Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Mon, 21 Apr 2014 18:04:40 +0000 Subject: 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit v1.2.3