Makefile revision 105965
172172Sphantom# $FreeBSD: head/share/monetdef/Makefile 105965 2002-10-25 22:02:10Z ache $
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 \
32105965Sache		lt_LT.ISO8859-13 \
3390587Sphantom		nl_BE.ISO8859-1 \
3477982Sache		nl_NL.ISO8859-1 \
3577982Sache		no_NO.ISO8859-1 \
3677982Sache		pl_PL.ISO8859-2 \
3793885Sphantom		pt_BR.ISO8859-1 \
3877982Sache		pt_PT.ISO8859-1 \
3989077Sache		ro_RO.ISO8859-2 \
4072707Sphantom		ru_RU.CP866 \
4177982Sache		ru_RU.ISO8859-5 \
4272208Sasmodai		ru_RU.KOI8-R \
4377982Sache		sk_SK.ISO8859-2 \
4477982Sache		sl_SI.ISO8859-2 \
45105445Sache		sr_YU.ISO8859-2 \
46105445Sache		sr_YU.ISO8859-5 \
4777982Sache		sv_SE.ISO8859-1 \
4877982Sache		tr_TR.ISO8859-9 \
4988314Sache		uk_UA.ISO8859-5 \
5072565Sache		uk_UA.KOI8-U \
5188473Sphantom		zh_CN.eucCN \
5288473Sphantom		zh_TW.Big5
5372172Sphantom
5472172SphantomLOCALEDIR=      ${DESTDIR}/usr/share/locale
5572172Sphantom
5688473SphantomASCIILINKS=	en_AU en_CA en_GB en_NZ en_US
5788479SphantomLATIN15LINKS=	af_ZA da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_NZ en_US \
5890583Sphantom		es_ES fi_FI fr_BE fr_CA fr_CH fr_FR is_IS is_IS it_IT it_CH \
5990587Sphantom		nl_BE nl_NL no_NO pt_PT sv_SE
6078008Sache
6190583SphantomCH_SRC=		de_CH
6290583SphantomCH_LINKS=	fr_CH it_CH
6390579Sphantom
6472172Sphantom.SUFFIXES: .src .out
6572172Sphantom
6672172Sphantom.src.out:
6772172Sphantom	grep -v '^#' < ${.IMPSRC} > ${.TARGET}
6872172Sphantom
6972172Sphantomall: ${LOCALES:S/$/.out/g}
7072172Sphantom
7172172Sphantomafterinstall:
7272260Swollman.for lang in ${LOCALES}
73100872Sru	${INSTALL} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
7472260Swollman		${LOCALEDIR}/${lang}/LC_MONETARY
7572260Swollman.endfor
7688473Sphantom.for link in ${LATIN15LINKS}
7778010Sache	ln -sf ../${link}.ISO8859-1/LC_MONETARY \
7878010Sache	       ${LOCALEDIR}/${link}.ISO8859-15/LC_MONETARY
7978010Sache.endfor
8078008Sache.for link in ${ASCIILINKS}
8178010Sache	ln -sf ../${link}.ISO8859-1/LC_MONETARY \
8278008Sache		${LOCALEDIR}/${link}.US-ASCII/LC_MONETARY
8378008Sache.endfor
8490583Sphantom.for link in ${CH_LINKS}
8590583Sphantom	ln -sf ../${CH_SRC}.ISO8859-1/LC_MONETARY \
8690579Sphantom		${LOCALEDIR}/${link}.ISO8859-1/LC_MONETARY
8790579Sphantom.endfor
8893890Sphantom	ln -sf ../ja_JP.eucJP/LC_MONETARY \
8993890Sphantom		${LOCALEDIR}/ja_JP.SJIS/LC_MONETARY
9072172Sphantom
9172172Sphantom.include <bsd.prog.mk>
92