From 968236093b1aa958ca5f49f4bcf905aad5d4ae37 Mon Sep 17 00:00:00 2001 From: chriskl Date: Tue, 18 Feb 2003 06:33:15 +0000 Subject: [PATCH] add gb2312 chinese encoding --- lang/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lang/Makefile b/lang/Makefile index da887936..2906818e 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -6,11 +6,11 @@ # It is important to fix first and last lines of the file # using 'awk' # -# $Id: Makefile,v 1.4 2003/01/27 13:38:25 chriskl Exp $ +# $Id: Makefile,v 1.5 2003/02/18 06:33:15 chriskl Exp $ # DESTDIR=./recoded -all: polish english chinese-tr-utf8 chinese-tr-big5 dutch german spanish italian +all: polish english chinese-tr-utf8 chinese-tr-big5 chinese-tr-gb dutch german spanish italian polish: cat polish.php | recode latin2..html | \ @@ -52,3 +52,8 @@ chinese-tr-big5: awk '{ gsub(">",">"); gsub("<","<"); print $0}' \ > ${DESTDIR}/chinese-tr-big5.php +chinese-tr-gb: + cat chinese-tr-gb.php | recode gb2312..html | \ + awk '{ gsub(">",">"); gsub("<","<"); print $0}' \ + > ${DESTDIR}/chinese-tr-gb.php + -- 2.39.5