3fc980b135
the currently-running kernel (and supercedes an executable file argument given). With this change, properly-compiled KLD modules are now able to be profiled. Obtained from: NAI Labs CBOSS project Funded by: DARPA
14 lines
348 B
Makefile
14 lines
348 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/29/93
|
|
# $FreeBSD$
|
|
|
|
PROG= gprof
|
|
SRCS= gprof.c aout.c arcs.c dfn.c elf.c lookup.c ${MACHINE_ARCH}.c hertz.c \
|
|
printgprof.c printlist.c kernel.c
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \
|
|
${DESTDIR}/usr/share/misc
|
|
|
|
.include <bsd.prog.mk>
|