freebsd-dev/share/msgdef/Makefile
Alexey Zelkin a322eaa8a9 Add sources for following categories: LC_NUMERIC (share/numericdef),
LC_MONETARY (share/monetdef), LC_MESSAGES (share/msgdef). Now only
en_US.ISO_8859-1 and ru_RU.KOI8-R locales ready. I will find some time
in near future and'll try to make defintions for other locales.
2001-02-08 17:33:19 +00:00

25 lines
422 B
Makefile

# $FreeBSD$
NOMAN=YES
CLEANFILES+= ${LOCALES:S/$/.out/g}
LOCALES= en_US.ISO_8859-1 \
ru_RU.KOI8-R
LOCALEDIR= ${DESTDIR}/usr/share/locale
.SUFFIXES: .src .out
.src.out:
grep -v '^#' < ${.IMPSRC} > ${.TARGET}
all: ${LOCALES:S/$/.out/g}
afterinstall:
for l in ${LOCALES}; do \
${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} $$l.out \
${LOCALEDIR}/$$l/LC_MESSAGES; \
done
.include <bsd.prog.mk>