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 (CP, MV): added.

* common.mk (.y.c): not discard the old target until successfully
  created.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14194 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-12-11 07:19:28 +00:00
parent 2db98d937a
commit 7554dd1346
6 changed files with 18 additions and 2 deletions

View file

@ -1,3 +1,10 @@
Tue Dec 11 16:19:26 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* Makefile.in, */Makefile.sub (CP, MV): added.
* common.mk (.y.c): not discard the old target until successfully
created.
Tue Dec 11 15:20:39 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* object.c (Init_Object): singleton_method_{added,removed,undefined}

View file

@ -81,6 +81,8 @@ ARCHFILE = @ARCHFILE@
SETUP =
EXTSTATIC = @EXTSTATIC@
CP = cp
MV = mv
RM = rm -f
NM = @NM@
AR = @AR@

View file

@ -67,6 +67,8 @@ BASERUBY = ruby
PURIFY =
AUTOCONF = autoconf
RM = $(srcdir:/=\)\win32\rm.bat
CP = copy > nul
MV = ren > nul
!if !defined(PROCESSOR_ARCHITECTURE)
PROCESSOR_ARCHITECTURE = x86

View file

@ -355,8 +355,9 @@ PHONY:
{$(srcdir)}.y.c:
$(YACC) $(YFLAGS) -o y.tab.c $<
sed -f $(srcdir)/tool/ytab.sed -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@
@$(RM) y.tab.c
sed -f $(srcdir)/tool/ytab.sed -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@.new
@$(RM) $@ y.tab.c
@$(MV) $@.new $@
acosh.$(OBJEXT): {$(VPATH)}acosh.c
alloca.$(OBJEXT): {$(VPATH)}alloca.c

View file

@ -50,6 +50,8 @@ AR = lib -nologo
PURIFY =
AUTOCONF = autoconf
RM = $(COMSPEC) /C $(srcdir:/=\)\win32\rm.bat
CP = copy > nul
MV = ren > nul
!if !defined(BASERUBY)
BASERUBY = ruby
!endif

View file

@ -44,6 +44,8 @@ AR = lib -nologo
PURIFY =
AUTOCONF = autoconf
RM = $(srcdir)\win32\rm.bat
CP = copy > nul
MV = ren > nul
!if !defined(BASERUBY)
BASERUBY = ruby
!endif