9bc6c7219a
FreeBSD has used ELF binaries/libraries for decades, but still has some support for legacy a.out binaries. Portions of this have been retired over time, but support remained in ldd, ldconfig, and gprof. Retire gprof support; if anyone needs to do development on a.out binaries still they will be best served by installing a full FreeBSD 2.x or other obsolete version in a jail. Kernel support for executing a.out binaries is unchnaged. Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D27480
14 lines
243 B
Makefile
14 lines
243 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/29/93
|
|
# $FreeBSD$
|
|
|
|
PROG= gprof
|
|
SRCS= gprof.c arcs.c dfn.c elf.c lookup.c hertz.c \
|
|
printgprof.c printlist.c kernel.c
|
|
|
|
FILES= gprof.flat gprof.callg
|
|
FILESDIR= ${SHAREDIR}/misc
|
|
|
|
WARNS?= 1
|
|
|
|
.include <bsd.prog.mk>
|