Makefile revision 1.3
1#	from: @(#)Makefile	4.8 (Berkeley) 5/11/90
2#	$Id: Makefile,v 1.3 1993/07/31 15:25:25 mycroft Exp $
3
4PROG=	calendar
5
6beforeinstall:
7	@if [ ! -d ${DESTDIR}/usr/share/calendar ]; then \
8                /bin/rm -f ${DESTDIR}/usr/share/calendar ; \
9                mkdir -p ${DESTDIR}/usr/share/calendar ; \
10                chown root.wheel ${DESTDIR}/usr/share/calendar ; \
11                chmod 755 ${DESTDIR}/usr/share/calendar ; \
12        else \
13                true ; \
14        fi
15	install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
16	    ${.CURDIR}/calendars/calendar.* ${DESTDIR}/usr/share/calendar
17
18.include <bsd.prog.mk>
19