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