summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2010-01-08 15:05:25 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2010-01-08 15:05:25 +0800
commitb19cc1ba0827a1e28e2ac0c59f85966b978f2ffb (patch)
treefed3d34fe5b32cb785b76479cccdf0e8dfcd40d9
parent106fee9debcd9f1b280133b235ec16a1984f6cd6 (diff)
build: add the conv2.c
-rw-r--r--SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 77eb8c1..9ce2a68 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3,6 +3,7 @@
# Author: Luo Jinghua
env = Environment(tools = ['default', 'convlib'])
+bareenv = env.Clone()
srcs = ['codecs_cn.c', 'codecs_hk.c', 'codecs_iso2022.c',
'codecs_jp.c', 'codecs_kr.c', 'codecs_tw.c',
'multibytecodec.c']
@@ -29,4 +30,4 @@ conv = env.Program ('uconv', 'uconv.c',
LIBS = ['uniconv'],
LIBPATH = ['.'],
CPPPATH = ['.'])
-
+conv2 = bareenv.Program ('uconv2', 'uconv2.c')