diff options
author | Thomas Wolff <towo@towo.net> | 2021-11-15 00:00:00 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2021-11-16 11:24:29 +0100 |
commit | 076c85673981493ed41aa176518a5e86fc71a33f (patch) | |
tree | 97180ec9a1012d20d322b679a5ecf7f54bbd3b2b /newlib | |
parent | 3cef6dfb5e83b65b6135dc3876c58aa8b907f79c (diff) | |
download | newlib-076c85673981493ed41aa176518a5e86fc71a33f.zip newlib-076c85673981493ed41aa176518a5e86fc71a33f.tar.gz newlib-076c85673981493ed41aa176518a5e86fc71a33f.tar.bz2 |
cleanup Unicode data files after generating updated tables
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/libc/Makefile.unidata | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/newlib/libc/Makefile.unidata b/newlib/libc/Makefile.unidata index c85c428..d0590a7 100644 --- a/newlib/libc/Makefile.unidata +++ b/newlib/libc/Makefile.unidata @@ -1,11 +1,31 @@ +############################################################################# # 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 -# Generate Unicode data tables for string/wcwidth and ctype/??w* +############################################################################# # Use installed Unicode data files from package unicode-ucd + unidata-local: cd string; ./mkunidata -i cd ctype; ./mkunidata -i + +############################################################################# +# end |