aboutsummaryrefslogtreecommitdiffstats
path: root/win32/rm.bat
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-21 23:21:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-21 23:21:31 +0000
commit71f46f07245023e55a44b6c04100b72cd1bd8777 (patch)
tree1524d0fff3f4b725eb87fca6131ec524d08f404f /win32/rm.bat
parent48dde6f3e6b3faf336a8734a21a7124115ed500f (diff)
downloadruby-71f46f07245023e55a44b6c04100b72cd1bd8777.tar.gz
* Makefile.in, */Makefile.sub, common.mk: extract common portions.
* Makefile.in, cygwin/GNUmakefile.in, */Makefile.sub (RBCONFIG): separated time stamp file for rbconfig.rb. * configure.in: append common.mk to Makefile. * mkconfig.rb: keep mtime of rbconfig.rb if unchanged. * win32/rm.bat: remove multiple files. * wince/mkconfig_wce.rb: use fake.rb instead. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5997 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/rm.bat')
-rwxr-xr-xwin32/rm.bat9
1 files changed, 9 insertions, 0 deletions
diff --git a/win32/rm.bat b/win32/rm.bat
new file mode 100755
index 0000000000..ee18ea6946
--- /dev/null
+++ b/win32/rm.bat
@@ -0,0 +1,9 @@
+@echo off
+::: $Id$
+if "%1" == "-f" shift
+:begin
+if "%1" == "" goto :end
+if exist %1 del %1
+shift
+goto :begin
+:end