xref: /netbsd-src/usr.bin/gprof/Makefile (revision 4b30c543a0b21e3ba94f2c569e9a82b4fdb2075f)
1#	from: @(#)Makefile	5.17 (Berkeley) 5/11/90
2#	$Id: Makefile,v 1.6 1993/10/01 00:38:38 jtc Exp $
3
4PROG=	gprof
5SRCS=	gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \
6	printgprof.c printlist.c
7CFLAGS+=-I${.CURDIR}/../../lib/csu/${MACHINE}
8
9beforeinstall:
10	@install -d -o root -g wheel -m 755 ${DESTDIR}/usr/share/misc
11	install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
12	    ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \
13	    ${DESTDIR}/usr/share/misc
14
15.include <bsd.prog.mk>
16