43cf5ff9b4
Optimize NLS by not wasting space copying the same .cat but use symbolic links instead.
23 lines
397 B
Makefile
23 lines
397 B
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
NL= greek
|
|
DL= el_GR.ISO_8859-7
|
|
|
|
.PATH: ${BASESRC}/${NL}
|
|
|
|
all: tcsh.cat
|
|
|
|
tcsh.cat: tcsh.msg
|
|
|
|
tcsh.msg: set[0-9]*
|
|
cat ${BASESRC}/${NL}/set[0-9] \
|
|
${BASESRC}/${NL}/set[0-9][0-9] > ${.TARGET}
|
|
|
|
install:
|
|
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
|
|
tcsh.cat ${DESTDIR}${NLSDIR}/${DL}/tcsh.cat
|
|
|
|
.include <bsd.obj.mk>
|