aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.m32
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2007-08-19 23:23:50 +0000
committerGunter Knauf <gk@gknw.de>2007-08-19 23:23:50 +0000
commitd79fdbc46e3ba5b8d8a66bb0a409ddaf25f86191 (patch)
tree0a98e877631328da3baf526ad97a8e6abed3d5e4 /src/Makefile.m32
parentab13c2f814f4ee26e2ff5d796f40cebe68d359af (diff)
ignore errors of the RM command; seems that the del command fails on W2K when the file to delete isnt found while on XP it only prints the warning but make continues....
Diffstat (limited to 'src/Makefile.m32')
-rw-r--r--src/Makefile.m328
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.m32 b/src/Makefile.m32
index 3820f7afc..d7ace49fd 100644
--- a/src/Makefile.m32
+++ b/src/Makefile.m32
@@ -90,12 +90,12 @@ curl_OBJECTS := $(patsubst %.c,%.o,$(strip $(CURL_SOURCES)))
all: curl.exe
curl.exe: curl.res $(curl_OBJECTS) $(curl_DEPENDENCIES)
- $(RM) $@
+ -$(RM) $@
$(LINK) $< $(curl_OBJECTS) $(curl_LDADD)
# We don't have nroff normally under win32
# hugehelp.c: ../README.curl ../curl.1 mkhelp.pl
-# $(RM) hugehelp.c
+# -$(RM) hugehelp.c
# $(NROFF) -man ../curl.1 | $(PERL) mkhelp.pl ../README.curl > hugehelp.c
.c.o:
@@ -105,7 +105,7 @@ curl.exe: curl.res $(curl_OBJECTS) $(curl_DEPENDENCIES)
$(RC) $(RCFLAGS) $< -o $@
clean:
- $(RM) $(curl_OBJECTS)
+ -$(RM) $(curl_OBJECTS)
distrib: clean
- $(RM) $(curl_PROGRAMS)
+ -$(RM) $(curl_PROGRAMS)