Makefile revision 1.3
11.3Smycroft# from: @(#)Makefile 5.3 (Berkeley) 10/22/90 21.3Smycroft# $Id: Makefile,v 1.3 1993/07/31 15:27:24 mycroft Exp $ 31.1Scgd 41.1ScgdFILES= 3101 9837 aa aed512 beehive diablo dtc382 hp700-wy ibm3101 std \ 51.1Scgd stdcrt tandem653 teleray vt100 wyse-adds xerox1720 xerox1730 \ 61.1Scgd xerox1730-lm zenith29 71.1ScgdNOOBJ= noobj 81.1Scgd 91.1Scgdall clean cleandir depend lint tags: 101.1Scgd 111.1Scgdinstall: 121.2Scgd @if [ ! -d ${DESTDIR}${BINDIR}/tabset ]; then \ 131.2Scgd /bin/rm -f ${DESTDIR}${BINDIR}/tabset ; \ 141.2Scgd mkdir -p ${DESTDIR}${BINDIR}/tabset ; \ 151.2Scgd chown root.wheel ${DESTDIR}${BINDIR}/tabset ; \ 161.2Scgd chmod 755 ${DESTDIR}${BINDIR}/tabset ; \ 171.2Scgd else \ 181.2Scgd true ; \ 191.2Scgd fi 201.1Scgd install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \ 211.1Scgd ${DESTDIR}${BINDIR}/tabset 221.1Scgd 231.1Scgd.include <bsd.prog.mk> 24