diff options
author | Thomas Wolff <towo@towo.net> | 2021-04-17 00:00:00 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2021-07-06 15:35:37 +0200 |
commit | 204ee3cf6aca29652272d943946f9809060d054d (patch) | |
tree | ddab4ae3c6a317b1a32210aacb4fc8f3899d1969 /newlib/libc/Makefile.unidata | |
parent | 11fdae24b71fc3e9c2e480344ec25a026d65afaf (diff) | |
download | newlib-204ee3cf6aca29652272d943946f9809060d054d.zip newlib-204ee3cf6aca29652272d943946f9809060d054d.tar.gz newlib-204ee3cf6aca29652272d943946f9809060d054d.tar.bz2 |
fix and amend scripts and makefile rules to generate Unicode data
Diffstat (limited to 'newlib/libc/Makefile.unidata')
-rw-r--r-- | newlib/libc/Makefile.unidata | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/newlib/libc/Makefile.unidata b/newlib/libc/Makefile.unidata new file mode 100644 index 0000000..c85c428 --- /dev/null +++ b/newlib/libc/Makefile.unidata @@ -0,0 +1,11 @@ +# Generate Unicode data tables for string/wcwidth and ctype/??w* +# 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 |