Makefile revision 1.3
1# from: @(#)Makefile 5.13 (Berkeley) 5/7/91 2# $Id: Makefile,v 1.3 1993/07/31 15:27:42 mycroft Exp $ 3 4FILES= airport ascii birthtoken eqnchar inter.phone man.template \ 5 mdoc.template na.phone operator zipcodes 6NOOBJ= noobj 7 8all clean cleandir depend lint tags: 9 10install: 11 @if [ ! -d ${DESTDIR}${BINDIR}/misc ]; then \ 12 /bin/rm -f ${DESTDIR}${BINDIR}/misc ; \ 13 mkdir -p ${DESTDIR}${BINDIR}/misc ; \ 14 chown root.wheel ${DESTDIR}${BINDIR}/misc ; \ 15 chmod 755 ${DESTDIR}${BINDIR}/misc ; \ 16 else \ 17 true ; \ 18 fi 19 cd ${.CURDIR}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \ 20 ${DESTDIR}${BINDIR}/misc 21 22.include <bsd.prog.mk> 23