d478d33fa1
the message catalog right (they're encoded in iso-8859-1), but other locale functions should work right. Proposed on tech-userlevel on 20 May 2009.
73 lines
2.5 KiB
Makefile
73 lines
2.5 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2009/06/03 18:47:06 bouyer Exp $
|
|
|
|
NOMAN= # defined
|
|
|
|
# pull LOCALEDIR and other declarations
|
|
.include <bsd.own.mk>
|
|
|
|
LOCALEFILE= LC_MONETARY
|
|
|
|
LOCALESRC_af_ZA.ISO8859-15= af_ZA.ISO8859-1
|
|
LOCALESRC_ca_ES.ISO8859-15= ca_ES.ISO8859-1
|
|
LOCALESRC_da_DK.ISO8859-15= da_DK.ISO8859-1
|
|
LOCALESRC_de_AT.ISO8859-15= de_AT.ISO8859-1
|
|
LOCALESRC_de_CH.ISO8859-15= de_CH.ISO8859-1
|
|
LOCALESRC_de_DE.ISO8859-15= de_DE.ISO8859-1
|
|
LOCALESRC_en_AU.ISO8859-15= en_AU.ISO8859-1
|
|
LOCALESRC_en_CA.ISO8859-15= en_CA.ISO8859-1
|
|
LOCALESRC_en_GB.ISO8859-15= en_GB.ISO8859-1
|
|
LOCALESRC_en_NZ.ISO8859-15= en_NZ.ISO8859-1
|
|
LOCALESRC_en_US.ISO8859-1= en_US.US-ASCII
|
|
LOCALESRC_en_US.ISO8859-15= en_US.US-ASCII
|
|
LOCALESRC_en_US.UTF-8= en_US.US-ASCII
|
|
LOCALESRC_es_ES.ISO8859-15= es_ES.ISO8859-1
|
|
LOCALESRC_eu_ES.ISO8859-1= es_ES.ISO8859-1
|
|
LOCALESRC_eu_ES.ISO8859-15= es_ES.ISO8859-1
|
|
LOCALESRC_fi_FI.ISO8859-15= fi_FI.ISO8859-1
|
|
LOCALESRC_fr_BE.ISO8859-15= fr_BE.ISO8859-1
|
|
LOCALESRC_fr_BE.UTF-8= fr_BE.ISO8859-1
|
|
LOCALESRC_fr_CA.ISO8859-15= fr_CA.ISO8859-1
|
|
LOCALESRC_fr_CA.UTF-8= fr_CA.ISO8859-1
|
|
LOCALESRC_fr_CH.ISO8859-1= de_CH.ISO8859-1
|
|
LOCALESRC_fr_CH.ISO8859-15= de_CH.ISO8859-1
|
|
LOCALESRC_fr_CH.UTF-8= de_CH.ISO8859-1
|
|
LOCALESRC_fr_FR.ISO8859-15= fr_FR.ISO8859-1
|
|
LOCALESRC_fr_FR.UTF-8= fr_FR.ISO8859-1
|
|
LOCALESRC_is_IS.ISO8859-15= is_IS.ISO8859-1
|
|
LOCALESRC_it_CH.ISO8859-1= de_CH.ISO8859-1
|
|
LOCALESRC_it_CH.ISO8859-15= de_CH.ISO8859-1
|
|
LOCALESRC_it_IT.ISO8859-15= it_IT.ISO8859-1
|
|
LOCALESRC_ja_JP.ISO-2022-JP-2= ja_JP.ISO-2022-JP
|
|
LOCALESRC_ja_JP.SJIS= ja_JP.eucJP
|
|
LOCALESRC_ja_JP.ct= ja_JP.ISO-2022-JP
|
|
LOCALESRC_lt_LT.ISO8859-4= lt_LT.ISO8859-13
|
|
LOCALESRC_nl_BE.ISO8859-15= nl_BE.ISO8859-1
|
|
LOCALESRC_nl_NL.ISO8859-15= nl_NL.ISO8859-1
|
|
LOCALESRC_nn_NO.ISO8859-15= no_NO.ISO8859-1
|
|
LOCALESRC_nn_NO.ISO8859-1= no_NO.ISO8859-1
|
|
LOCALESRC_no_NO.ISO8859-15= no_NO.ISO8859-1
|
|
LOCALESRC_pt_PT.ISO8859-15= pt_PT.ISO8859-1
|
|
LOCALESRC_ru_BY.CP1251= be_BY.CP1251
|
|
LOCALESRC_sv_SE.ISO8859-15= sv_SE.ISO8859-1
|
|
LOCALESRC_sr_ME.ISO8859-5= sr_ME.ISO8859-2
|
|
LOCALESRC_sr_RS.ISO8859-5= sr_RS.ISO8859-2
|
|
LOCALESRC_zh_CN.GB18030= zh_CN.eucCN
|
|
LOCALESRC_zh_TW.eucTW= zh_TW.Big5
|
|
|
|
.include"${.CURDIR}/../Makefile.locale"
|
|
|
|
all: ${LOCALES:S/$/.out/g}
|
|
realall: ${LOCALES:S/$/.out/g}
|
|
|
|
FILES= ${LOCALES:S/$/.out/g}
|
|
CLEANFILES+= ${LOCALES:S/$/.out/g}
|
|
|
|
.for locale in ${LOCALES}
|
|
${locale}.out: ${LOCALESRC_${locale}}.src
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_MKLOCALE} -t monetary -o ${.TARGET} \
|
|
< ${.CURDIR}/${LOCALESRC_${locale}}.src
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|