freebsd-src/share/monetdef/Makefile
Garrett Wollman dd28d0c32c Add additional English- and French-speaking countries with the appropriate
currency symbols.  Use make(1) loops, not sh(1) loops.
2001-02-09 21:27:09 +00:00

39 lines
715 B
Makefile

# $FreeBSD$
NOMAN=YES
CLEANFILES+= ${LOCALES:S/$/.out/g}
LOCALES= af_ZA.ISO_8859-1 \
da_DK.ISO_8859-1 \
de_DE.ISO_8859-1 \
en_AU.ISO_8859-1 \
en_CA.ISO_8859-1 \
en_GB.ISO_8859-1 \
en_NZ.ISO_8859-1 \
en_US.ISO_8859-1 \
fi_FI.ISO_8859-1 \
fr_FR.ISO_8859-1 \
fr_CA.ISO_8859-1 \
is_IS.ISO_8859-1 \
nl_NL.ISO_8859-1 \
no_NO.ISO_8859-1 \
ru_RU.KOI8-R \
sv_SE.ISO_8859-1
LOCALEDIR= ${DESTDIR}/usr/share/locale
.SUFFIXES: .src .out
.src.out:
grep -v '^#' < ${.IMPSRC} > ${.TARGET}
all: ${LOCALES:S/$/.out/g}
afterinstall:
.for lang in ${LOCALES}
${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
${LOCALEDIR}/${lang}/LC_MONETARY
.endfor
.include <bsd.prog.mk>