summaryrefslogtreecommitdiff
path: root/gnulib/lib/unictype/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gnulib/lib/unictype/Makefile')
m---------gnulib0
-rw-r--r--gnulib/lib/unictype/Makefile20
2 files changed, 20 insertions, 0 deletions
diff --git a/gnulib b/gnulib
deleted file mode 160000
-Subproject 443bc5ffcf7429e557f4a371b0661abe98ddbc1
diff --git a/gnulib/lib/unictype/Makefile b/gnulib/lib/unictype/Makefile
new file mode 100644
index 0000000..d56ec31
--- /dev/null
+++ b/gnulib/lib/unictype/Makefile
@@ -0,0 +1,20 @@
+# 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: