freebsd-skq/usr.bin/calendar/Makefile
Wolfram Schneider c9c822e632 - handle events that move around from year to year, i.e.,
``the last Monday in April'
- handle easter

new options
	-f calendarfile
	-A days
	-B days

Calendar HOME directory ~/.calendar
don't sent mail if ~/.calendar/nomail exist
1996-02-02 06:02:41 +00:00

22 lines
587 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
SHAREDIR= /usr/share/calendar
TEXTMODE?= 444
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \
${.CURDIR}/calendars/calendar.* ${DESTDIR}${SHAREDIR}
for lang in ${INTER}; \
do \
[ -d ${DESTDIR}${SHAREDIR}/$$lang ] || \
mkdir -p ${DESTDIR}${SHAREDIR}/$$lang; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${TEXTMODE} \
${.CURDIR}/calendars/$$lang/calendar.* \
${DESTDIR}${SHAREDIR}/$$lang; \
done;
.include <bsd.prog.mk>