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