1 # from: @(#)Makefile 5.17 (Berkeley) 5/11/90 2 # $Id: Makefile,v 1.7 1993/12/06 05:28:34 cgd Exp $ 3 4 PROG= gprof 5 SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE_ARCH}.c hertz.c \ 6 printgprof.c printlist.c 7 CFLAGS+=-I${.CURDIR}/../../lib/csu/${MACHINE_ARCH} 8 9 beforeinstall: 10 @install -d -o root -g wheel -m 755 ${DESTDIR}/usr/share/misc 11 install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ 12 ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \ 13 ${DESTDIR}/usr/share/misc 14 15 .include <bsd.prog.mk> 16