It is sufficient to pipe stderr to NUL to get rid of the nasty messages.
This commit is contained in:
parent
2f0532a072
commit
2b6208a6de
@ -34,12 +34,12 @@ RC = wrc
|
|||||||
!endif
|
!endif
|
||||||
|
|
||||||
!if $(__VERSION__) < 1250
|
!if $(__VERSION__) < 1250
|
||||||
RM = del /q /f >NUL 2>&1
|
RM = del /q /f 2>NUL
|
||||||
!else
|
!else
|
||||||
RM = rm -f
|
RM = rm -f
|
||||||
!endif
|
!endif
|
||||||
MD = mkdir
|
MD = mkdir
|
||||||
RD = rmdir /q /s >NUL 2>&1
|
RD = rmdir /q /s 2>NUL
|
||||||
CP = copy
|
CP = copy
|
||||||
|
|
||||||
CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -zc -s -fr=con -w2 -fpi -oilrtfm &
|
CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -zc -s -fr=con -w2 -fpi -oilrtfm &
|
||||||
|
@ -47,7 +47,7 @@ LDFLAGS = -s
|
|||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
RC = windres
|
RC = windres
|
||||||
RCFLAGS = --include-dir=../include -DDEBUGBUILD=0 -O COFF -i
|
RCFLAGS = --include-dir=../include -DDEBUGBUILD=0 -O COFF -i
|
||||||
RM = del /q /f > NUL 2>&1
|
RM = del /q /f 2>NUL
|
||||||
STRIP = strip -g
|
STRIP = strip -g
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
|
@ -34,12 +34,12 @@ RC = wrc
|
|||||||
!endif
|
!endif
|
||||||
|
|
||||||
!if $(__VERSION__) < 1250
|
!if $(__VERSION__) < 1250
|
||||||
RM = del /q /f >NUL 2>&1
|
RM = del /q /f 2>NUL
|
||||||
!else
|
!else
|
||||||
RM = rm -f
|
RM = rm -f
|
||||||
!endif
|
!endif
|
||||||
MD = mkdir
|
MD = mkdir
|
||||||
RD = rmdir /q /s >NUL 2>&1
|
RD = rmdir /q /s 2>NUL
|
||||||
CP = copy
|
CP = copy
|
||||||
|
|
||||||
CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -s -fr=con -w2 -fpi -oilrtfm &
|
CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -s -fr=con -w2 -fpi -oilrtfm &
|
||||||
|
@ -46,7 +46,7 @@ CFLAGS = -g -O2
|
|||||||
LDFLAGS = -s
|
LDFLAGS = -s
|
||||||
RC = windres
|
RC = windres
|
||||||
RCFLAGS = --include-dir=../include -O COFF -i
|
RCFLAGS = --include-dir=../include -O COFF -i
|
||||||
RM = del /q /f > NUL 2>&1
|
RM = del /q /f 2>NUL
|
||||||
CP = copy
|
CP = copy
|
||||||
|
|
||||||
# We may need these someday
|
# We may need these someday
|
||||||
|
Loading…
x
Reference in New Issue
Block a user