]> mj.ucw.cz Git - libucw.git/blobdiff - charset/misc/generate
Doc: Documented growing arrays, generic allocators and related things
[libucw.git] / charset / misc / generate
index ac22d301a5810d34618fe8a65c55a9ebdf2b45d5..1d91b76ea41dc51311d5d69097542a76ffef136b 100644 (file)
@@ -1,14 +1,14 @@
 #!/bin/sh
 # Generate all data files for the charset conversion library
 #!/bin/sh
 # Generate all data files for the charset conversion library
-# (c) 2001 Martin Mares <mj@ucw.cz>
+# (c) 2001--2003 Martin Mares <mj@ucw.cz>
 
 set -ex
 rm -f U-*.h chartable.h misc/u-*
 
 set -ex
 rm -f U-*.h chartable.h misc/u-*
-chmod +x misc/{unisplit,tabgen,mkunacc,table2h}
-misc/unisplit
+misc/gen-basic
 misc/table2h _U_cat byte <misc/u-cat >U-cat.h
 misc/table2h _U_cat byte <misc/u-cat >U-cat.h
-misc/table2h _U_lower word <misc/u-lower >U-lower.h
-misc/table2h _U_upper word <misc/u-upper >U-upper.h
-misc/mkunacc >misc/u-unacc
-misc/table2h _U_unaccent word <misc/u-unacc >U-unacc.h
-misc/tabgen <misc/chartable.in >chartable.h
+misc/table2h _U_lower u16 <misc/u-lower >U-lower.h
+misc/table2h _U_upper u16 <misc/u-upper >U-upper.h
+( cat misc/user_unacc && misc/gen-unacc ) >misc/u-unacc
+misc/table2h _U_unaccent u16 <misc/u-unacc >U-unacc.h
+misc/gen-ligatures >U-ligatures.h
+misc/gen-charconv <misc/chartable.in >chartable.h