1# @(#)Makefile 8.1 (Berkeley) 6/29/93 2# $FreeBSD$ 3 4PROG= gprof 5SRCS= gprof.c arcs.c dfn.c elf.c lookup.c hertz.c \ 6 printgprof.c printlist.c kernel.c 7 8.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" 9SRCS+= aout.c 10CFLAGS+= -DWITH_AOUT 11.endif 12FILES= gprof.flat gprof.callg 13FILESDIR= ${SHAREDIR}/misc 14 15WARNS?= 1 16 17.include <bsd.prog.mk> 18