NetBSD/usr.bin/calendar/Makefile

18 lines
558 B
Makefile
Raw Normal View History

1993-03-21 12:45:37 +03:00
# @(#)Makefile 4.8 (Berkeley) 5/11/90
PROG= calendar
beforeinstall:
@if [ ! -d ${DESTDIR}/usr/share/calendar ]; then \
/bin/rm -f ${DESTDIR}/usr/share/calendar ; \
mkdir -p ${DESTDIR}/usr/share/calendar ; \
chown root.wheel ${DESTDIR}/usr/share/calendar ; \
chmod 755 ${DESTDIR}/usr/share/calendar ; \
else \
true ; \
fi
1993-03-21 12:45:37 +03:00
install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/calendars/calendar.* ${DESTDIR}/usr/share/calendar
.include <bsd.prog.mk>