2012-08-18 04:57:48 +04:00
|
|
|
% inplace = File.identical?($top_srcdir, ".")
|
2010-12-21 06:45:21 +03:00
|
|
|
% workdirs = %w"$(ENCSODIR) $(TRANSSODIR) enc enc/trans"
|
|
|
|
% CONFIG["WORKDIRS"] = workdirs.join(' ')
|
2008-11-17 12:05:19 +03:00
|
|
|
% enable_shared = CONFIG['ENABLE_SHARED'] == 'yes'
|
2007-12-24 06:49:56 +03:00
|
|
|
% deffile = (true if /\$\(DEFFILE\)/ =~ CONFIG["LINK_SO"])
|
2012-05-16 09:39:06 +04:00
|
|
|
% dependencies = ENCS + TRANS
|
2008-08-07 09:17:34 +04:00
|
|
|
% cleanlibs = Shellwords.shellwords(CONFIG["cleanlibs"] || "")
|
|
|
|
% cleanobjs = Shellwords.shellwords(CONFIG["cleanobjs"] || "")
|
2009-01-27 05:03:54 +03:00
|
|
|
% cleanobjs << "$*.def" if deffile
|
2008-08-07 09:17:34 +04:00
|
|
|
% rule_subst = CONFIG["RULE_SUBST"] || "%s"
|
2008-08-12 09:25:14 +04:00
|
|
|
% transvpath = rule_subst.dup.sub!(/\{[^{}]+\}/, '$(TRANSVPATH)/') || "enc/trans/%s"
|
2012-09-10 05:20:16 +04:00
|
|
|
% transvpath_prefix = (rule_subst.dup.sub!(/\{[^{}]+\}/, '{$(TRANSVPATH)}') || "%s") % ""
|
2013-02-25 10:59:10 +04:00
|
|
|
% CONFIG['ARFLAGS'] = 'rcu ' if (CONFIG['ARFLAGS'] || "").empty?
|
|
|
|
% CONFIG['RANLIB'] = ':' if (CONFIG['RANLIB'] || "").empty?
|
2013-03-02 19:04:23 +04:00
|
|
|
% CONFIG['CPPFLAGS'] += " -DRUBY_EXPORT=1" if CONFIG["EXTSTATIC"] == "static"
|
2008-08-07 09:17:34 +04:00
|
|
|
% if File::ALT_SEPARATOR
|
2008-08-10 06:45:18 +04:00
|
|
|
% pathrep = proc {|path| path.gsub('/', File::ALT_SEPARATOR).gsub(/\$\(([@<?*]\w?|\w+)\)/, "$(\\1:/=\\#{File::ALT_SEPARATOR})")}
|
2008-08-07 09:17:34 +04:00
|
|
|
% else
|
|
|
|
% pathrep = proc {|path| path}
|
|
|
|
% end
|
2007-12-24 06:49:56 +03:00
|
|
|
|
|
|
|
VPATH = <%=%w[$(arch_hdrdir)/ruby $(hdrdir)/ruby $(srcdir) $(encsrcdir)].join(CONFIG["PATH_SEPARATOR"])%>
|
2007-12-22 21:35:53 +03:00
|
|
|
LIBPATH = <%=libpathflag($DEFLIBPATH)%>
|
2008-11-17 12:05:19 +03:00
|
|
|
LIBS = <%=
|
|
|
|
if enable_shared or RbConfig.expand(CONFIG["LIBRUBY"].dup) != RbConfig.expand(CONFIG["LIBRUBY_A"].dup)
|
|
|
|
CONFIG['LIBRUBYARG']
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end %> <%=CONFIG['LIBS']%> $(EXTLIBS)
|
2007-12-17 19:15:46 +03:00
|
|
|
|
2012-05-16 09:39:06 +04:00
|
|
|
ENCOBJS = <%=ENCS.map {|e|"enc/#{e}.$(OBJEXT)"}.join(" \\\n\t ")%><%="\n" if ENCS.size>1%>
|
|
|
|
ENCSOS = <%=ENCS.map {|e|"$(ENCSODIR)/#{e}.$(DLEXT)"}.join(" \\\n\t ")%><%="\n" if ENCS.size>1%>
|
2008-08-07 09:17:34 +04:00
|
|
|
ENCCLEANLIBS = <%=cleanlibs.map {|clean|
|
|
|
|
clean.gsub(/\$\*(\.\w+)?/) {"$(ENCOBJS#{$1 ? ":.#{CONFIG["OBJEXT"]}=#{$1}" : ""})"}
|
|
|
|
}.join(" ")%>
|
|
|
|
ENCCLEANOBJS = <%=cleanobjs.map {|clean|
|
|
|
|
clean.gsub(/\$\*(\.\w+)?/) {"$(ENCOBJS#{$1 ? ":.#{CONFIG["OBJEXT"]}=#{$1}" : ""})"}
|
|
|
|
}.join(" ")%>
|
2012-05-16 09:39:06 +04:00
|
|
|
LIBENC=enc/libenc.$(LIBEXT)
|
2007-12-17 19:15:46 +03:00
|
|
|
|
2008-08-12 09:25:14 +04:00
|
|
|
TRANSVPATH = $(srcdir)/enc/trans
|
|
|
|
|
2012-05-16 09:39:06 +04:00
|
|
|
TRANSCSRCS = <%=ATRANS.map {|e| transvpath % "#{e}.c"}.join(" \\\n\t ")%><%="\n" if TRANS.size>1%>
|
|
|
|
TRANSOBJS = <%=TRANS.map {|e|"enc/#{e}.$(OBJEXT)"}.join(" \\\n\t ")%><%="\n" if TRANS.size>1%>
|
|
|
|
TRANSSOS = <%=TRANS.map {|e|"$(ENCSODIR)/#{e}.$(DLEXT)"}.join(" \\\n\t ")%><%="\n" if TRANS.size>1%>
|
2008-08-07 09:17:34 +04:00
|
|
|
TRANSCLEANLIBS = <%=cleanlibs.map {|clean|
|
|
|
|
clean.gsub(/\$\*(\.\w+)?/) {"$(TRANSOBJS#{$1 ? ":.#{CONFIG["OBJEXT"]}=#{$1}" : ""})"}
|
|
|
|
}.join(" ")%>
|
|
|
|
TRANSCLEANOBJS = <%=cleanobjs.map {|clean|
|
|
|
|
clean.gsub(/\$\*(\.\w+)?/) {"$(TRANSOBJS#{$1 ? ":.#{CONFIG["OBJEXT"]}=#{$1}" : ""})"}
|
|
|
|
}.join(" ")%>
|
2012-05-16 09:39:06 +04:00
|
|
|
LIBTRANS=enc/libtrans.$(LIBEXT)
|
2007-12-24 06:49:56 +03:00
|
|
|
|
2008-10-16 09:34:25 +04:00
|
|
|
encs: all
|
2012-05-16 09:39:06 +04:00
|
|
|
% if MODULE_TYPE == :static
|
|
|
|
all: libenc libtrans
|
|
|
|
% else
|
2008-10-16 09:34:25 +04:00
|
|
|
all: enc trans
|
2012-05-16 09:39:06 +04:00
|
|
|
%end
|
|
|
|
libencs: libenc libtrans
|
2008-10-16 09:34:25 +04:00
|
|
|
enc: $(ENCSOS)
|
2012-05-16 09:39:06 +04:00
|
|
|
libenc: $(LIBENC)
|
2008-10-16 09:34:25 +04:00
|
|
|
trans: $(TRANSSOS)
|
2012-05-16 09:39:06 +04:00
|
|
|
libtrans: $(LIBTRANS)
|
|
|
|
|
|
|
|
$(LIBENC): $(ENCOBJS)
|
|
|
|
@$(RM) $@
|
|
|
|
$(ECHO) linking statically-linked encoding library $@
|
2013-02-25 10:47:23 +04:00
|
|
|
$(Q) $(AR) $(ARFLAGS)$@ $(ENCOBJS)
|
2012-05-16 09:39:06 +04:00
|
|
|
@-$(RANLIB) $@ 2> /dev/null || true
|
|
|
|
$(LIBTRANS): $(TRANSOBJS)
|
|
|
|
@$(RM) $@
|
|
|
|
$(ECHO) linking statically-linked transcoder library $@
|
2013-02-25 10:47:23 +04:00
|
|
|
$(Q) $(AR) $(ARFLAGS)$@ $(TRANSOBJS)
|
2012-05-16 09:39:06 +04:00
|
|
|
@-$(RANLIB) $@ 2> /dev/null || true
|
2008-08-06 09:40:13 +04:00
|
|
|
|
|
|
|
srcs: $(TRANSCSRCS)
|
2007-12-17 11:19:29 +03:00
|
|
|
|
2008-08-12 09:25:14 +04:00
|
|
|
<%=transvpath_prefix%>.trans<%=transvpath_prefix%>.c:
|
2010-11-11 15:46:23 +03:00
|
|
|
$(ECHO) generating table from $@
|
2010-12-29 14:27:36 +03:00
|
|
|
$(Q)$(MINIRUBY) "$(srcdir)/tool/transcode-tblgen.rb" -vo "$@" "$<"
|
2008-08-12 09:25:14 +04:00
|
|
|
|
2012-05-16 09:39:06 +04:00
|
|
|
% unless ENCS.empty? or TRANS.empty?
|
2007-12-17 19:15:46 +03:00
|
|
|
|
2012-05-21 07:11:28 +04:00
|
|
|
% ENC_DEPS.each do |e, deps|
|
|
|
|
enc/<%=e%>.$(OBJEXT): <%=deps.map {|n| rule_subst % n}.join(' ')%>
|
|
|
|
% end
|
2012-05-16 09:39:06 +04:00
|
|
|
% ATRANS.each do |e|
|
2008-08-11 11:39:52 +04:00
|
|
|
% src = "#{e}.trans"
|
2008-08-05 22:15:52 +04:00
|
|
|
|
2008-08-12 09:25:14 +04:00
|
|
|
<%=transvpath % "#{e}.c"%>: <%= transvpath % "#{e}.trans"%>
|
|
|
|
% src = [*IO.read(File.join($srcdir, "trans", src)).scan(/^\s*require\s+[\'\"]([^\'\"]*)/).flatten.map{|c|c+".rb"}]
|
2012-02-25 11:08:47 +04:00
|
|
|
<%=transvpath % "#{e}.c"%>: <%= src.map {|s| transvpath % "#{s}"}.join(" ")%> $(srcdir)/tool/transcode-tblgen.rb
|
2008-08-05 22:15:52 +04:00
|
|
|
% end
|
2007-12-22 21:35:53 +03:00
|
|
|
|
|
|
|
% end
|
2012-12-10 08:32:11 +04:00
|
|
|
% link_so = LINK_SO.gsub(/([^\\])\n/, "\\1\n$(Q) ").gsub(/\n/, "\n\t")
|
2007-12-24 06:49:56 +03:00
|
|
|
% link_so.gsub!(/(-(?:implib|pdb):\S+)-\$\(arch\)\./, '\1.')
|
|
|
|
% dependencies.each do |e|
|
|
|
|
% obj = "enc/#{e}.$(OBJEXT)"
|
|
|
|
% df = ("enc/#{e}.def" if deffile)
|
2010-11-11 15:46:23 +03:00
|
|
|
% target = e.dup
|
|
|
|
% if target.sub!(/\Atrans\//, '$(TRANSSODIR)/')
|
|
|
|
% mesg = "transcoder"
|
|
|
|
% else
|
|
|
|
% target = "$(ENCSODIR)/#{e}"
|
|
|
|
% mesg = "encoding"
|
|
|
|
% end
|
|
|
|
<%=target%>.$(DLEXT): <%=obj%>
|
|
|
|
$(ECHO) linking <%=mesg%> $(@F)
|
2009-03-23 00:51:18 +03:00
|
|
|
% cmd = link_so.sub(/\$\(OBJS\)/) {obj}
|
|
|
|
% base = File.basename(e)
|
2007-12-24 06:49:56 +03:00
|
|
|
% if df
|
2010-12-29 14:27:36 +03:00
|
|
|
$(Q)echo> <%=df%> EXPORTS
|
|
|
|
$(Q)echo>> <%=df%> <%=EXPORT_PREFIX%>Init_<%=base%>
|
2009-03-23 00:51:18 +03:00
|
|
|
% cmd.sub!(/\$\(DEFFILE\)/) {df}
|
|
|
|
% cmd.gsub!(/-(?:implib|pdb):/) {|s|"#{s}enc/#{e.sub(/[^\/]+\z/, '')}"}
|
2007-12-22 21:35:53 +03:00
|
|
|
% end
|
2010-12-29 14:27:36 +03:00
|
|
|
$(Q)$(MAKEDIRS) "$(@D)"
|
|
|
|
$(Q)<%=cmd%>
|
2007-12-24 06:49:56 +03:00
|
|
|
|
2007-12-22 21:35:53 +03:00
|
|
|
% end
|
2007-12-24 06:49:56 +03:00
|
|
|
% dependencies.each do |e|
|
2009-01-30 08:13:22 +03:00
|
|
|
<%="enc/#{e}.$(OBJEXT)"%>: <%="$(encsrcdir)/#{e}.c"%>
|
2010-12-29 14:27:36 +03:00
|
|
|
-$(Q)$(MAKEDIRS) "$(@D)"
|
2011-06-16 04:10:10 +04:00
|
|
|
$(ECHO) compiling <%= "$(encsrcdir)/#{e}.c"%>
|
2010-12-29 14:27:36 +03:00
|
|
|
$(Q)<%=COMPILE_C.gsub(/\$(\()?<(\:[^)]+)?(\))?/){"$(encsrcdir)/#{e}.c"}%>
|
2009-01-30 08:13:22 +03:00
|
|
|
|
2007-12-22 21:35:53 +03:00
|
|
|
% end
|
2007-12-19 20:23:24 +03:00
|
|
|
|
2008-04-07 10:51:33 +04:00
|
|
|
enc/encdb.$(OBJEXT): encdb.h
|
|
|
|
enc/trans/transdb.$(OBJEXT): transdb.h
|
|
|
|
|
2007-12-19 20:23:24 +03:00
|
|
|
clean:
|
2012-05-16 09:39:06 +04:00
|
|
|
% %w[$(ENCSOS) $(LIBENC) $(ENCOBJS) $(ENCCLEANOBJS) $(ENCCLEANLIBS) $(TRANSSOS) $(LIBTRANS) $(TRANSOBJS) $(TRANSCLEANOBJS) $(TRANSCLEANLIBS)].each do |clean|
|
2010-12-29 14:27:36 +03:00
|
|
|
$(Q)$(RM) <%=pathrep[clean]%>
|
2008-08-07 09:17:34 +04:00
|
|
|
% end
|
2010-08-06 12:44:33 +04:00
|
|
|
% @ignore_error = $nmake ? '' : ' 2> /dev/null || true'
|
2010-12-29 14:31:23 +03:00
|
|
|
% unless inplace
|
|
|
|
$(Q)$(RM) enc/unicode/name2ctype.h
|
2014-05-22 09:02:15 +04:00
|
|
|
$(Q)$(RM) enc/jis/props.h
|
2010-12-29 14:31:23 +03:00
|
|
|
-$(Q)$(RMDIR) enc/unicode<%=@ignore_error%>
|
|
|
|
% end
|
2012-02-25 11:08:47 +04:00
|
|
|
% workdirs.reverse_each do|d|
|
|
|
|
-$(Q)$(RMDIR) <%=pathrep[d]%><%=@ignore_error%>
|
2008-12-08 18:17:52 +03:00
|
|
|
% end
|
|
|
|
|
|
|
|
clean-srcs:
|
2010-12-29 14:27:36 +03:00
|
|
|
$(Q)$(RM) <%=pathrep['$(TRANSCSRCS)']%>
|
|
|
|
-$(Q)$(RMDIR) <%=pathrep['enc/trans']%><%=@ignore_error%>
|
|
|
|
$(Q)$(RM) enc/unicode/name2ctype.h
|
2014-05-22 09:02:15 +04:00
|
|
|
$(Q)$(RM) enc/jis/props.h
|
2010-12-29 14:27:36 +03:00
|
|
|
-$(Q)$(RMDIR) <%=pathrep['enc/unicode']%><%=@ignore_error%>
|
2014-05-22 09:02:15 +04:00
|
|
|
-$(Q)$(RMDIR) <%=pathrep['enc/props']%><%=@ignore_error%>
|
2010-12-29 14:27:36 +03:00
|
|
|
-$(Q)$(RMDIR) <%=pathrep['enc']%><%=@ignore_error%>
|
2012-05-16 09:39:06 +04:00
|
|
|
|
|
|
|
<%# vim: set ft=eruby noexpandtab ts=8 sw=2 : -%>
|
2014-11-15 08:15:49 +03:00
|
|
|
|
|
|
|
enc/euc_jp.$(OBJEXT): enc/jis/props.kwd # enc/euc_jp.o: enc/jis/props.kwd
|
|
|
|
enc/shift_jis.$(OBJEXT): enc/jis/props.kwd # enc/shift_jis.o: enc/jis/props.kwd
|
|
|
|
enc/windows_31j.$(OBJEXT): enc/jis/props.kwd # enc/windows_31j.o: enc/jis/props.kwd
|
|
|
|
enc/big5.$(OBJEXT): $(top_srcdir)/regenc.h # enc/big5.o: regenc.h
|
|
|
|
enc/big5.$(OBJEXT): config.h # enc/big5.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/big5.$(OBJEXT): defines.h # enc/big5.o: include/ruby/defines.h
|
|
|
|
enc/big5.$(OBJEXT): missing.h # enc/big5.o: include/ruby/missing.h
|
|
|
|
enc/big5.$(OBJEXT): oniguruma.h # enc/big5.o: include/ruby/oniguruma.h
|
|
|
|
enc/cp949.$(OBJEXT): $(top_srcdir)/regenc.h # enc/cp949.o: regenc.h
|
|
|
|
enc/cp949.$(OBJEXT): config.h # enc/cp949.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/cp949.$(OBJEXT): defines.h # enc/cp949.o: include/ruby/defines.h
|
|
|
|
enc/cp949.$(OBJEXT): missing.h # enc/cp949.o: include/ruby/missing.h
|
|
|
|
enc/cp949.$(OBJEXT): oniguruma.h # enc/cp949.o: include/ruby/oniguruma.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): $(top_srcdir)/regenc.h # enc/emacs_mule.o: regenc.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): config.h # enc/emacs_mule.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): defines.h # enc/emacs_mule.o: include/ruby/defines.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): intern.h # enc/emacs_mule.o: include/ruby/intern.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): missing.h # enc/emacs_mule.o: include/ruby/missing.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): oniguruma.h # enc/emacs_mule.o: include/ruby/oniguruma.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/emacs_mule.o: include/ruby/ruby.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): st.h # enc/emacs_mule.o: include/ruby/st.h
|
|
|
|
enc/emacs_mule.$(OBJEXT): subst.h # enc/emacs_mule.o: include/ruby/subst.h
|
|
|
|
enc/euc_jp.$(OBJEXT): $(top_srcdir)/regenc.h # enc/euc_jp.o: regenc.h
|
|
|
|
enc/euc_jp.$(OBJEXT): config.h # enc/euc_jp.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/euc_jp.$(OBJEXT): defines.h # enc/euc_jp.o: include/ruby/defines.h
|
|
|
|
enc/euc_jp.$(OBJEXT): intern.h # enc/euc_jp.o: include/ruby/intern.h
|
|
|
|
enc/euc_jp.$(OBJEXT): missing.h # enc/euc_jp.o: include/ruby/missing.h
|
|
|
|
enc/euc_jp.$(OBJEXT): oniguruma.h # enc/euc_jp.o: include/ruby/oniguruma.h
|
|
|
|
enc/euc_jp.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/euc_jp.o: include/ruby/ruby.h
|
|
|
|
enc/euc_jp.$(OBJEXT): st.h # enc/euc_jp.o: include/ruby/st.h
|
|
|
|
enc/euc_jp.$(OBJEXT): subst.h # enc/euc_jp.o: include/ruby/subst.h
|
|
|
|
enc/euc_kr.$(OBJEXT): $(top_srcdir)/regenc.h # enc/euc_kr.o: regenc.h
|
|
|
|
enc/euc_kr.$(OBJEXT): config.h # enc/euc_kr.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/euc_kr.$(OBJEXT): defines.h # enc/euc_kr.o: include/ruby/defines.h
|
|
|
|
enc/euc_kr.$(OBJEXT): missing.h # enc/euc_kr.o: include/ruby/missing.h
|
|
|
|
enc/euc_kr.$(OBJEXT): oniguruma.h # enc/euc_kr.o: include/ruby/oniguruma.h
|
|
|
|
enc/euc_tw.$(OBJEXT): $(top_srcdir)/regenc.h # enc/euc_tw.o: regenc.h
|
|
|
|
enc/euc_tw.$(OBJEXT): config.h # enc/euc_tw.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/euc_tw.$(OBJEXT): defines.h # enc/euc_tw.o: include/ruby/defines.h
|
|
|
|
enc/euc_tw.$(OBJEXT): missing.h # enc/euc_tw.o: include/ruby/missing.h
|
|
|
|
enc/euc_tw.$(OBJEXT): oniguruma.h # enc/euc_tw.o: include/ruby/oniguruma.h
|
|
|
|
enc/gb18030.$(OBJEXT): $(top_srcdir)/regenc.h # enc/gb18030.o: regenc.h
|
|
|
|
enc/gb18030.$(OBJEXT): config.h # enc/gb18030.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/gb18030.$(OBJEXT): defines.h # enc/gb18030.o: include/ruby/defines.h
|
|
|
|
enc/gb18030.$(OBJEXT): missing.h # enc/gb18030.o: include/ruby/missing.h
|
|
|
|
enc/gb18030.$(OBJEXT): oniguruma.h # enc/gb18030.o: include/ruby/oniguruma.h
|
|
|
|
enc/gb2312.$(OBJEXT): $(top_srcdir)/regenc.h # enc/gb2312.o: regenc.h
|
|
|
|
enc/gb2312.$(OBJEXT): config.h # enc/gb2312.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/gb2312.$(OBJEXT): defines.h # enc/gb2312.o: include/ruby/defines.h
|
|
|
|
enc/gb2312.$(OBJEXT): encoding.h # enc/gb2312.o: include/ruby/encoding.h
|
|
|
|
enc/gb2312.$(OBJEXT): intern.h # enc/gb2312.o: include/ruby/intern.h
|
|
|
|
enc/gb2312.$(OBJEXT): missing.h # enc/gb2312.o: include/ruby/missing.h
|
|
|
|
enc/gb2312.$(OBJEXT): oniguruma.h # enc/gb2312.o: include/ruby/oniguruma.h
|
|
|
|
enc/gb2312.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/gb2312.o: include/ruby/ruby.h
|
|
|
|
enc/gb2312.$(OBJEXT): st.h # enc/gb2312.o: include/ruby/st.h
|
|
|
|
enc/gb2312.$(OBJEXT): subst.h # enc/gb2312.o: include/ruby/subst.h
|
|
|
|
enc/gbk.$(OBJEXT): $(top_srcdir)/regenc.h # enc/gbk.o: regenc.h
|
|
|
|
enc/gbk.$(OBJEXT): config.h # enc/gbk.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/gbk.$(OBJEXT): defines.h # enc/gbk.o: include/ruby/defines.h
|
|
|
|
enc/gbk.$(OBJEXT): missing.h # enc/gbk.o: include/ruby/missing.h
|
|
|
|
enc/gbk.$(OBJEXT): oniguruma.h # enc/gbk.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_1.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_1.o: regenc.h
|
|
|
|
enc/iso_8859_1.$(OBJEXT): config.h # enc/iso_8859_1.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_1.$(OBJEXT): defines.h # enc/iso_8859_1.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_1.$(OBJEXT): missing.h # enc/iso_8859_1.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_1.$(OBJEXT): oniguruma.h # enc/iso_8859_1.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_10.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_10.o: regenc.h
|
|
|
|
enc/iso_8859_10.$(OBJEXT): config.h # enc/iso_8859_10.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_10.$(OBJEXT): defines.h # enc/iso_8859_10.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_10.$(OBJEXT): missing.h # enc/iso_8859_10.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_10.$(OBJEXT): oniguruma.h # enc/iso_8859_10.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_11.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_11.o: regenc.h
|
|
|
|
enc/iso_8859_11.$(OBJEXT): config.h # enc/iso_8859_11.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_11.$(OBJEXT): defines.h # enc/iso_8859_11.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_11.$(OBJEXT): missing.h # enc/iso_8859_11.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_11.$(OBJEXT): oniguruma.h # enc/iso_8859_11.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_13.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_13.o: regenc.h
|
|
|
|
enc/iso_8859_13.$(OBJEXT): config.h # enc/iso_8859_13.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_13.$(OBJEXT): defines.h # enc/iso_8859_13.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_13.$(OBJEXT): missing.h # enc/iso_8859_13.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_13.$(OBJEXT): oniguruma.h # enc/iso_8859_13.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_14.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_14.o: regenc.h
|
|
|
|
enc/iso_8859_14.$(OBJEXT): config.h # enc/iso_8859_14.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_14.$(OBJEXT): defines.h # enc/iso_8859_14.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_14.$(OBJEXT): missing.h # enc/iso_8859_14.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_14.$(OBJEXT): oniguruma.h # enc/iso_8859_14.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_15.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_15.o: regenc.h
|
|
|
|
enc/iso_8859_15.$(OBJEXT): config.h # enc/iso_8859_15.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_15.$(OBJEXT): defines.h # enc/iso_8859_15.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_15.$(OBJEXT): missing.h # enc/iso_8859_15.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_15.$(OBJEXT): oniguruma.h # enc/iso_8859_15.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_16.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_16.o: regenc.h
|
|
|
|
enc/iso_8859_16.$(OBJEXT): config.h # enc/iso_8859_16.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_16.$(OBJEXT): defines.h # enc/iso_8859_16.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_16.$(OBJEXT): missing.h # enc/iso_8859_16.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_16.$(OBJEXT): oniguruma.h # enc/iso_8859_16.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_2.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_2.o: regenc.h
|
|
|
|
enc/iso_8859_2.$(OBJEXT): config.h # enc/iso_8859_2.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_2.$(OBJEXT): defines.h # enc/iso_8859_2.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_2.$(OBJEXT): missing.h # enc/iso_8859_2.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_2.$(OBJEXT): oniguruma.h # enc/iso_8859_2.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_3.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_3.o: regenc.h
|
|
|
|
enc/iso_8859_3.$(OBJEXT): config.h # enc/iso_8859_3.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_3.$(OBJEXT): defines.h # enc/iso_8859_3.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_3.$(OBJEXT): missing.h # enc/iso_8859_3.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_3.$(OBJEXT): oniguruma.h # enc/iso_8859_3.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_4.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_4.o: regenc.h
|
|
|
|
enc/iso_8859_4.$(OBJEXT): config.h # enc/iso_8859_4.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_4.$(OBJEXT): defines.h # enc/iso_8859_4.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_4.$(OBJEXT): missing.h # enc/iso_8859_4.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_4.$(OBJEXT): oniguruma.h # enc/iso_8859_4.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_5.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_5.o: regenc.h
|
|
|
|
enc/iso_8859_5.$(OBJEXT): config.h # enc/iso_8859_5.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_5.$(OBJEXT): defines.h # enc/iso_8859_5.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_5.$(OBJEXT): missing.h # enc/iso_8859_5.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_5.$(OBJEXT): oniguruma.h # enc/iso_8859_5.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_6.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_6.o: regenc.h
|
|
|
|
enc/iso_8859_6.$(OBJEXT): config.h # enc/iso_8859_6.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_6.$(OBJEXT): defines.h # enc/iso_8859_6.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_6.$(OBJEXT): missing.h # enc/iso_8859_6.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_6.$(OBJEXT): oniguruma.h # enc/iso_8859_6.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_7.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_7.o: regenc.h
|
|
|
|
enc/iso_8859_7.$(OBJEXT): config.h # enc/iso_8859_7.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_7.$(OBJEXT): defines.h # enc/iso_8859_7.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_7.$(OBJEXT): missing.h # enc/iso_8859_7.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_7.$(OBJEXT): oniguruma.h # enc/iso_8859_7.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_8.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_8.o: regenc.h
|
|
|
|
enc/iso_8859_8.$(OBJEXT): config.h # enc/iso_8859_8.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_8.$(OBJEXT): defines.h # enc/iso_8859_8.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_8.$(OBJEXT): missing.h # enc/iso_8859_8.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_8.$(OBJEXT): oniguruma.h # enc/iso_8859_8.o: include/ruby/oniguruma.h
|
|
|
|
enc/iso_8859_9.$(OBJEXT): $(top_srcdir)/regenc.h # enc/iso_8859_9.o: regenc.h
|
|
|
|
enc/iso_8859_9.$(OBJEXT): config.h # enc/iso_8859_9.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/iso_8859_9.$(OBJEXT): defines.h # enc/iso_8859_9.o: include/ruby/defines.h
|
|
|
|
enc/iso_8859_9.$(OBJEXT): missing.h # enc/iso_8859_9.o: include/ruby/missing.h
|
|
|
|
enc/iso_8859_9.$(OBJEXT): oniguruma.h # enc/iso_8859_9.o: include/ruby/oniguruma.h
|
|
|
|
enc/koi8_r.$(OBJEXT): $(top_srcdir)/regenc.h # enc/koi8_r.o: regenc.h
|
|
|
|
enc/koi8_r.$(OBJEXT): config.h # enc/koi8_r.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/koi8_r.$(OBJEXT): defines.h # enc/koi8_r.o: include/ruby/defines.h
|
|
|
|
enc/koi8_r.$(OBJEXT): missing.h # enc/koi8_r.o: include/ruby/missing.h
|
|
|
|
enc/koi8_r.$(OBJEXT): oniguruma.h # enc/koi8_r.o: include/ruby/oniguruma.h
|
|
|
|
enc/koi8_u.$(OBJEXT): $(top_srcdir)/regenc.h # enc/koi8_u.o: regenc.h
|
|
|
|
enc/koi8_u.$(OBJEXT): config.h # enc/koi8_u.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/koi8_u.$(OBJEXT): defines.h # enc/koi8_u.o: include/ruby/defines.h
|
|
|
|
enc/koi8_u.$(OBJEXT): missing.h # enc/koi8_u.o: include/ruby/missing.h
|
|
|
|
enc/koi8_u.$(OBJEXT): oniguruma.h # enc/koi8_u.o: include/ruby/oniguruma.h
|
|
|
|
enc/shift_jis.$(OBJEXT): $(top_srcdir)/regenc.h # enc/shift_jis.o: regenc.h
|
|
|
|
enc/shift_jis.$(OBJEXT): config.h # enc/shift_jis.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/shift_jis.$(OBJEXT): defines.h # enc/shift_jis.o: include/ruby/defines.h
|
|
|
|
enc/shift_jis.$(OBJEXT): intern.h # enc/shift_jis.o: include/ruby/intern.h
|
|
|
|
enc/shift_jis.$(OBJEXT): missing.h # enc/shift_jis.o: include/ruby/missing.h
|
|
|
|
enc/shift_jis.$(OBJEXT): oniguruma.h # enc/shift_jis.o: include/ruby/oniguruma.h
|
|
|
|
enc/shift_jis.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/shift_jis.o: include/ruby/ruby.h
|
|
|
|
enc/shift_jis.$(OBJEXT): st.h # enc/shift_jis.o: include/ruby/st.h
|
|
|
|
enc/shift_jis.$(OBJEXT): subst.h # enc/shift_jis.o: include/ruby/subst.h
|
|
|
|
enc/utf_16be.$(OBJEXT): $(top_srcdir)/regenc.h # enc/utf_16be.o: regenc.h
|
|
|
|
enc/utf_16be.$(OBJEXT): config.h # enc/utf_16be.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/utf_16be.$(OBJEXT): defines.h # enc/utf_16be.o: include/ruby/defines.h
|
|
|
|
enc/utf_16be.$(OBJEXT): missing.h # enc/utf_16be.o: include/ruby/missing.h
|
|
|
|
enc/utf_16be.$(OBJEXT): oniguruma.h # enc/utf_16be.o: include/ruby/oniguruma.h
|
|
|
|
enc/utf_16le.$(OBJEXT): $(top_srcdir)/regenc.h # enc/utf_16le.o: regenc.h
|
|
|
|
enc/utf_16le.$(OBJEXT): config.h # enc/utf_16le.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/utf_16le.$(OBJEXT): defines.h # enc/utf_16le.o: include/ruby/defines.h
|
|
|
|
enc/utf_16le.$(OBJEXT): missing.h # enc/utf_16le.o: include/ruby/missing.h
|
|
|
|
enc/utf_16le.$(OBJEXT): oniguruma.h # enc/utf_16le.o: include/ruby/oniguruma.h
|
|
|
|
enc/utf_32be.$(OBJEXT): $(top_srcdir)/regenc.h # enc/utf_32be.o: regenc.h
|
|
|
|
enc/utf_32be.$(OBJEXT): config.h # enc/utf_32be.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/utf_32be.$(OBJEXT): defines.h # enc/utf_32be.o: include/ruby/defines.h
|
|
|
|
enc/utf_32be.$(OBJEXT): missing.h # enc/utf_32be.o: include/ruby/missing.h
|
|
|
|
enc/utf_32be.$(OBJEXT): oniguruma.h # enc/utf_32be.o: include/ruby/oniguruma.h
|
|
|
|
enc/utf_32le.$(OBJEXT): $(top_srcdir)/regenc.h # enc/utf_32le.o: regenc.h
|
|
|
|
enc/utf_32le.$(OBJEXT): config.h # enc/utf_32le.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/utf_32le.$(OBJEXT): defines.h # enc/utf_32le.o: include/ruby/defines.h
|
|
|
|
enc/utf_32le.$(OBJEXT): missing.h # enc/utf_32le.o: include/ruby/missing.h
|
|
|
|
enc/utf_32le.$(OBJEXT): oniguruma.h # enc/utf_32le.o: include/ruby/oniguruma.h
|
|
|
|
enc/windows_1251.$(OBJEXT): $(top_srcdir)/regenc.h # enc/windows_1251.o: regenc.h
|
|
|
|
enc/windows_1251.$(OBJEXT): config.h # enc/windows_1251.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/windows_1251.$(OBJEXT): defines.h # enc/windows_1251.o: include/ruby/defines.h
|
|
|
|
enc/windows_1251.$(OBJEXT): missing.h # enc/windows_1251.o: include/ruby/missing.h
|
|
|
|
enc/windows_1251.$(OBJEXT): oniguruma.h # enc/windows_1251.o: include/ruby/oniguruma.h
|
|
|
|
enc/windows_31j.$(OBJEXT): $(top_srcdir)/regenc.h # enc/windows_31j.o: regenc.h
|
|
|
|
enc/windows_31j.$(OBJEXT): config.h # enc/windows_31j.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/windows_31j.$(OBJEXT): defines.h # enc/windows_31j.o: include/ruby/defines.h
|
|
|
|
enc/windows_31j.$(OBJEXT): intern.h # enc/windows_31j.o: include/ruby/intern.h
|
|
|
|
enc/windows_31j.$(OBJEXT): missing.h # enc/windows_31j.o: include/ruby/missing.h
|
|
|
|
enc/windows_31j.$(OBJEXT): oniguruma.h # enc/windows_31j.o: include/ruby/oniguruma.h
|
|
|
|
enc/windows_31j.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/windows_31j.o: include/ruby/ruby.h
|
|
|
|
enc/windows_31j.$(OBJEXT): st.h # enc/windows_31j.o: include/ruby/st.h
|
|
|
|
enc/windows_31j.$(OBJEXT): subst.h # enc/windows_31j.o: include/ruby/subst.h
|
|
|
|
enc/trans/big5.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/big5.o: transcode_data.h
|
|
|
|
enc/trans/big5.$(OBJEXT): config.h # enc/trans/big5.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/big5.$(OBJEXT): defines.h # enc/trans/big5.o: include/ruby/defines.h
|
|
|
|
enc/trans/big5.$(OBJEXT): intern.h # enc/trans/big5.o: include/ruby/intern.h
|
|
|
|
enc/trans/big5.$(OBJEXT): missing.h # enc/trans/big5.o: include/ruby/missing.h
|
|
|
|
enc/trans/big5.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/big5.o: include/ruby/ruby.h
|
|
|
|
enc/trans/big5.$(OBJEXT): st.h # enc/trans/big5.o: include/ruby/st.h
|
|
|
|
enc/trans/big5.$(OBJEXT): subst.h # enc/trans/big5.o: include/ruby/subst.h
|
|
|
|
enc/trans/chinese.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/chinese.o: transcode_data.h
|
|
|
|
enc/trans/chinese.$(OBJEXT): config.h # enc/trans/chinese.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/chinese.$(OBJEXT): defines.h # enc/trans/chinese.o: include/ruby/defines.h
|
|
|
|
enc/trans/chinese.$(OBJEXT): intern.h # enc/trans/chinese.o: include/ruby/intern.h
|
|
|
|
enc/trans/chinese.$(OBJEXT): missing.h # enc/trans/chinese.o: include/ruby/missing.h
|
|
|
|
enc/trans/chinese.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/chinese.o: include/ruby/ruby.h
|
|
|
|
enc/trans/chinese.$(OBJEXT): st.h # enc/trans/chinese.o: include/ruby/st.h
|
|
|
|
enc/trans/chinese.$(OBJEXT): subst.h # enc/trans/chinese.o: include/ruby/subst.h
|
|
|
|
enc/trans/emoji.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/emoji.o: transcode_data.h
|
|
|
|
enc/trans/emoji.$(OBJEXT): config.h # enc/trans/emoji.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/emoji.$(OBJEXT): defines.h # enc/trans/emoji.o: include/ruby/defines.h
|
|
|
|
enc/trans/emoji.$(OBJEXT): intern.h # enc/trans/emoji.o: include/ruby/intern.h
|
|
|
|
enc/trans/emoji.$(OBJEXT): missing.h # enc/trans/emoji.o: include/ruby/missing.h
|
|
|
|
enc/trans/emoji.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/emoji.o: include/ruby/ruby.h
|
|
|
|
enc/trans/emoji.$(OBJEXT): st.h # enc/trans/emoji.o: include/ruby/st.h
|
|
|
|
enc/trans/emoji.$(OBJEXT): subst.h # enc/trans/emoji.o: include/ruby/subst.h
|
|
|
|
enc/trans/emoji_iso2022_kddi.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/emoji_iso2022_kddi.o: transcode_data.h
|
|
|
|
enc/trans/emoji_iso2022_kddi.$(OBJEXT): config.h # enc/trans/emoji_iso2022_kddi.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/emoji_iso2022_kddi.$(OBJEXT): defines.h # enc/trans/emoji_iso2022_kddi.o: include/ruby/defines.h
|
|
|
|
enc/trans/emoji_iso2022_kddi.$(OBJEXT): intern.h # enc/trans/emoji_iso2022_kddi.o: include/ruby/intern.h
|
|
|
|
enc/trans/emoji_iso2022_kddi.$(OBJEXT): missing.h # enc/trans/emoji_iso2022_kddi.o: include/ruby/missing.h
|
|
|
|
enc/trans/emoji_iso2022_kddi.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/emoji_iso2022_kddi.o: include/ruby/ruby.h
|
|
|
|
enc/trans/emoji_iso2022_kddi.$(OBJEXT): st.h # enc/trans/emoji_iso2022_kddi.o: include/ruby/st.h
|
|
|
|
enc/trans/emoji_iso2022_kddi.$(OBJEXT): subst.h # enc/trans/emoji_iso2022_kddi.o: include/ruby/subst.h
|
|
|
|
enc/trans/emoji_sjis_docomo.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/emoji_sjis_docomo.o: transcode_data.h
|
|
|
|
enc/trans/emoji_sjis_docomo.$(OBJEXT): config.h # enc/trans/emoji_sjis_docomo.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/emoji_sjis_docomo.$(OBJEXT): defines.h # enc/trans/emoji_sjis_docomo.o: include/ruby/defines.h
|
|
|
|
enc/trans/emoji_sjis_docomo.$(OBJEXT): intern.h # enc/trans/emoji_sjis_docomo.o: include/ruby/intern.h
|
|
|
|
enc/trans/emoji_sjis_docomo.$(OBJEXT): missing.h # enc/trans/emoji_sjis_docomo.o: include/ruby/missing.h
|
|
|
|
enc/trans/emoji_sjis_docomo.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/emoji_sjis_docomo.o: include/ruby/ruby.h
|
|
|
|
enc/trans/emoji_sjis_docomo.$(OBJEXT): st.h # enc/trans/emoji_sjis_docomo.o: include/ruby/st.h
|
|
|
|
enc/trans/emoji_sjis_docomo.$(OBJEXT): subst.h # enc/trans/emoji_sjis_docomo.o: include/ruby/subst.h
|
|
|
|
enc/trans/emoji_sjis_kddi.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/emoji_sjis_kddi.o: transcode_data.h
|
|
|
|
enc/trans/emoji_sjis_kddi.$(OBJEXT): config.h # enc/trans/emoji_sjis_kddi.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/emoji_sjis_kddi.$(OBJEXT): defines.h # enc/trans/emoji_sjis_kddi.o: include/ruby/defines.h
|
|
|
|
enc/trans/emoji_sjis_kddi.$(OBJEXT): intern.h # enc/trans/emoji_sjis_kddi.o: include/ruby/intern.h
|
|
|
|
enc/trans/emoji_sjis_kddi.$(OBJEXT): missing.h # enc/trans/emoji_sjis_kddi.o: include/ruby/missing.h
|
|
|
|
enc/trans/emoji_sjis_kddi.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/emoji_sjis_kddi.o: include/ruby/ruby.h
|
|
|
|
enc/trans/emoji_sjis_kddi.$(OBJEXT): st.h # enc/trans/emoji_sjis_kddi.o: include/ruby/st.h
|
|
|
|
enc/trans/emoji_sjis_kddi.$(OBJEXT): subst.h # enc/trans/emoji_sjis_kddi.o: include/ruby/subst.h
|
|
|
|
enc/trans/emoji_sjis_softbank.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/emoji_sjis_softbank.o: transcode_data.h
|
|
|
|
enc/trans/emoji_sjis_softbank.$(OBJEXT): config.h # enc/trans/emoji_sjis_softbank.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/emoji_sjis_softbank.$(OBJEXT): defines.h # enc/trans/emoji_sjis_softbank.o: include/ruby/defines.h
|
|
|
|
enc/trans/emoji_sjis_softbank.$(OBJEXT): intern.h # enc/trans/emoji_sjis_softbank.o: include/ruby/intern.h
|
|
|
|
enc/trans/emoji_sjis_softbank.$(OBJEXT): missing.h # enc/trans/emoji_sjis_softbank.o: include/ruby/missing.h
|
|
|
|
enc/trans/emoji_sjis_softbank.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/emoji_sjis_softbank.o: include/ruby/ruby.h
|
|
|
|
enc/trans/emoji_sjis_softbank.$(OBJEXT): st.h # enc/trans/emoji_sjis_softbank.o: include/ruby/st.h
|
|
|
|
enc/trans/emoji_sjis_softbank.$(OBJEXT): subst.h # enc/trans/emoji_sjis_softbank.o: include/ruby/subst.h
|
|
|
|
enc/trans/escape.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/escape.o: transcode_data.h
|
|
|
|
enc/trans/escape.$(OBJEXT): config.h # enc/trans/escape.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/escape.$(OBJEXT): defines.h # enc/trans/escape.o: include/ruby/defines.h
|
|
|
|
enc/trans/escape.$(OBJEXT): intern.h # enc/trans/escape.o: include/ruby/intern.h
|
|
|
|
enc/trans/escape.$(OBJEXT): missing.h # enc/trans/escape.o: include/ruby/missing.h
|
|
|
|
enc/trans/escape.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/escape.o: include/ruby/ruby.h
|
|
|
|
enc/trans/escape.$(OBJEXT): st.h # enc/trans/escape.o: include/ruby/st.h
|
|
|
|
enc/trans/escape.$(OBJEXT): subst.h # enc/trans/escape.o: include/ruby/subst.h
|
|
|
|
enc/trans/gb18030.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/gb18030.o: transcode_data.h
|
|
|
|
enc/trans/gb18030.$(OBJEXT): config.h # enc/trans/gb18030.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/gb18030.$(OBJEXT): defines.h # enc/trans/gb18030.o: include/ruby/defines.h
|
|
|
|
enc/trans/gb18030.$(OBJEXT): intern.h # enc/trans/gb18030.o: include/ruby/intern.h
|
|
|
|
enc/trans/gb18030.$(OBJEXT): missing.h # enc/trans/gb18030.o: include/ruby/missing.h
|
|
|
|
enc/trans/gb18030.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/gb18030.o: include/ruby/ruby.h
|
|
|
|
enc/trans/gb18030.$(OBJEXT): st.h # enc/trans/gb18030.o: include/ruby/st.h
|
|
|
|
enc/trans/gb18030.$(OBJEXT): subst.h # enc/trans/gb18030.o: include/ruby/subst.h
|
|
|
|
enc/trans/gbk.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/gbk.o: transcode_data.h
|
|
|
|
enc/trans/gbk.$(OBJEXT): config.h # enc/trans/gbk.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/gbk.$(OBJEXT): defines.h # enc/trans/gbk.o: include/ruby/defines.h
|
|
|
|
enc/trans/gbk.$(OBJEXT): intern.h # enc/trans/gbk.o: include/ruby/intern.h
|
|
|
|
enc/trans/gbk.$(OBJEXT): missing.h # enc/trans/gbk.o: include/ruby/missing.h
|
|
|
|
enc/trans/gbk.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/gbk.o: include/ruby/ruby.h
|
|
|
|
enc/trans/gbk.$(OBJEXT): st.h # enc/trans/gbk.o: include/ruby/st.h
|
|
|
|
enc/trans/gbk.$(OBJEXT): subst.h # enc/trans/gbk.o: include/ruby/subst.h
|
|
|
|
enc/trans/iso2022.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/iso2022.o: transcode_data.h
|
|
|
|
enc/trans/iso2022.$(OBJEXT): config.h # enc/trans/iso2022.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/iso2022.$(OBJEXT): defines.h # enc/trans/iso2022.o: include/ruby/defines.h
|
|
|
|
enc/trans/iso2022.$(OBJEXT): intern.h # enc/trans/iso2022.o: include/ruby/intern.h
|
|
|
|
enc/trans/iso2022.$(OBJEXT): missing.h # enc/trans/iso2022.o: include/ruby/missing.h
|
|
|
|
enc/trans/iso2022.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/iso2022.o: include/ruby/ruby.h
|
|
|
|
enc/trans/iso2022.$(OBJEXT): st.h # enc/trans/iso2022.o: include/ruby/st.h
|
|
|
|
enc/trans/iso2022.$(OBJEXT): subst.h # enc/trans/iso2022.o: include/ruby/subst.h
|
|
|
|
enc/trans/japanese.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/japanese.o: transcode_data.h
|
|
|
|
enc/trans/japanese.$(OBJEXT): config.h # enc/trans/japanese.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/japanese.$(OBJEXT): defines.h # enc/trans/japanese.o: include/ruby/defines.h
|
|
|
|
enc/trans/japanese.$(OBJEXT): intern.h # enc/trans/japanese.o: include/ruby/intern.h
|
|
|
|
enc/trans/japanese.$(OBJEXT): missing.h # enc/trans/japanese.o: include/ruby/missing.h
|
|
|
|
enc/trans/japanese.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/japanese.o: include/ruby/ruby.h
|
|
|
|
enc/trans/japanese.$(OBJEXT): st.h # enc/trans/japanese.o: include/ruby/st.h
|
|
|
|
enc/trans/japanese.$(OBJEXT): subst.h # enc/trans/japanese.o: include/ruby/subst.h
|
|
|
|
enc/trans/japanese_euc.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/japanese_euc.o: transcode_data.h
|
|
|
|
enc/trans/japanese_euc.$(OBJEXT): config.h # enc/trans/japanese_euc.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/japanese_euc.$(OBJEXT): defines.h # enc/trans/japanese_euc.o: include/ruby/defines.h
|
|
|
|
enc/trans/japanese_euc.$(OBJEXT): intern.h # enc/trans/japanese_euc.o: include/ruby/intern.h
|
|
|
|
enc/trans/japanese_euc.$(OBJEXT): missing.h # enc/trans/japanese_euc.o: include/ruby/missing.h
|
|
|
|
enc/trans/japanese_euc.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/japanese_euc.o: include/ruby/ruby.h
|
|
|
|
enc/trans/japanese_euc.$(OBJEXT): st.h # enc/trans/japanese_euc.o: include/ruby/st.h
|
|
|
|
enc/trans/japanese_euc.$(OBJEXT): subst.h # enc/trans/japanese_euc.o: include/ruby/subst.h
|
|
|
|
enc/trans/japanese_sjis.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/japanese_sjis.o: transcode_data.h
|
|
|
|
enc/trans/japanese_sjis.$(OBJEXT): config.h # enc/trans/japanese_sjis.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/japanese_sjis.$(OBJEXT): defines.h # enc/trans/japanese_sjis.o: include/ruby/defines.h
|
|
|
|
enc/trans/japanese_sjis.$(OBJEXT): intern.h # enc/trans/japanese_sjis.o: include/ruby/intern.h
|
|
|
|
enc/trans/japanese_sjis.$(OBJEXT): missing.h # enc/trans/japanese_sjis.o: include/ruby/missing.h
|
|
|
|
enc/trans/japanese_sjis.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/japanese_sjis.o: include/ruby/ruby.h
|
|
|
|
enc/trans/japanese_sjis.$(OBJEXT): st.h # enc/trans/japanese_sjis.o: include/ruby/st.h
|
|
|
|
enc/trans/japanese_sjis.$(OBJEXT): subst.h # enc/trans/japanese_sjis.o: include/ruby/subst.h
|
|
|
|
enc/trans/korean.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/korean.o: transcode_data.h
|
|
|
|
enc/trans/korean.$(OBJEXT): config.h # enc/trans/korean.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/korean.$(OBJEXT): defines.h # enc/trans/korean.o: include/ruby/defines.h
|
|
|
|
enc/trans/korean.$(OBJEXT): intern.h # enc/trans/korean.o: include/ruby/intern.h
|
|
|
|
enc/trans/korean.$(OBJEXT): missing.h # enc/trans/korean.o: include/ruby/missing.h
|
|
|
|
enc/trans/korean.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/korean.o: include/ruby/ruby.h
|
|
|
|
enc/trans/korean.$(OBJEXT): st.h # enc/trans/korean.o: include/ruby/st.h
|
|
|
|
enc/trans/korean.$(OBJEXT): subst.h # enc/trans/korean.o: include/ruby/subst.h
|
|
|
|
enc/trans/single_byte.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/single_byte.o: transcode_data.h
|
|
|
|
enc/trans/single_byte.$(OBJEXT): config.h # enc/trans/single_byte.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/single_byte.$(OBJEXT): defines.h # enc/trans/single_byte.o: include/ruby/defines.h
|
|
|
|
enc/trans/single_byte.$(OBJEXT): intern.h # enc/trans/single_byte.o: include/ruby/intern.h
|
|
|
|
enc/trans/single_byte.$(OBJEXT): missing.h # enc/trans/single_byte.o: include/ruby/missing.h
|
|
|
|
enc/trans/single_byte.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/single_byte.o: include/ruby/ruby.h
|
|
|
|
enc/trans/single_byte.$(OBJEXT): st.h # enc/trans/single_byte.o: include/ruby/st.h
|
|
|
|
enc/trans/single_byte.$(OBJEXT): subst.h # enc/trans/single_byte.o: include/ruby/subst.h
|
|
|
|
enc/trans/utf8_mac.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/utf8_mac.o: transcode_data.h
|
|
|
|
enc/trans/utf8_mac.$(OBJEXT): config.h # enc/trans/utf8_mac.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/utf8_mac.$(OBJEXT): defines.h # enc/trans/utf8_mac.o: include/ruby/defines.h
|
|
|
|
enc/trans/utf8_mac.$(OBJEXT): intern.h # enc/trans/utf8_mac.o: include/ruby/intern.h
|
|
|
|
enc/trans/utf8_mac.$(OBJEXT): missing.h # enc/trans/utf8_mac.o: include/ruby/missing.h
|
|
|
|
enc/trans/utf8_mac.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/utf8_mac.o: include/ruby/ruby.h
|
|
|
|
enc/trans/utf8_mac.$(OBJEXT): st.h # enc/trans/utf8_mac.o: include/ruby/st.h
|
|
|
|
enc/trans/utf8_mac.$(OBJEXT): subst.h # enc/trans/utf8_mac.o: include/ruby/subst.h
|
|
|
|
enc/trans/utf_16_32.$(OBJEXT): $(top_srcdir)/transcode_data.h # enc/trans/utf_16_32.o: transcode_data.h
|
|
|
|
enc/trans/utf_16_32.$(OBJEXT): config.h # enc/trans/utf_16_32.o: .ext/include/x86_64-linux/ruby/config.h
|
|
|
|
enc/trans/utf_16_32.$(OBJEXT): defines.h # enc/trans/utf_16_32.o: include/ruby/defines.h
|
|
|
|
enc/trans/utf_16_32.$(OBJEXT): intern.h # enc/trans/utf_16_32.o: include/ruby/intern.h
|
|
|
|
enc/trans/utf_16_32.$(OBJEXT): missing.h # enc/trans/utf_16_32.o: include/ruby/missing.h
|
|
|
|
enc/trans/utf_16_32.$(OBJEXT): $(hdrdir)/ruby/ruby.h # enc/trans/utf_16_32.o: include/ruby/ruby.h
|
|
|
|
enc/trans/utf_16_32.$(OBJEXT): st.h # enc/trans/utf_16_32.o: include/ruby/st.h
|
|
|
|
enc/trans/utf_16_32.$(OBJEXT): subst.h # enc/trans/utf_16_32.o: include/ruby/subst.h
|