diff options
Diffstat (limited to 'includes/normal/Makefile')
-rw-r--r-- | includes/normal/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/includes/normal/Makefile b/includes/normal/Makefile index 887f3ce6..69ff3da1 100644 --- a/includes/normal/Makefile +++ b/includes/normal/Makefile @@ -5,8 +5,8 @@ ## when the data was generated from a previous version. #BASE=http://www.unicode.org/Public/UNIDATA -# Explicitly using Unicode 5.0 -BASE=http://www.unicode.org/Public/5.0.0/ucd/ +# Explicitly using Unicode 5.1 +BASE=http://www.unicode.org/Public/5.1.0/ucd # Can override to php-cli or php5 or whatevah PHP=php @@ -16,11 +16,14 @@ PHP=php FETCH=wget #FETCH=fetch -all : UtfNormalData.inc +all : UtfNormalData.inc Utf8Case.php UtfNormalData.inc : UtfNormalGenerate.php UtfNormalUtil.php UnicodeData.txt CompositionExclusions.txt NormalizationCorrections.txt DerivedNormalizationProps.txt $(PHP) UtfNormalGenerate.php +Utf8Case.php : Utf8CaseGenerate.php UtfNormalUtil.php UnicodeData.txt + $(PHP) Utf8CaseGenerate.php + test : testutf8 testclean UtfNormalTest.php UtfNormalData.inc NormalizationTest.txt $(PHP) UtfNormalTest.php |