From ef356397d4252dcdceae006c141df4493e602cd0 Mon Sep 17 00:00:00 2001 From: duerst Date: Sat, 22 Dec 2007 06:45:55 +0000 Subject: Sat Dec 22 15:45:45 2007 Martin Duerst * transcode_data_one_byte: slightly optimized * transcode_data_japanese: new data file for EUC-JP and SHIFT_JIS (not yet optimized; tests to follow; data from http://nkf.sourceforge.jp/ucm/{SJIS|eucJP}-nkf.ucm) * common.mk, transcode.c: Adjusted for transcode_data_japanese git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- common.mk | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common.mk') diff --git a/common.mk b/common.mk index 033b70a5f..6624909e2 100644 --- a/common.mk +++ b/common.mk @@ -61,6 +61,7 @@ COMMONOBJS = array.$(OBJEXT) \ time.$(OBJEXT) \ transcode.$(OBJEXT) \ transcode_data_one_byte.$(OBJEXT) \ + transcode_data_japanese.$(OBJEXT) \ util.$(OBJEXT) \ variable.$(OBJEXT) \ version.$(OBJEXT) \ @@ -548,6 +549,7 @@ thread.$(OBJEXT): {$(VPATH)}thread.c {$(VPATH)}eval_intern.h \ transcode.$(OBJEXT): {$(VPATH)}transcode.c {$(VPATH)}transcode_data.h {$(VPATH)}ruby.h {$(VPATH)}config.h \ {$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h {$(VPATH)}encoding.h transcode_data_one_byte.$(OBJEXT): {$(VPATH)}transcode_data_one_byte.c {$(VPATH)}transcode_data.h +transcode_data_japanese.$(OBJEXT): {$(VPATH)}transcode_data_japanese.c {$(VPATH)}transcode_data.h cont.$(OBJEXT): {$(VPATH)}cont.c {$(VPATH)}eval_intern.h \ {$(VPATH)}ruby.h {$(VPATH)}vm_core.h {$(VPATH)}id.h {$(VPATH)}config.h \ {$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h \ -- cgit