mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
c611b6d0cc
* common.mk (enc.mk): pass BUILTIN_ENCS from command line. * enc/depend: ditto. * enc/make_encmake.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14281 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
26 lines
618 B
Ruby
26 lines
618 B
Ruby
#! ./miniruby
|
|
|
|
dir = File.expand_path("../..", __FILE__)
|
|
$:.unshift(File.join(dir, "lib"))
|
|
$:.unshift(dir)
|
|
$:.unshift(".")
|
|
require 'mkmf'
|
|
require 'tool/serb'
|
|
|
|
if /--builtin-encs=/ =~ ARGV[0]
|
|
BUILTIN_ENCS = $'.split.each {|e| e.sub!(/(?:\.\w+)?\z/, '.c')}
|
|
ARGV.shift
|
|
else
|
|
BUILTIN_ENCS = []
|
|
end
|
|
|
|
mkin = File.read(File.join($srcdir, "Makefile.in"))
|
|
mkin.gsub!(/@(#{CONFIG.keys.join('|')})@/) {CONFIG[$1]}
|
|
if File.exist?(depend = File.join($srcdir, "depend"))
|
|
tmp = ''
|
|
eval(serb(File.read(depend), 'tmp'))
|
|
mkin << "\n#### depend ####\n\n" << depend_rules(tmp).join
|
|
end
|
|
open(ARGV[0], 'wb') {|f|
|
|
f.puts mkin
|
|
}
|