Makefile revision 77982
172172Sphantom# $FreeBSD: head/share/monetdef/Makefile 77982 2001-06-10 14:17:44Z ache $
272172Sphantom
372172SphantomNOMAN=YES
472172SphantomCLEANFILES+= ${LOCALES:S/$/.out/g}
572172Sphantom
677982SacheLOCALES=        af_ZA.ISO8859-1 \
777982Sache		cs_CZ.ISO8859-2 \
877982Sache		da_DK.ISO8859-1 \
977982Sache		de_AT.ISO8859-1 \
1077982Sache		de_DE.ISO8859-1 \
1177982Sache		el_GR.ISO8859-7 \
1277982Sache		en_AU.ISO8859-1 \
1377982Sache		en_CA.ISO8859-1 \
1477982Sache		en_GB.ISO8859-1 \
1577982Sache		en_NZ.ISO8859-1 \
1677982Sache		en_US.ISO8859-1 \
1777982Sache		es_ES.ISO8859-1 \
1877982Sache		et_EE.ISO8859-15 \
1977982Sache		fi_FI.ISO8859-1 \
2077982Sache		fr_FR.ISO8859-1 \
2177982Sache		fr_CA.ISO8859-1 \
2277982Sache		hr_HR.ISO8859-2 \
2377982Sache		hu_HU.ISO8859-2 \
2477982Sache		is_IS.ISO8859-1 \
2577982Sache		it_IT.ISO8859-1 \
2677982Sache		nl_NL.ISO8859-1 \
2777982Sache		no_NO.ISO8859-1 \
2877982Sache		pl_PL.ISO8859-2 \
2977982Sache		pt_PT.ISO8859-1 \
3072707Sphantom		ru_RU.CP866 \
3177982Sache		ru_RU.ISO8859-5 \
3272208Sasmodai		ru_RU.KOI8-R \
3377982Sache		sk_SK.ISO8859-2 \
3477982Sache		sl_SI.ISO8859-2 \
3577982Sache		sv_SE.ISO8859-1 \
3677982Sache		tr_TR.ISO8859-9 \
3772565Sache		uk_UA.KOI8-U \
3877982Sache		ko_KR.eucKR \
3977982Sache		ja_JP.eucJP \
4072574Skeith		zh_TW.Big5 \
4177982Sache		zh_CN.eucCN
4272172Sphantom
4372172SphantomLOCALEDIR=      ${DESTDIR}/usr/share/locale
4472172Sphantom
4572172Sphantom.SUFFIXES: .src .out
4672172Sphantom
4772172Sphantom.src.out:
4872172Sphantom	grep -v '^#' < ${.IMPSRC} > ${.TARGET}
4972172Sphantom
5072172Sphantomall: ${LOCALES:S/$/.out/g}
5172172Sphantom
5272172Sphantomafterinstall:
5372260Swollman.for lang in ${LOCALES}
5472260Swollman	${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
5572260Swollman		${LOCALEDIR}/${lang}/LC_MONETARY
5672260Swollman.endfor
5777982Sache	ln -fs ../en_US.ISO8859-1/LC_MONETARY \
5877982Sache		${LOCALEDIR}/en_US.US-ASCII/LC_MONETARY
5972172Sphantom
6072172Sphantom.include <bsd.prog.mk>
61