aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-05-20 20:52:27 +0000
committerGuy Harris <guy@alum.mit.edu>2000-05-20 20:52:27 +0000
commit192a2e45fad361c1a1f3785806cf65e0f8d4e610 (patch)
tree9f73ad1392d24e1d5d6378ed9ebfd6425a664e15 /plugins/Makefile.nmake
parentd7e6e0e384967a4d3ac1f57d6446f5a04e83b3c6 (diff)
Use "rm -f", not "rm", to remove "plugin_api.obj", so that if
"plugin_api.obj" doesn't exist, it just drives on rather than giving an error. svn path=/trunk/; revision=1990
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 9aacc26bc1..c1f8d6d622 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.5 2000/04/29 07:34:48 guy Exp $
+# $Id: Makefile.nmake,v 1.6 2000/05/20 20:52:27 guy Exp $
#
include ..\config.nmake
@@ -21,7 +21,7 @@ gryphon::
cd ..
clean:
- rm plugin_api.obj
+ rm -f plugin_api.obj
cd gryphon
nmake -f Makefile.nmake clean
cd ..