File: Makefile

package info (click to toggle)
pspp 0.7.9%2Bgit20120620-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 71,980 kB
  • sloc: ansic: 384,310; sh: 22,024; cpp: 1,445; yacc: 1,251; perl: 903; lisp: 868; makefile: 358; xml: 182; java: 5
file content (20 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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: