48 lines
806 B
Makefile
48 lines
806 B
Makefile
# $NetBSD: bsd.nls.mk,v 1.3 1996/10/18 02:34:45 thorpej Exp $
|
|
|
|
.if !target(.MAIN)
|
|
.if exists(${.CURDIR}/../Makefile.inc)
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
.endif
|
|
|
|
.MAIN: all
|
|
.endif
|
|
|
|
.SUFFIXES: .cat .msg
|
|
|
|
.msg.cat:
|
|
@rm -f ${.TARGET}
|
|
gencat ${.TARGET} ${.IMPSRC}
|
|
|
|
.if defined(NLS) && !empty(NLS)
|
|
NLSALL= ${NLS:.msg=.cat}
|
|
.endif
|
|
|
|
.if !defined(NLSNAME)
|
|
.if defined(PROG)
|
|
NLSNAME=${PROG}
|
|
.else
|
|
NLSNAME=lib${LIB}
|
|
.endif
|
|
.endif
|
|
|
|
nlsinstall:
|
|
.if defined(NLSALL)
|
|
@for msg in ${NLSALL}; do \
|
|
NLSLANG=`basename $$msg .cat`; \
|
|
dir=${DESTDIR}${NLSDIR}/$${NLSLANG}; \
|
|
${INSTALL} -d $$dir; \
|
|
${INSTALL} ${COPY} -o ${NLSOWN} -g ${NLSGRP} -m ${NLSMODE} $$msg $$dir/${NLSNAME}.cat; \
|
|
done
|
|
.endif
|
|
|
|
.if defined(NLSALL)
|
|
all: ${NLSALL}
|
|
|
|
install: nlsinstall
|
|
|
|
cleandir: cleannls
|
|
cleannls:
|
|
rm -f ${NLSALL}
|
|
.endif
|