Home | History | Annotate | Line # | Download | only in gprof
Makefile revision 1.18.2.2
      1 #	$NetBSD: Makefile,v 1.18.2.2 1998/03/09 22:01:03 mellon Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/29/93
      3 
      4 WARNS=	0
      5 # XXX not ELF?
      6 .if (${MACHINE_ARCH} != "alpha" && ${MACHINE_ARCH} != "mips" && \
      7      ${MACHINE_ARCH} != "powerpc")
      8 PROG=	gprof
      9 .endif
     10 
     11 SRCS=	gprof.c arcs.c dfn.c lookup.c ${MACHINE_ARCH}.c hertz.c \
     12 	printgprof.c printlist.c
     13 CPPFLAGS+= -D${MACHINE_ARCH}
     14 
     15 FILES=	${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg
     16 FILESDIR=/usr/share/misc
     17 
     18 .if make(install)
     19 SUBDIR+=PSD.doc
     20 .endif
     21 
     22 .include <bsd.prog.mk>
     23 .include <bsd.subdir.mk>
     24