Makefile revision 74761
172172Sphantom# $FreeBSD: head/share/monetdef/Makefile 74342 2001-03-16 12:27:20Z ache $
272172Sphantom
372172SphantomNOMAN=YES
472172SphantomCLEANFILES+= ${LOCALES:S/$/.out/g}
572172Sphantom
672213SasmodaiLOCALES=	af_ZA.ISO_8859-1 \
772319Sphantom		cs_CZ.ISO_8859-2 \
872213Sasmodai		da_DK.ISO_8859-1 \
972211Sasmodai		de_DE.ISO_8859-1 \
1072319Sphantom		el_GR.ISO_8859-7 \
1172260Swollman		en_AU.ISO_8859-1 \
1272260Swollman		en_CA.ISO_8859-1 \
1372260Swollman		en_GB.ISO_8859-1 \
1472260Swollman		en_NZ.ISO_8859-1 \
1572210Sasmodai		en_US.ISO_8859-1 \
1674342Sache		et_EE.ISO_8859-15 \
1772217Sasmodai		fi_FI.ISO_8859-1 \
1872212Sasmodai		fr_FR.ISO_8859-1 \
1972260Swollman		fr_CA.ISO_8859-1 \
2072628Sache		hu_HU.ISO_8859-2 \
2172218Sasmodai		is_IS.ISO_8859-1 \
2272195Sasmodai		nl_NL.ISO_8859-1 \
2372209Sasmodai		no_NO.ISO_8859-1 \
2472337Sabial		pl_PL.ISO_8859-2 \
2572707Sphantom		ru_RU.CP866 \
2672707Sphantom		ru_RU.ISO_8859-5 \
2772208Sasmodai		ru_RU.KOI8-R \
2872362Sasmodai		sv_SE.ISO_8859-1 \
2972565Sache		uk_UA.KOI8-U \
3072363Sknu		ko_KR.EUC \
3172574Skeith		ja_JP.EUC \
3272574Skeith		zh_TW.Big5 \
3372574Skeith		zh_CN.EUC
3472172Sphantom
3572172SphantomLOCALEDIR=      ${DESTDIR}/usr/share/locale
3672172Sphantom
3772172Sphantom.SUFFIXES: .src .out
3872172Sphantom
3972172Sphantom.src.out:
4072172Sphantom	grep -v '^#' < ${.IMPSRC} > ${.TARGET}
4172172Sphantom
4272172Sphantomall: ${LOCALES:S/$/.out/g}
4372172Sphantom
4472172Sphantomafterinstall:
4572260Swollman.for lang in ${LOCALES}
4672260Swollman	${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
4772260Swollman		${LOCALEDIR}/${lang}/LC_MONETARY
4872260Swollman.endfor
4972172Sphantom
5072172Sphantom.include <bsd.prog.mk>
51