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