You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
512 B
14 lines
512 B
#!/bin/sh
|
|
# Generate all data files for the charset conversion library
|
|
# (c) 2001--2003 Martin Mares <mj@ucw.cz>
|
|
|
|
set -ex
|
|
rm -f U-*.h chartable.h misc/u-*
|
|
misc/gen-basic
|
|
misc/table2h _U_cat byte <misc/u-cat >U-cat.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
|
|
|