freebsd-dev/share/timedef/data/Makefile
Jordan K. Hubbard 1130b656e5 Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore.  This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00

46 lines
1.1 KiB
Makefile

# $FreeBSD$
NOMAN=YES
CLEANFILES+= ${LOCALES:S/$/.out/g}
LOCALES= da_DK.ISO_8859-1 de_DE.ISO_8859-1 en_GB.ISO_8859-1 \
en_US.ISO_8859-1 fr_FR.ISO_8859-1 is_IS.ISO_8859-1 \
it_IT.ISO_8859-1 pt_PT.ISO_8859-1 ru_SU.KOI8-R ru_SU.CP866
LOCALEDIR= ${DESTDIR}/usr/share/locale
DE_LINKS = de_AT de_CH
FR_LINKS = fr_BE fr_CA fr_CH
IT_LINKS = it_CH
US_LINKS = en_AU en_CA
.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_TIME; \
done
for l in ${DE_LINKS}; do \
ln -fs ../de_DE.ISO_8859-1/LC_TIME \
${LOCALEDIR}/$$l.ISO_8859-1/LC_TIME; \
done
for l in ${FR_LINKS}; do \
ln -fs ../fr_FR.ISO_8859-1/LC_TIME \
${LOCALEDIR}/$$l.ISO_8859-1/LC_TIME; \
done
for l in ${IT_LINKS}; do \
ln -fs ../it_IT.ISO_8859-1/LC_TIME \
${LOCALEDIR}/$$l.ISO_8859-1/LC_TIME; \
done
for l in ${US_LINKS}; do \
ln -fs ../en_US.ISO_8859-1/LC_TIME \
${LOCALEDIR}/$$l.ISO_8859-1/LC_TIME; \
done
.include <bsd.prog.mk>