diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-04-05 07:46:29 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-04-05 07:46:29 +0000 |
commit | c3f2cc5335bdb6eb858a499054db07d2a8bf2387 (patch) | |
tree | f47cb58b893c6ab31488f23bff6d9b42bb7b8008 /ext/-test-/win32/dln | |
parent | d0536f651414556b2e7836bc4adcb1ff27fa6547 (diff) |
ext/-test-/win32/dln: remove static library
* ext/-test-/win32/dln/extconf.rb: remove static library too at clean.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40120 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/-test-/win32/dln')
-rw-r--r-- | ext/-test-/win32/dln/extconf.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/-test-/win32/dln/extconf.rb b/ext/-test-/win32/dln/extconf.rb index 0b5089af14..57cee23b40 100644 --- a/ext/-test-/win32/dln/extconf.rb +++ b/ext/-test-/win32/dln/extconf.rb @@ -2,6 +2,7 @@ if $mingw or $mswin $objs = ["dlntest.o"] testdll = "$(topdir)/dlntest.dll" $cleanfiles << testdll + $cleanfiles << "dlntest.#{$LIBEXT}" config_string('cleanobjs') {|t| $cleanfiles.concat(t.gsub(/\$\*/, 'dlntest').split)} create_makefile("-test-/win32/dln") |