* common.mk (RUBYOPT): clear for the environment RubyGems installed.
* common.mk (clean-local): keep $(PREP) files till distclean. * common.mk (check): do all tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8225 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fc3e402dde
commit
ba269b1976
16
ChangeLog
16
ChangeLog
@ -1,3 +1,11 @@
|
|||||||
|
Thu Mar 31 08:25:40 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* common.mk (RUBYOPT): clear for the environment RubyGems installed.
|
||||||
|
|
||||||
|
* common.mk (clean-local): keep $(PREP) files till distclean.
|
||||||
|
|
||||||
|
* common.mk (check): do all tests.
|
||||||
|
|
||||||
Thu Mar 31 06:00:20 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
Thu Mar 31 06:00:20 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* ext/openssl/ossl_engine.c (ossl_engine_s_load): should not raise
|
* ext/openssl/ossl_engine.c (ossl_engine_s_load): should not raise
|
||||||
@ -6,7 +14,7 @@ Thu Mar 31 06:00:20 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|||||||
|
|
||||||
Wed Mar 30 17:41:48 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
Wed Mar 30 17:41:48 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tk/tcltklib.c: add TclTkIp#_create_console() method to create
|
* ext/tk/tcltklib.c: add TclTkIp#_create_console() method to create
|
||||||
a Tcl/Tk's console window.
|
a Tcl/Tk's console window.
|
||||||
|
|
||||||
* ext/tk/lib/multi-tk.rb: support TclTkIp#_create_console() method.
|
* ext/tk/lib/multi-tk.rb: support TclTkIp#_create_console() method.
|
||||||
@ -29,9 +37,9 @@ Tue Mar 29 22:20:49 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
|||||||
Tue Mar 29 00:04:57 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
Tue Mar 29 00:04:57 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
||||||
|
|
||||||
* lib/drb/drb.rb: move method DRbObject#reinit to DRbObject.new_with.
|
* lib/drb/drb.rb: move method DRbObject#reinit to DRbObject.new_with.
|
||||||
extract method DRbObject.prepare_backtrace. add DRb.regist_server,
|
extract method DRbObject.prepare_backtrace. add DRb.regist_server,
|
||||||
remove_server, fetch_server. change server in thread variable if
|
remove_server, fetch_server. change server in thread variable if
|
||||||
in-proc sesrver. [druby-ja:113]
|
in-proc sesrver. [druby-ja:113]
|
||||||
|
|
||||||
* lib/drb/gw.rb: ditto.
|
* lib/drb/gw.rb: ditto.
|
||||||
|
|
||||||
|
@ -2,6 +2,8 @@ bin: $(PROGRAM) $(WPROGRAM)
|
|||||||
lib: $(LIBRUBY);
|
lib: $(LIBRUBY);
|
||||||
dll: $(LIBRUBY_SO);
|
dll: $(LIBRUBY_SO);
|
||||||
|
|
||||||
|
RUBYOPT =
|
||||||
|
|
||||||
EXTCONF = extconf.rb
|
EXTCONF = extconf.rb
|
||||||
RBCONFIG = ./.rbconfig.time
|
RBCONFIG = ./.rbconfig.time
|
||||||
|
|
||||||
@ -125,7 +127,7 @@ post-install-doc:: PHONY
|
|||||||
clean: clean-ext clean-local
|
clean: clean-ext clean-local
|
||||||
clean-local::
|
clean-local::
|
||||||
@$(RM) $(OBJS) $(MAINOBJ) $(WINMAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
@$(RM) $(OBJS) $(MAINOBJ) $(WINMAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY) $(LIBRUBY_ALIASES)
|
||||||
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(PREP) $(ARCHFILE)
|
@$(RM) $(PROGRAM) $(WPROGRAM) miniruby$(EXEEXT) dmyext.$(OBJEXT) $(ARCHFILE)
|
||||||
clean-ext:
|
clean-ext:
|
||||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) clean
|
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) clean
|
||||||
|
|
||||||
@ -133,13 +135,15 @@ distclean: distclean-ext distclean-local
|
|||||||
distclean-local:: clean-local
|
distclean-local:: clean-local
|
||||||
@$(RM) $(MKFILES) config.h rbconfig.rb
|
@$(RM) $(MKFILES) config.h rbconfig.rb
|
||||||
@$(RM) config.cache config.log config.status
|
@$(RM) config.cache config.log config.status
|
||||||
@$(RM) *~ *.bak *.stackdump core *.core gmon.out y.tab.c y.output ruby.imp
|
@$(RM) *~ *.bak *.stackdump core *.core gmon.out y.tab.c y.output $(PREP)
|
||||||
distclean-ext:
|
distclean-ext:
|
||||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) distclean
|
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) distclean
|
||||||
|
|
||||||
realclean:: distclean
|
realclean:: distclean
|
||||||
@$(RM) parse.c lex.c
|
@$(RM) parse.c lex.c
|
||||||
|
|
||||||
|
check: test test-all
|
||||||
|
|
||||||
test: miniruby$(EXEEXT) $(RBCONFIG) $(PROGRAM) PHONY
|
test: miniruby$(EXEEXT) $(RBCONFIG) $(PROGRAM) PHONY
|
||||||
@$(MINIRUBY) $(srcdir)/rubytest.rb
|
@$(MINIRUBY) $(srcdir)/rubytest.rb
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user