aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-02-04 19:44:24 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-02-04 19:44:24 +0000
commit4b6889d43140973c0c57bf0c9d103a8ccf724aef (patch)
tree366637c53cf574b1b7dc83a0f6be1f429e184315 /tools
parent68681f2c4c80885d7cc4617188e969cefcbdc9f1 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2991 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools')
-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