Changes for 4.5.0 snapshot
[newlib-cygwin.git] / newlib / libc / Makefile.unidata
blobd0590a75b7980f0715a1135f2eaab38ee693d166
1 #############################################################################
2 # Generate Unicode data tables for string/wcwidth and ctype/??w*
4 unicode-update: unidata cleanup
6 #############################################################################
7 # Clean up downloaded files
9 cleanup:
10         rm ctype/UnicodeData.txt
11         rm string/Blocks.txt
12         rm string/EastAsianWidth.txt
13         rm string/UnicodeData.txt
14         rm string/uniset.tar.gz
16 #############################################################################
17 # Download Unicode data files
19 unidata:
20         cd string; ./mkunidata -u
21         cd ctype; ./mkunidata -u
23 #############################################################################
24 # Use installed Unicode data files from package unicode-ucd
26 unidata-local:
27         cd string; ./mkunidata -i
28         cd ctype; ./mkunidata -i
30 #############################################################################
31 # end