diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
commit | 183851b06bd6c52f3cae5375f433da720d410447 (patch) | |
tree | a477257decbf3360127f6739c2f9d0ec57a03d39 /includes/normal/Makefile |
MediaWiki 1.7.1 wiederhergestellt
Diffstat (limited to 'includes/normal/Makefile')
-rw-r--r-- | includes/normal/Makefile | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/includes/normal/Makefile b/includes/normal/Makefile new file mode 100644 index 00000000..fcdf2380 --- /dev/null +++ b/includes/normal/Makefile @@ -0,0 +1,72 @@ +.PHONY : all test testutf8 testclean icutest bench icubench clean distclean + +FETCH=wget +#FETCH=fetch +BASE=http://www.unicode.org/Public/UNIDATA +PHP=php +#PHP=php-cli + +all : UtfNormalData.inc + +UtfNormalData.inc : UtfNormalGenerate.php UtfNormalUtil.php UnicodeData.txt CompositionExclusions.txt NormalizationCorrections.txt DerivedNormalizationProps.txt + $(PHP) UtfNormalGenerate.php + +test : testutf8 testclean UtfNormalTest.php UtfNormalData.inc NormalizationTest.txt + $(PHP) UtfNormalTest.php + +testutf8 : Utf8Test.php UTF-8-test.txt + $(PHP) Utf8Test.php + +testclean : CleanUpTest.php + $(PHP) CleanUpTest.php + +bench : UtfNormalData.inc testdata/washington.txt testdata/berlin.txt testdata/tokyo.txt testdata/sociology.txt testdata/bulgakov.txt + $(PHP) UtfNormalBench.php + +icutest : UtfNormalData.inc NormalizationTest.txt + $(PHP) Utf8Test.php --icu + $(PHP) CleanUpTest.php --icu + $(PHP) UtfNormalTest.php --icu + +icubench : UtfNormalData.inc testdata/washington.txt testdata/berlin.txt testdata/tokyo.txt testdata/sociology.txt testdata/bulgakov.txt + $(PHP) UtfNormalBench.php --icu + +clean : + rm -f UtfNormalData.inc + +distclean : clean + rm -f CompositionExclusions.txt NormalizationTest.txt NormalizationCorrections.txt UnicodeData.txt DerivedNormalizationProps.txt + +# The Unicode data files... +CompositionExclusions.txt : + $(FETCH) $(BASE)/CompositionExclusions.txt + +NormalizationTest.txt : + $(FETCH) $(BASE)/NormalizationTest.txt + +NormalizationCorrections.txt : + $(FETCH) $(BASE)/NormalizationCorrections.txt + +DerivedNormalizationProps.txt : + $(FETCH) $(BASE)/DerivedNormalizationProps.txt + +UnicodeData.txt : + $(FETCH) $(BASE)/UnicodeData.txt + +UTF-8-test.txt : + $(FETCH) http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt + +testdata/berlin.txt : + mkdir -p testdata && wget -U MediaWiki/test -O testdata/berlin.txt "http://de.wikipedia.org/w/wiki.phtml?title=Berlin&oldid=2775712&action=raw" + +testdata/washington.txt : + mkdir -p testdata && wget -U MediaWiki/test -O testdata/washington.txt "http://en.wikipedia.org/w/wiki.phtml?title=Washington%2C_DC&oldid=6370218&action=raw" + +testdata/tokyo.txt : + mkdir -p testdata && wget -U MediaWiki/test -O testdata/tokyo.txt "http://ja.wikipedia.org/w/wiki.phtml?title=%E6%9D%B1%E4%BA%AC%E9%83%BD&oldid=940880&action=raw" + +testdata/sociology.txt : + mkdir -p testdata && wget -U MediaWiki/test -O testdata/sociology.txt "http://ko.wikipedia.org/w/wiki.phtml?title=%EC%82%AC%ED%9A%8C%ED%95%99&oldid=16409&action=raw" + +testdata/bulgakov.txt : + mkdir -p testdata && wget -U MediaWiki/test -O testdata/bulgakov.txt "http://ru.wikipedia.org/w/wiki.phtml?title=%D0%91%D1%83%D0%BB%D0%B3%D0%B0%D0%BA%D0%BE%D0%B2%2C_%D0%A1%D0%B5%D1%80%D0%B3%D0%B5%D0%B9_%D0%9D%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0%D0%B5%D0%B2%D0%B8%D1%87&oldid=17704&action=raw" |