From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 70160 invoked by alias); 12 Mar 2018 13:25:16 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 70013 invoked by uid 9078); 12 Mar 2018 13:25:15 -0000 Date: Mon, 12 Mar 2018 13:25:00 -0000 Message-ID: <20180312132515.70010.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] make target for explicit Unicode data tables generation X-Act-Checkin: newlib-cygwin X-Git-Author: Thomas Wolff X-Git-Refname: refs/heads/master X-Git-Oldrev: a3527300049872d68dcaf0f9faf6bb2a86d50f45 X-Git-Newrev: c8d96a96eab0d2354b5c36b394e3fced60216b05 X-SW-Source: 2018-q1/txt/msg00051.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=c8d96a96eab0d2354b5c36b394e3fced60216b05 commit c8d96a96eab0d2354b5c36b394e3fced60216b05 Author: Thomas Wolff Date: Thu Mar 8 00:08:29 2018 +0100 make target for explicit Unicode data tables generation Run 'make unidata' in newlib target directory to generate Unicode data tables for libc functions wcwidth, tow* and isw*. Diff: --- newlib/Makefile.am | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/newlib/Makefile.am b/newlib/Makefile.am index 205705d..809d492 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -382,6 +382,15 @@ endif done ; \ else true; fi +# Generate Unicode data tables for libc/string/wcwidth and libc/ctype/??w* +unidata: + cd $(srcdir)/libc/string; ./mkunidata + cd $(srcdir)/libc/ctype; ./mkunidata + +unidate-download: + cd $(srcdir)/libc/string; ./mkunidata -u + cd $(srcdir)/libc/ctype; ./mkunidata -u + # Force makedoc to be built before building info files. info-recursive: doc/makedoc dvi-recursive: doc/makedoc