mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* common.mk (realclean): separate local and ext.
* ext/extmk.rb: not remove unrelated directories. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@12553 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5dae2fe2ea
commit
5cf53bcb01
3 changed files with 21 additions and 4 deletions
|
|
@ -1,3 +1,9 @@
|
|||
Fri Jun 15 22:33:29 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* common.mk (realclean): separate local and ext.
|
||||
|
||||
* ext/extmk.rb: not remove unrelated directories.
|
||||
|
||||
Fri Jun 15 17:01:20 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* ext/dl/lib/dl/win32.rb: seems that dl doesn't accept void argument.
|
||||
|
|
|
|||
|
|
@ -279,8 +279,11 @@ distclean-local:: clean-local
|
|||
distclean-ext:
|
||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) distclean
|
||||
|
||||
realclean:: distclean
|
||||
realclean:: realclean-ext realclean-local
|
||||
realclean-local:: distclean-local
|
||||
@$(RM) parse.c lex.c
|
||||
realclean-ext::
|
||||
@-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) realclean
|
||||
|
||||
check: test test-all
|
||||
|
||||
|
|
|
|||
14
ext/extmk.rb
14
ext/extmk.rb
|
|
@ -294,9 +294,9 @@ parse_args()
|
|||
|
||||
if target = ARGV.shift and /^[a-z-]+$/ =~ target
|
||||
$mflags.push(target)
|
||||
target = target.sub(/^(dist|real)(?=(?:clean)?$)/, '')
|
||||
case target
|
||||
when /clean/
|
||||
when /^(dist|real)?(clean)$/
|
||||
target = $2
|
||||
$ignore ||= true
|
||||
$clean = $1 ? $1[0] : true
|
||||
when /^install\b/
|
||||
|
|
@ -421,7 +421,15 @@ if $ignore
|
|||
Dir.chdir ".."
|
||||
if $clean
|
||||
Dir.rmdir('ext') rescue nil
|
||||
FileUtils.rm_rf(extout) if $extout
|
||||
if $extout
|
||||
FileUtils.rm_rf([extout+"/common", extout+"/include/ruby"])
|
||||
FileUtils.rm_rf(extout+"/"+CONFIG["arch"])
|
||||
if $clean != true
|
||||
FileUtils.rm_rf(extout+"/include/"+CONFIG["arch"])
|
||||
Dir.rmdir(extout+"/include") rescue nil
|
||||
Dir.rmdir(extout) rescue nil
|
||||
end
|
||||
end
|
||||
end
|
||||
exit
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue