mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 02:40:56 +00:00
Pipe stderr from makedepend for depend rule in makefile to /dev/null
This commit is contained in:
parent
ecb83404ab
commit
985a177288
1 changed files with 4 additions and 4 deletions
8
Makefile
8
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
|
||||
|
|
Loading…
Reference in a new issue