Makefile revision 1.5
11.4Smycroft# from: @(#)Makefile 5.17 (Berkeley) 5/11/90 21.5Scgd# $Id: Makefile,v 1.5 1993/08/23 05:02:37 cgd Exp $ 31.1Scgd 41.1ScgdPROG= gprof 51.1ScgdSRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \ 61.1Scgd printgprof.c printlist.c 71.3ScgdCFLAGS+=-I${.CURDIR}/../../lib/csu/${MACHINE} 81.1Scgd 91.1Scgdbeforeinstall: 101.2Scgd @if [ ! -d ${DESTDIR}/usr/share/misc ]; then \ 111.2Scgd /bin/rm -f ${DESTDIR}/usr/share/misc ; \ 121.2Scgd mkdir -p ${DESTDIR}/usr/share/misc ; \ 131.2Scgd chown root.wheel ${DESTDIR}/usr/share/misc ; \ 141.2Scgd chmod 755 ${DESTDIR}/usr/share/misc ; \ 151.2Scgd else \ 161.2Scgd true ; \ 171.2Scgd fi 181.5Scgd install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ 191.1Scgd ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \ 201.1Scgd ${DESTDIR}/usr/share/misc 211.1Scgd 221.1Scgd.include <bsd.prog.mk> 23