1 # from: @(#)Makefile 5.17 (Berkeley) 5/11/90 2 # $Id: Makefile,v 1.8 1994/02/10 02:03:37 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 -c -o ${BINOWN} -g ${BINGRP} -m 444 \ 11 ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \ 12 ${DESTDIR}/usr/share/misc 13 14 .include <bsd.prog.mk> 15