NetBSD/usr.bin/calendar/Makefile

19 lines
620 B
Makefile

# from: @(#)Makefile 4.8 (Berkeley) 5/11/90
# $Id: Makefile,v 1.3 1993/07/31 15:25:25 mycroft Exp $
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
install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/calendars/calendar.* ${DESTDIR}/usr/share/calendar
.include <bsd.prog.mk>