diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-05-24 16:52:00 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-05-24 16:52:00 +0000 |
| commit | 9ac4aa09c0b80665688c438be8ce525774444172 (patch) | |
| tree | f12bc4f4a80dd67952dfc212f466af955bb92e10 /lib | |
| parent | bd1c1434dd1c976bc3b71a6fb557c426f1bc45ac (diff) | |
| download | ruby-9ac4aa09c0b80665688c438be8ce525774444172.tar.gz ruby-9ac4aa09c0b80665688c438be8ce525774444172.tar.xz ruby-9ac4aa09c0b80665688c438be8ce525774444172.zip | |
* mkconfig.rb: merge multiple entries to an entry with multiple lines.
* lib/mkmf.rb: allow a series of commands to link.
* win32/Makefile.sub: embed manifests.
* win32/setup.mak: suffix OS name by runtime version.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/mkmf.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 7ab4b52e5..412ecd691 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1189,10 +1189,11 @@ site-install-rb: install-rb end mfile.print "$(RUBYARCHDIR)/" if $extout - mfile.print "$(DLLIB): ", (makedef ? "$(DEFFILE) " : ""), "$(OBJS)\n\t" - mfile.print "@-$(RM) $@\n\t" - mfile.print "@-$(MAKEDIRS) $(@D)\n\t" if $extout - mfile.print LINK_SO, "\n\n" + mfile.print "$(DLLIB): ", (makedef ? "$(DEFFILE) " : ""), "$(OBJS)\n" + mfile.print "\t@-$(RM) $@\n" + mfile.print "\t@-$(MAKEDIRS) $(@D)\n" if $extout + link_so = LINK_SO.gsub(/^/, "\t") + mfile.print link_so, "\n\n" unless $static.nil? mfile.print "$(STATIC_LIB): $(OBJS)\n\t" mfile.print "$(AR) #{config_string('ARFLAGS') || 'cru '}$@ $(OBJS)" |
