Makefile revision 1.15
1# $NetBSD: Makefile,v 1.15 1996/10/18 06:14:49 thorpej Exp $ 2# @(#)Makefile 8.1 (Berkeley) 6/29/93 3 4PROG= gprof 5SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE_ARCH}.c hertz.c \ 6 printgprof.c printlist.c 7CFLAGS+= -D${MACHINE_ARCH} 8 9beforeinstall: 10 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ 11 ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \ 12 ${DESTDIR}/usr/share/misc 13 14.if make(install) 15SUBDIR+= PSD.doc 16.endif 17 18.include <bsd.prog.mk> 19