[ Index ]

PHP Cross Reference of MediaWiki-1.24.0

title

Body

[close]

/includes/normal/ -> Makefile (source)

   1  .PHONY : all test testutf8 testclean icutest bench icubench clean distclean
   2  
   3  ## Latest greatest version of Unicode
   4  ## May cause confusion if running test suite from these files
   5  ## when the data was generated from a previous version.
   6  #BASE=http://www.unicode.org/Public/UNIDATA
   7  
   8  # Explicitly using Unicode 6.0
   9  BASE=http://www.unicode.org/Public/6.0.0/ucd
  10  
  11  # Can override to php-cli or php5 or whatever
  12  PHP=php
  13  #PHP=php-cli
  14  
  15  # Some nice tool to grab URLs with
  16  FETCH=wget
  17  #FETCH=fetch
  18  
  19  all : UtfNormalData.inc
  20  
  21  UtfNormalData.inc : UtfNormalGenerate.php UtfNormalUtil.php UnicodeData.txt CompositionExclusions.txt NormalizationCorrections.txt DerivedNormalizationProps.txt
  22      $(PHP) UtfNormalGenerate.php
  23  
  24  test : testutf8 UtfNormalTest.php UtfNormalData.inc NormalizationTest.txt
  25      $(PHP) UtfNormalTest.php
  26  
  27  testutf8 : Utf8Test.php UTF-8-test.txt
  28      $(PHP) Utf8Test.php
  29  
  30  bench : UtfNormalData.inc testdata/washington.txt testdata/berlin.txt testdata/tokyo.txt testdata/young.txt testdata/bulgakov.txt
  31      $(PHP) UtfNormalBench.php
  32  
  33  icutest : UtfNormalData.inc NormalizationTest.txt
  34      $(PHP) Utf8Test.php --icu
  35      $(PHP) UtfNormalTest.php --icu
  36  
  37  icubench : UtfNormalData.inc testdata/washington.txt testdata/berlin.txt testdata/tokyo.txt testdata/young.txt testdata/bulgakov.txt
  38      $(PHP) UtfNormalBench.php --icu
  39  
  40  clean :
  41      rm -f UtfNormalData.inc UtfNormalDataK.inc
  42  
  43  distclean : clean
  44      rm -f CompositionExclusions.txt NormalizationTest.txt NormalizationCorrections.txt UnicodeData.txt DerivedNormalizationProps.txt UTF-8-test.txt
  45  
  46  # The Unicode data files...
  47  CompositionExclusions.txt :
  48      $(FETCH) $(BASE)/CompositionExclusions.txt
  49  
  50  NormalizationTest.txt :
  51      $(FETCH) $(BASE)/NormalizationTest.txt
  52  
  53  NormalizationCorrections.txt :
  54      $(FETCH) $(BASE)/NormalizationCorrections.txt
  55  
  56  DerivedNormalizationProps.txt :
  57      $(FETCH) $(BASE)/DerivedNormalizationProps.txt
  58  
  59  UnicodeData.txt :
  60      $(FETCH) $(BASE)/UnicodeData.txt
  61  
  62  UTF-8-test.txt :
  63      $(FETCH) http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt
  64  
  65  testdata/berlin.txt :
  66      mkdir -p testdata && wget -U MediaWiki/test -O testdata/berlin.txt "http://de.wikipedia.org/w/index.php?title=Berlin&oldid=2775712&action=raw"
  67  
  68  testdata/washington.txt :
  69      mkdir -p testdata && wget -U MediaWiki/test -O testdata/washington.txt "http://en.wikipedia.org/w/index.php?title=Washington%2C_D.C.&oldid=6370218&action=raw"
  70  
  71  testdata/tokyo.txt :
  72      mkdir -p testdata && wget -U MediaWiki/test -O testdata/tokyo.txt "http://ja.wikipedia.org/w/index.php?title=%E6%9D%B1%E4%BA%AC%E9%83%BD&oldid=940880&action=raw"
  73  
  74  testdata/young.txt :
  75      mkdir -p testdata && wget -U MediaWiki/test -O testdata/young.txt "http://ko.wikipedia.org/w/index.php?title=%EC%9D%B4%EC%88%98%EC%98%81&oldid=627688&action=raw"
  76  
  77  testdata/bulgakov.txt :
  78      mkdir -p testdata && wget -U MediaWiki/test -O testdata/bulgakov.txt "http://ru.wikipedia.org/w/index.php?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"


Generated: Fri Nov 28 14:03:12 2014 Cross-referenced by PHPXref 0.7.1