Makefile revision 72565
172172Sphantom# $FreeBSD: head/share/monetdef/Makefile 72565 2001-02-17 08:35:14Z 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 \
1672217Sasmodai		fi_FI.ISO_8859-1 \
1772212Sasmodai		fr_FR.ISO_8859-1 \
1872260Swollman		fr_CA.ISO_8859-1 \
1972218Sasmodai		is_IS.ISO_8859-1 \
2072195Sasmodai		nl_NL.ISO_8859-1 \
2172209Sasmodai		no_NO.ISO_8859-1 \
2272337Sabial		pl_PL.ISO_8859-2 \
2372208Sasmodai		ru_RU.KOI8-R \
2472362Sasmodai		sv_SE.ISO_8859-1 \
2572565Sache		uk_UA.KOI8-U \
2672363Sknu		ko_KR.EUC \
2772363Sknu		ja_JP.EUC
2872172Sphantom
2972172SphantomLOCALEDIR=      ${DESTDIR}/usr/share/locale
3072172Sphantom
3172172Sphantom.SUFFIXES: .src .out
3272172Sphantom
3372172Sphantom.src.out:
3472172Sphantom	grep -v '^#' < ${.IMPSRC} > ${.TARGET}
3572172Sphantom
3672172Sphantomall: ${LOCALES:S/$/.out/g}
3772172Sphantom
3872172Sphantomafterinstall:
3972260Swollman.for lang in ${LOCALES}
4072260Swollman	${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
4172260Swollman		${LOCALEDIR}/${lang}/LC_MONETARY
4272260Swollman.endfor
4372172Sphantom
4472172Sphantom.include <bsd.prog.mk>
45