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
This commit is contained in:
Guy Harris 2000-05-20 20:52:27 +00:00
parent d7e6e0e384
commit 192a2e45fa
1 changed files with 2 additions and 2 deletions

View File

@ -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 ..