aboutsummaryrefslogtreecommitdiffstats
path: root/enc
diff options
context:
space:
mode:
Diffstat (limited to 'enc')
-rw-r--r--enc/depend2
-rw-r--r--enc/make_encmake.rb9
2 files changed, 9 insertions, 2 deletions
diff --git a/enc/depend b/enc/depend
index 8fc836daff..b115a8a426 100644
--- a/enc/depend
+++ b/enc/depend
@@ -1,4 +1,4 @@
-! encs = (Dir.open($srcdir) {|d| d.grep(/.+\.c\z/)} - CONFIG["BUILTIN_ENCS"].split).each {|e| e.chomp!(".c")}
+! encs = (Dir.open($srcdir) {|d| d.grep(/.+\.c\z/)} - BUILTIN_ENCS).each {|e| e.chomp!(".c")}
VPATH = <% %w[$(arch_hdrdir)/ruby $(hdrdir)/ruby $(top_srcdir) $(srcdir)].join(CONFIG["PATH_SEPARATOR"]) %>
diff --git a/enc/make_encmake.rb b/enc/make_encmake.rb
index 593f8ba626..c20920168c 100644
--- a/enc/make_encmake.rb
+++ b/enc/make_encmake.rb
@@ -7,6 +7,13 @@ $:.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"))
@@ -14,6 +21,6 @@ if File.exist?(depend = File.join($srcdir, "depend"))
eval(serb(File.read(depend), 'tmp'))
mkin << "\n#### depend ####\n\n" << depend_rules(tmp).join
end
-open(ARGV[0], 'w') {|f|
+open(ARGV[0], 'wb') {|f|
f.puts mkin
}