summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-12-08 15:16:36 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-12-08 15:16:36 +0000
commit321a2c28e12d5d876db737920f2dc53fc23c21ef (patch)
tree9089d3963451dd8850db83c50caa1d9fed79936f
parent9ede195b9a0fccf0166919be996ea55700488458 (diff)
Improve the behaviour of the build system wrt depend files.
- Remove the -Y option for makedepend, so that the standard directories are searched - No longer pipe the multiple errors that the -Y option caused into /dev/null -- we want to know about these failures. - Fix up a few other misc makedepend failures.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 393f8c3..36b70ee 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ $(LIB_DIR)/$(GLW_LIB_NAME): $(OBJECTS)
depend: $(GLW_SOURCES)
touch depend
$(MKDEP) $(MKDEP_OPTIONS) -I$(TOP)/include $(GLW_SOURCES) \
- > /dev/null 2>&1
+ > /dev/null
include depend