Remove no_NO (only use nb_NO and nn_NO)
[dragonfly.git] / share / locale-links / Makefile
1 # This creates short versions of locales as symlinks to full versions
2 # e.g. en_GB is a symlink to en_GB.UTF-8.
3 # The UTF-8 version will always be the target if available
4
5 UTF8=   af_ZA am_ET be_BY bg_BG ca_AD ca_ES ca_FR ca_IT \
6         cs_CZ da_DK de_AT de_CH de_DE el_GR en_AU en_CA \
7         en_GB en_IE en_NZ en_US es_ES et_EE eu_ES fi_FI \
8         fr_BE fr_CA fr_CH fr_FR he_IL hr_HR hu_HU hy_AM \
9         is_IS it_CH it_IT ja_JP kk_KZ ko_KR lt_LT lv_LV \
10         mn_MN nb_NO nl_BE nl_NL nn_NO pl_PL pt_BR pt_PT \
11         ro_RO ru_RU sk_SK sl_SI sr_YU sv_SE tr_TR uk_UA \
12         zh_CN zh_HK zh_TW
13
14 EURO=   af_ZA ca_AD ca_ES ca_FR ca_IT da_DK de_AT de_CH \
15         de_DE en_AU en_CA en_GB en_NZ en_US es_ES et_EE \
16         eu_ES fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH \
17         it_IT la_LN nb_NO nl_BE nl_NL nn_NO pt_PT sv_SE
18
19 LOCALEDIR=      /usr/share/locale
20
21 SYMLINKS=       hi_IN.ISCII-DEV ${LOCALEDIR}/hi_IN \
22                 la_LN.ISO8859-1 ${LOCALEDIR}/la_LN
23 .for symdir in ${UTF8}
24 SYMLINKS+=      ${symdir}.UTF-8 ${LOCALEDIR}/${symdir}
25 SYMLINKS+=      ${symdir}.UTF-8 ${LOCALEDIR}/${symdir}.UTF8
26 .endfor
27 .for symdir in ${EURO}
28 SYMLINKS+=      ${symdir}.ISO8859-15 ${LOCALEDIR}/${symdir}@euro
29 SYMLINKS+=      ${symdir}.ISO8859-15 ${LOCALEDIR}/${symdir}.ISO-8859-15@euro
30 .endfor
31
32 .include <bsd.prog.mk>