Makefile revision 90587
172172Sphantom# $FreeBSD: head/share/monetdef/Makefile 90587 2002-02-12 18:40:57Z phantom $
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 \
3290587Sphantom		nl_BE.ISO8859-1 \
3377982Sache		nl_NL.ISO8859-1 \
3477982Sache		no_NO.ISO8859-1 \
3577982Sache		pl_PL.ISO8859-2 \
3677982Sache		pt_PT.ISO8859-1 \
3789077Sache		ro_RO.ISO8859-2 \
3872707Sphantom		ru_RU.CP866 \
3977982Sache		ru_RU.ISO8859-5 \
4072208Sasmodai		ru_RU.KOI8-R \
4177982Sache		sk_SK.ISO8859-2 \
4277982Sache		sl_SI.ISO8859-2 \
4377982Sache		sv_SE.ISO8859-1 \
4477982Sache		tr_TR.ISO8859-9 \
4588314Sache		uk_UA.ISO8859-5 \
4672565Sache		uk_UA.KOI8-U \
4788473Sphantom		zh_CN.eucCN \
4888473Sphantom		zh_TW.Big5
4972172Sphantom
5072172SphantomLOCALEDIR=      ${DESTDIR}/usr/share/locale
5172172Sphantom
5288473SphantomASCIILINKS=	en_AU en_CA en_GB en_NZ en_US
5388479SphantomLATIN15LINKS=	af_ZA da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_NZ en_US \
5490583Sphantom		es_ES fi_FI fr_BE fr_CA fr_CH fr_FR is_IS is_IS it_IT it_CH \
5590587Sphantom		nl_BE nl_NL no_NO pt_PT sv_SE
5678008Sache
5790583SphantomCH_SRC=		de_CH
5890583SphantomCH_LINKS=	fr_CH it_CH
5990579Sphantom
6072172Sphantom.SUFFIXES: .src .out
6172172Sphantom
6272172Sphantom.src.out:
6372172Sphantom	grep -v '^#' < ${.IMPSRC} > ${.TARGET}
6472172Sphantom
6572172Sphantomall: ${LOCALES:S/$/.out/g}
6672172Sphantom
6772172Sphantomafterinstall:
6872260Swollman.for lang in ${LOCALES}
6972260Swollman	${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
7072260Swollman		${LOCALEDIR}/${lang}/LC_MONETARY
7172260Swollman.endfor
7288473Sphantom.for link in ${LATIN15LINKS}
7378010Sache	ln -sf ../${link}.ISO8859-1/LC_MONETARY \
7478010Sache	       ${LOCALEDIR}/${link}.ISO8859-15/LC_MONETARY
7578010Sache.endfor
7678008Sache.for link in ${ASCIILINKS}
7778010Sache	ln -sf ../${link}.ISO8859-1/LC_MONETARY \
7878008Sache		${LOCALEDIR}/${link}.US-ASCII/LC_MONETARY
7978008Sache.endfor
8090583Sphantom.for link in ${CH_LINKS}
8190583Sphantom	ln -sf ../${CH_SRC}.ISO8859-1/LC_MONETARY \
8290579Sphantom		${LOCALEDIR}/${link}.ISO8859-1/LC_MONETARY
8390579Sphantom.endfor
8472172Sphantom
8572172Sphantom.include <bsd.prog.mk>
86