Makefile revision 72707
172172Sphantom# $FreeBSD: head/share/monetdef/Makefile 72707 2001-02-19 20:05:22Z phantom $
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 \
1672217Sasmodai		fi_FI.ISO_8859-1 \
1772212Sasmodai		fr_FR.ISO_8859-1 \
1872260Swollman		fr_CA.ISO_8859-1 \
1972628Sache		hu_HU.ISO_8859-2 \
2072218Sasmodai		is_IS.ISO_8859-1 \
2172195Sasmodai		nl_NL.ISO_8859-1 \
2272209Sasmodai		no_NO.ISO_8859-1 \
2372337Sabial		pl_PL.ISO_8859-2 \
2472707Sphantom		ru_RU.CP866 \
2572707Sphantom		ru_RU.ISO_8859-5 \
2672208Sasmodai		ru_RU.KOI8-R \
2772362Sasmodai		sv_SE.ISO_8859-1 \
2872565Sache		uk_UA.KOI8-U \
2972363Sknu		ko_KR.EUC \
3072574Skeith		ja_JP.EUC \
3172574Skeith		zh_TW.Big5 \
3272574Skeith		zh_CN.EUC
3372172Sphantom
3472172SphantomLOCALEDIR=      ${DESTDIR}/usr/share/locale
3572172Sphantom
3672172Sphantom.SUFFIXES: .src .out
3772172Sphantom
3872172Sphantom.src.out:
3972172Sphantom	grep -v '^#' < ${.IMPSRC} > ${.TARGET}
4072172Sphantom
4172172Sphantomall: ${LOCALES:S/$/.out/g}
4272172Sphantom
4372172Sphantomafterinstall:
4472260Swollman.for lang in ${LOCALES}
4572260Swollman	${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
4672260Swollman		${LOCALEDIR}/${lang}/LC_MONETARY
4772260Swollman.endfor
4872172Sphantom
4972172Sphantom.include <bsd.prog.mk>
50