freebsd-skq/usr.bin/calendar/Makefile
John Polstra ffac7b875e Removed the definition of the make variable SHAREDIR. It was clashing
with the definition in bsd.own.mk, causing "make world" to fall over.
1996-04-02 22:26:18 +00:00

18 lines
494 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= calendar
SRCS= calendar.c io.c day.c ostern.c
INTER= de_DE.ISO_8859-1 hr_HR.ISO_8859-2
TEXTMODE?= 444
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \
${.CURDIR}/calendars/calendar.* ${DESTDIR}${SHAREDIR}/calendar
.for lang in ${INTER}
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \
${.CURDIR}/calendars/${lang}/calendar.* \
${DESTDIR}${SHAREDIR}/calendar/${lang};
.endfor
.include <bsd.prog.mk>