| OLD | NEW |
| 1 # * Copyright (C) 1998-2013, International Business Machines | 1 # * Copyright (C) 1998-2014, International Business Machines |
| 2 # * Corporation and others. All Rights Reserved. | 2 # * Corporation and others. All Rights Reserved. |
| 3 BRK_RES_CLDR_VERSION = 24 | 3 BRK_RES_CLDR_VERSION = %version% |
| 4 # A list of txt's to build | 4 # A list of txt's to build |
| 5 # Note: | 5 # Note: |
| 6 # | 6 # |
| 7 # If you are thinking of modifying this file, READ THIS. | 7 # If you are thinking of modifying this file, READ THIS. |
| 8 # | 8 # |
| 9 # Instead of changing this file [unless you want to check it back in], | 9 # Instead of changing this file [unless you want to check it back in], |
| 10 # you should consider creating a 'brklocal.mk' file in this same directory. | 10 # you should consider creating a '%local%' file in this same directory. |
| 11 # Then, you can have your local changes remain even if you upgrade or | 11 # Then, you can have your local changes remain even if you upgrade or |
| 12 # reconfigure ICU. | 12 # reconfigure ICU. |
| 13 # | 13 # |
| 14 # Example 'brklocal.mk' files: | 14 # Example '%local%' files: |
| 15 # | 15 # |
| 16 # * To add an additional locale to the list: | 16 # * To add an additional locale to the list: |
| 17 # _____________________________________________________ | 17 # _____________________________________________________ |
| 18 # | BRK_RES_SOURCE_LOCAL = myLocale.txt ... | 18 # | BRK_RES_SOURCE_LOCAL = myLocale.txt ... |
| 19 # | 19 # |
| 20 # * To REPLACE the default list and only build with a few | 20 # * To REPLACE the default list and only build with a few |
| 21 # locales: | 21 # locales: |
| 22 # _____________________________________________________ | 22 # _____________________________________________________ |
| 23 # | BRK_RES_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt | 23 # | BRK_RES_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt |
| 24 # | 24 # |
| 25 # | 25 # |
| 26 # Generated by LDML2ICUConverter, from LDML source files. | 26 # Generated by LDML2ICUConverter, from LDML source files. |
| 27 | 27 |
| 28 # Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml) | 28 # Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml) |
| 29 BRK_RES_SYNTHETIC_ALIAS = | 29 BRK_RES_SYNTHETIC_ALIAS = |
| 30 | 30 |
| 31 | 31 |
| 32 # All aliases (to not be included under 'installed'), but not including root. | 32 # All aliases (to not be included under 'installed'), but not including root. |
| 33 BRK_RES_ALIAS_SOURCE = $(BRK_RES_SYNTHETIC_ALIAS) | 33 BRK_RES_ALIAS_SOURCE = $(BRK_RES_SYNTHETIC_ALIAS) |
| 34 | 34 |
| 35 | 35 |
| 36 # List of dictionary files (dict). | 36 # List of dictionary files (dict). |
| 37 BRK_DICT_SOURCE = cjdict.txt khmerdict.txt laodict.txt thaidict.txt | 37 BRK_DICT_SOURCE = burmesedict.txt cjdict.txt khmerdict.txt laodict.txt\ |
| 38 thaidict.txt |
| 38 | 39 |
| 39 | 40 |
| 40 # List of break iterator files (brk). | 41 # List of break iterator files (brk). |
| 41 BRK_SOURCE = char.txt line.txt line_fi.txt line_ja.txt\ | 42 BRK_SOURCE = char.txt line.txt line_fi.txt line_ja.txt\ |
| 42 sent.txt sent_el.txt title.txt word.txt word_POSIX.txt | 43 sent.txt sent_el.txt title.txt word.txt word_POSIX.txt |
| 43 | 44 |
| 44 | 45 |
| 45 # Ordinary resources | 46 # Ordinary resources |
| 46 BRK_RES_SOURCE = el.txt en.txt en_US.txt en_US_POSIX.txt\ | 47 BRK_RES_SOURCE = de.txt el.txt en.txt en_US.txt\ |
| 47 fi.txt ja.txt | 48 en_US_POSIX.txt es.txt fi.txt fr.txt it.txt\ |
| 49 ja.txt pt.txt ru.txt |
| 48 | 50 |
| OLD | NEW |