diff options
-rw-r--r-- | lib/Makefile.Watcom | 4 | ||||
-rw-r--r-- | lib/Makefile.m32 | 2 | ||||
-rw-r--r-- | src/Makefile.Watcom | 4 | ||||
-rw-r--r-- | src/Makefile.m32 | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/Makefile.Watcom b/lib/Makefile.Watcom index 0ae01799a..525f527dd 100644 --- a/lib/Makefile.Watcom +++ b/lib/Makefile.Watcom @@ -34,12 +34,12 @@ RC = wrc !endif !if $(__VERSION__) < 1250 -RM = del /q /f >NUL 2>&1 +RM = del /q /f 2>NUL !else RM = rm -f !endif MD = mkdir -RD = rmdir /q /s >NUL 2>&1 +RD = rmdir /q /s 2>NUL CP = copy CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -zc -s -fr=con -w2 -fpi -oilrtfm & diff --git a/lib/Makefile.m32 b/lib/Makefile.m32 index 2e1a934bf..47b6729c1 100644 --- a/lib/Makefile.m32 +++ b/lib/Makefile.m32 @@ -47,7 +47,7 @@ LDFLAGS = -s RANLIB = ranlib RC = windres 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 ######################################################## diff --git a/src/Makefile.Watcom b/src/Makefile.Watcom index 2cb805d06..1242cc266 100644 --- a/src/Makefile.Watcom +++ b/src/Makefile.Watcom @@ -34,12 +34,12 @@ RC = wrc !endif !if $(__VERSION__) < 1250 -RM = del /q /f >NUL 2>&1 +RM = del /q /f 2>NUL !else RM = rm -f !endif MD = mkdir -RD = rmdir /q /s >NUL 2>&1 +RD = rmdir /q /s 2>NUL CP = copy CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -s -fr=con -w2 -fpi -oilrtfm & diff --git a/src/Makefile.m32 b/src/Makefile.m32 index 48eaf3bd3..364bce1fa 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -46,7 +46,7 @@ CFLAGS = -g -O2 LDFLAGS = -s RC = windres RCFLAGS = --include-dir=../include -O COFF -i -RM = del /q /f > NUL 2>&1 +RM = del /q /f 2>NUL CP = copy # We may need these someday |