diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-11 08:02:04 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-11 08:02:04 +0000 |
commit | 86c6af5873ae218a3fa92aed419de5b92653b9fb (patch) | |
tree | 40149bab7e1444f3ce2cd9517fede590dee6e4f1 /Makefile.in | |
parent | 81930da895afee14918490b072593860cb12d09b (diff) | |
download | ruby-86c6af5873ae218a3fa92aed419de5b92653b9fb.tar.gz |
* marshal.c (w_object): module inclusion using extend() should
also be detected.
* eval.c (rb_eval_cmd): cbase should not be NULL; it should be
either ruby_wrapper or Object.
* enum.c (enum_each_with_index): should return self.
* process.c (proc_setpgrp): should return value for non-void function.
* process.c (proc_getpgid): should raise exception if getpgid() return -1.
* string.c (rb_str_ljust): should return a duplicated string.
* string.c (rb_str_rjust): ditto.
* string.c (rb_str_center): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2172 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index a7f1afd142..5fad5c3a47 100644 --- a/Makefile.in +++ b/Makefile.in @@ -109,20 +109,23 @@ install: rbconfig.rb clean-ext:; @-@MINIRUBY@ -Cext extmk.rb clean 2> /dev/null || true -clean: clean-ext +clean-local: @rm -f $(OBJS) $(MAINOBJ) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY_ALIASES) @rm -f ext/extinit.c ext/extinit.@OBJEXT@ dmyext.@OBJEXT@ - @-@MINIRUBY@ -Cext extmk.rb clean 2> /dev/null || true @rm -f $(PROGRAM) miniruby$(EXEEXT) +clean: clean-ext clean-local + distclean-ext: @-@MINIRUBY@ -Cext extmk.rb distclean 2> /dev/null || true -distclean: distclean-ext clean +distclean-local: clean-local @rm -f Makefile ext/extmk.rb config.h rbconfig.rb @rm -f ext/config.cache config.cache config.log config.status @rm -f *~ core *.core gmon.out y.tab.c y.output ruby.imp +distclean: distclean-ext distclean-local + realclean: distclean @rm -f parse.c @rm -f lex.c |