summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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')