view lib/unictype/Makefile @ 11527:4fe203c3f828

Replace wcrtomb, wcsrtombs, wcsnrtombs if mbstate_t has to be replaced.
author Bruno Haible <bruno@clisp.org>
date Fri, 01 May 2009 18:01:52 +0200
parents 6dc73c76eced
children
line wrap: on
line source

# Makefile for generating the table files from unicode.org data.

ARCHIVE_DIR = /gfs/ibook/Volumes/ExtData/www-archive/software/i18n/unicode/ftp.unicode.org/ArchiveVersions
VERSION = 5.0.0
UCD_DIR = $(ARCHIVE_DIR)/$(VERSION)/ucd

EXTRA_DIST = gen-ctype.c 3levelbit.h 3level.h

all: force
	gcc -g -Wall gen-ctype.c -o gen-ctype
	./gen-ctype $(UCD_DIR)/UnicodeData.txt \
	            $(UCD_DIR)/PropList.txt \
	            $(UCD_DIR)/DerivedCoreProperties.txt \
	            $(UCD_DIR)/Scripts.txt \
	            $(UCD_DIR)/Blocks.txt \
	            $(ARCHIVE_DIR)/3.0.1/PropList-3.0.1.txt \
	            $(VERSION)
	mv test-* ../../tests/unictype/

force: