Makefile revision 93885
172172Sphantom# $FreeBSD: head/share/monetdef/Makefile 93885 2002-04-05 15:03:13Z phantom $
272172Sphantom
372172SphantomNOMAN=YES
472172SphantomCLEANFILES+= ${LOCALES:S/$/.out/g}
572172Sphantom
677982SacheLOCALES=        af_ZA.ISO8859-1 \
786072Sache		bg_BG.CP1251 \
877982Sache		cs_CZ.ISO8859-2 \
977982Sache		da_DK.ISO8859-1 \
1077982Sache		de_AT.ISO8859-1 \
1188479Sphantom		de_CH.ISO8859-1 \
1277982Sache		de_DE.ISO8859-1 \
1377982Sache		el_GR.ISO8859-7 \
1477982Sache		en_AU.ISO8859-1 \
1577982Sache		en_CA.ISO8859-1 \
1677982Sache		en_GB.ISO8859-1 \
1777982Sache		en_NZ.ISO8859-1 \
1877982Sache		en_US.ISO8859-1 \
1977982Sache		es_ES.ISO8859-1 \
2077982Sache		et_EE.ISO8859-15 \
2177982Sache		fi_FI.ISO8859-1 \
2290583Sphantom		fr_BE.ISO8859-1 \
2388473Sphantom		fr_CA.ISO8859-1 \
2477982Sache		fr_FR.ISO8859-1 \
2587043Sache		hi_IN.ISCII-DEV \
2677982Sache		hr_HR.ISO8859-2 \
2777982Sache		hu_HU.ISO8859-2 \
2877982Sache		is_IS.ISO8859-1 \
2977982Sache		it_IT.ISO8859-1 \
3088473Sphantom		ja_JP.eucJP \
3188473Sphantom		ko_KR.eucKR \
3290587Sphantom		nl_BE.ISO8859-1 \
3377982Sache		nl_NL.ISO8859-1 \
3477982Sache		no_NO.ISO8859-1 \
3577982Sache		pl_PL.ISO8859-2 \
3693885Sphantom		pt_BR.ISO8859-1 \
3777982Sache		pt_PT.ISO8859-1 \
3889077Sache		ro_RO.ISO8859-2 \
3972707Sphantom		ru_RU.CP866 \
4077982Sache		ru_RU.ISO8859-5 \
4172208Sasmodai		ru_RU.KOI8-R \
4277982Sache		sk_SK.ISO8859-2 \
4377982Sache		sl_SI.ISO8859-2 \
4477982Sache		sv_SE.ISO8859-1 \
4577982Sache		tr_TR.ISO8859-9 \
4688314Sache		uk_UA.ISO8859-5 \
4772565Sache		uk_UA.KOI8-U \
4888473Sphantom		zh_CN.eucCN \
4988473Sphantom		zh_TW.Big5
5072172Sphantom
5172172SphantomLOCALEDIR=      ${DESTDIR}/usr/share/locale
5272172Sphantom
5388473SphantomASCIILINKS=	en_AU en_CA en_GB en_NZ en_US
5488479SphantomLATIN15LINKS=	af_ZA da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_NZ en_US \
5590583Sphantom		es_ES fi_FI fr_BE fr_CA fr_CH fr_FR is_IS is_IS it_IT it_CH \
5690587Sphantom		nl_BE nl_NL no_NO pt_PT sv_SE
5778008Sache
5890583SphantomCH_SRC=		de_CH
5990583SphantomCH_LINKS=	fr_CH it_CH
6090579Sphantom
6172172Sphantom.SUFFIXES: .src .out
6272172Sphantom
6372172Sphantom.src.out:
6472172Sphantom	grep -v '^#' < ${.IMPSRC} > ${.TARGET}
6572172Sphantom
6672172Sphantomall: ${LOCALES:S/$/.out/g}
6772172Sphantom
6872172Sphantomafterinstall:
6972260Swollman.for lang in ${LOCALES}
7072260Swollman	${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
7172260Swollman		${LOCALEDIR}/${lang}/LC_MONETARY
7272260Swollman.endfor
7388473Sphantom.for link in ${LATIN15LINKS}
7478010Sache	ln -sf ../${link}.ISO8859-1/LC_MONETARY \
7578010Sache	       ${LOCALEDIR}/${link}.ISO8859-15/LC_MONETARY
7678010Sache.endfor
7778008Sache.for link in ${ASCIILINKS}
7878010Sache	ln -sf ../${link}.ISO8859-1/LC_MONETARY \
7978008Sache		${LOCALEDIR}/${link}.US-ASCII/LC_MONETARY
8078008Sache.endfor
8190583Sphantom.for link in ${CH_LINKS}
8290583Sphantom	ln -sf ../${CH_SRC}.ISO8859-1/LC_MONETARY \
8390579Sphantom		${LOCALEDIR}/${link}.ISO8859-1/LC_MONETARY
8490579Sphantom.endfor
8572172Sphantom
8672172Sphantom.include <bsd.prog.mk>
87