24 lines
395 B
Bash
24 lines
395 B
Bash
#!/bin/sh
|
|
|
|
echo ""
|
|
echo "-----------------------------------"
|
|
echo " Refreshing tables, please wait..."
|
|
echo "-----------------------------------"
|
|
echo ""
|
|
|
|
sh ./mk_fallbacks.sh
|
|
sh ./mk_encodings.sh
|
|
|
|
echo " * removing temporary files..."
|
|
|
|
rm -f Fallbacks UnicodeChars
|
|
|
|
echo "
|
|
* copying tables to src/common/unictabl.inc..."
|
|
|
|
mv -f unictabl.inc ../../src/common/unictabl.inc
|
|
|
|
echo "
|
|
DONE
|
|
"
|