32 lines
888 B
Makefile
32 lines
888 B
Makefile
#############################################################################
|
|
# Generate Unicode data tables for string/wcwidth and ctype/??w*
|
|
|
|
unicode-update: unidata cleanup
|
|
|
|
#############################################################################
|
|
# Clean up downloaded files
|
|
|
|
cleanup:
|
|
rm ctype/UnicodeData.txt
|
|
rm string/Blocks.txt
|
|
rm string/EastAsianWidth.txt
|
|
rm string/UnicodeData.txt
|
|
rm string/uniset.tar.gz
|
|
|
|
#############################################################################
|
|
# Download Unicode data files
|
|
|
|
unidata:
|
|
cd string; ./mkunidata -u
|
|
cd ctype; ./mkunidata -u
|
|
|
|
#############################################################################
|
|
# Use installed Unicode data files from package unicode-ucd
|
|
|
|
unidata-local:
|
|
cd string; ./mkunidata -i
|
|
cd ctype; ./mkunidata -i
|
|
|
|
#############################################################################
|
|
# end
|