1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nobu 2004-03-21 23:21:31 +00:00
parent 48dde6f3e6
commit 71f46f0724
11 changed files with 580 additions and 1270 deletions

9
win32/rm.bat Executable file
View file

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