Skip to content

Commit

Permalink
Clean up files auto-generated for plblockimp trampolines in rake clean
Browse files Browse the repository at this point in the history
  • Loading branch information
macrotis committed May 25, 2012
1 parent 5bf56cf commit 78a1270
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions rakelib/builder.rake
Expand Up @@ -246,6 +246,15 @@ namespace :clean do
list = ['parse.c', 'lex.c', INSTALLED_LIST, 'Makefile', RUBY_INSTALL_NAME, 'miniruby', 'kernel_data.c']
list.concat(Dir['*.inc'])
list.concat(Dir['lib*.{dylib,a}'])
list.concat(Dir['plblockimp/*.o'])
ARCHS.each do |a|
plbi_s_t = "plblockimp/blockimp_#{a}"
['', '_stret'].each do |x|
['.h', '_config.c', '.s'].each do |y|
list << plbi_s_t + x + y
end
end
end
list.each { |x| rm_f(x) }
end

Expand Down

0 comments on commit 78a1270

Please sign in to comment.