From 9d1a61efbecfb0093887ebe14b4aff4e7f6aeb85 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 20 Jul 2010 15:59:56 -0700 Subject: Makefiles: Don't complain if depend file to be included doesn't exist. While bootstrapping the dependencies, make will see the "include depend" directive before the depend file has been created. To avoid a spurious warning in this case we use "-include" instead, (which differs precisely in the fact that it will not emit a diagnostic if the named file does not exist). --- src/glut/glx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/glut') diff --git a/src/glut/glx/Makefile b/src/glut/glx/Makefile index 6889cd4b40..69f8052c09 100644 --- a/src/glut/glx/Makefile +++ b/src/glut/glx/Makefile @@ -137,4 +137,4 @@ depend: $(SOURCES) @ $(MKDEP) $(MKDEP_OPTIONS) -I$(TOP)/include $(SOURCES) \ $(X11_INCLUDES) > /dev/null -include depend +-include depend -- cgit v1.2.3