diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-04-17 04:55:07 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-04-17 04:55:07 +0000 |
commit | 854a6e47a5eeabd177f23dae121c07e36c9eab38 (patch) | |
tree | 4221566fe4ec92514af081a2f8aa181e6218d9b3 /ext/-test- | |
parent | 68bf309945986fd2d4ad8ee9b266a53bf4f371f0 (diff) |
* ext/-test-/win32/dln/extconf.rb: add test dll files to cleanfiles.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/-test-')
-rw-r--r-- | ext/-test-/win32/dln/extconf.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/-test-/win32/dln/extconf.rb b/ext/-test-/win32/dln/extconf.rb index fb3e7cc508..06dbbecff3 100644 --- a/ext/-test-/win32/dln/extconf.rb +++ b/ext/-test-/win32/dln/extconf.rb @@ -1,5 +1,7 @@ if /mswin|mingw/ =~ RUBY_PLATFORM $objs = ["dlntest.o"] + $cleanfiles << "$(topdir)/dlntest.dll" + $cleanfiles.concat(config_string('cleanobjs') {|t| t.gsub(/\$\*/, 'dlntest')}.split) create_makefile("-test-/win32/dln") m = File.read("Makefile") |