From: Dale Weiler Date: Sun, 6 Jan 2013 15:27:39 +0000 (+0000) Subject: Pipe stderr from makedepend for depend rule in makefile to /dev/null X-Git-Tag: before-library~359^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=985a177288e001168c013fbec44260bf6bc5e59b;p=xonotic%2Fgmqcc.git Pipe stderr from makedepend for depend rule in makefile to /dev/null --- diff --git a/Makefile b/Makefile index 321c8f2..c5297d6 100644 --- 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