Makefile revision 1.2
11.1Scgd# @(#)Makefile 5.17 (Berkeley) 5/11/90 21.1Scgd 31.1ScgdPROG= gprof 41.1ScgdSRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \ 51.1Scgd printgprof.c printlist.c 61.1ScgdCFLAGS+=-I${.CURDIR}/../../lib/csu.${MACHINE} 71.1Scgd 81.1Scgdbeforeinstall: 91.2Scgd @if [ ! -d ${DESTDIR}/usr/share/misc ]; then \ 101.2Scgd /bin/rm -f ${DESTDIR}/usr/share/misc ; \ 111.2Scgd mkdir -p ${DESTDIR}/usr/share/misc ; \ 121.2Scgd chown root.wheel ${DESTDIR}/usr/share/misc ; \ 131.2Scgd chmod 755 ${DESTDIR}/usr/share/misc ; \ 141.2Scgd else \ 151.2Scgd true ; \ 161.2Scgd fi 171.1Scgd install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 181.1Scgd ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \ 191.1Scgd ${DESTDIR}/usr/share/misc 201.1Scgd 211.1Scgd.include <bsd.prog.mk> 22