16 lines
474 B
Makefile
16 lines
474 B
Makefile
# from: @(#)Makefile 5.17 (Berkeley) 5/11/90
|
|
# $Id: Makefile,v 1.6 1993/10/01 00:38:38 jtc Exp $
|
|
|
|
PROG= gprof
|
|
SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \
|
|
printgprof.c printlist.c
|
|
CFLAGS+=-I${.CURDIR}/../../lib/csu/${MACHINE}
|
|
|
|
beforeinstall:
|
|
@install -d -o root -g wheel -m 755 ${DESTDIR}/usr/share/misc
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \
|
|
${DESTDIR}/usr/share/misc
|
|
|
|
.include <bsd.prog.mk>
|