]> de.git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Pipe stderr from makedepend for depend rule in makefile to /dev/null
authorDale Weiler <killfieldengine@gmail.com>
Sun, 6 Jan 2013 15:27:39 +0000 (15:27 +0000)
committerDale Weiler <killfieldengine@gmail.com>
Sun, 6 Jan 2013 15:27:39 +0000 (15:27 +0000)
Makefile

index 321c8f2f5e76b52b17e9c962ddf0fde00fadf447..c5297d6bca36a06bbe53489bece99cc8428cbecd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -109,13 +109,13 @@ splint:
        @ ./splint.sh
 
 depend:
-       makedepend -Y -w 65536 \
+       @makedepend    -Y -w 65536 2> /dev/null \
                $(subst .o,.c,$(OBJ_D))
-       makedepend -a -Y -w 65536 \
+       @makedepend -a -Y -w 65536 2> /dev/null \
                $(subst .o,.c,$(OBJ_T))
-       makedepend -a -Y -w 65536 \
+       @makedepend -a -Y -w 65536 2> /dev/null \
                $(subst .o,.c,$(OBJ_C))
-       makedepend -a -Y -w 65536 \
+       @makedepend -a -Y -w 65536 2> /dev/null \
                $(subst .o,.c,$(OBJ_X))
 
 #install rules