lib/util/charset split codepoints.c into it's own subsystem
authorAndrew Bartlett <abartlet@samba.org>
Wed, 16 Feb 2011 05:26:05 +0000 (16:26 +1100)
committerAndrew Tridgell <tridge@samba.org>
Fri, 18 Feb 2011 04:09:47 +0000 (15:09 +1100)
lib/util/charset/wscript_build

index 56ed9a60b2237551498d550480575f538fe97fe6..ba8b869a375856aaf97c61ad0edf96216796f0f8 100644 (file)
@@ -2,9 +2,12 @@
 
 
 bld.SAMBA_SUBSYSTEM('CHARSET',
-       source='iconv.c charcnv.c util_unistr.c codepoints.c',
-       public_deps='iconv',
+       source='iconv.c charcnv.c util_unistr.c',
+       public_deps='iconv CODEPOINTS',
        public_headers='charset.h',
-       deps='DYNCONFIG'
        )
 
+bld.SAMBA_SUBSYSTEM('CODEPOINTS',
+       source='codepoints.c',
+       deps='DYNCONFIG'
+       )