Bump to 1.14.1
[platform/upstream/augeas.git] / lib / unictype / Makefile
1 # Makefile for generating the table files from unicode.org data.
2
3 ARCHIVE_DIR = /gfs/ibook/Volumes/ExtData/www-archive/software/i18n/unicode/ftp.unicode.org/ArchiveVersions
4 VERSION = 5.0.0
5 UCD_DIR = $(ARCHIVE_DIR)/$(VERSION)/ucd
6
7 EXTRA_DIST = gen-ctype.c 3levelbit.h 3level.h
8
9 all: force
10         gcc -g -Wall gen-ctype.c -o gen-ctype
11         ./gen-ctype $(UCD_DIR)/UnicodeData.txt \
12                     $(UCD_DIR)/PropList.txt \
13                     $(UCD_DIR)/DerivedCoreProperties.txt \
14                     $(UCD_DIR)/Scripts.txt \
15                     $(UCD_DIR)/Blocks.txt \
16                     $(ARCHIVE_DIR)/3.0.1/PropList-3.0.1.txt \
17                     $(VERSION)
18         mv test-* ../../tests/unictype/
19
20 force: