aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-02-04 19:44:24 +0000
committerGuy Harris <guy@alum.mit.edu>2001-02-04 19:44:24 +0000
commit3ce594a981ef5c5fd5ba1e4133b07db7e1a71f14 (patch)
tree366637c53cf574b1b7dc83a0f6be1f429e184315
parent2fdb4c76a295b5451fc468fbca4be688eac60055 (diff)
Add a "-f" flag to the "rm", so that "make clean" won't get an error
(and cause a higher-level "make clean" to stop) if any of the files to be removed aren't there. svn path=/trunk/; revision=2991
-rw-r--r--tools/lemon/Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lemon/Makefile.nmake b/tools/lemon/Makefile.nmake
index db862fe396..7f23a9fab1 100644
--- a/tools/lemon/Makefile.nmake
+++ b/tools/lemon/Makefile.nmake
@@ -6,4 +6,4 @@ OBJECTS = lemon.obj
lemon.exe : $(OBJECTS)
clean:
- rm $(OBJECTS) lemon.exe
+ rm -f $(OBJECTS) lemon.exe