[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / gprof

Annotation of src/usr.bin/gprof/Makefile, Revision 1.5

1.5     ! millert     1: #      $OpenBSD: Makefile,v 1.4 1996/12/08 14:32:25 downsj Exp $
1.1       deraadt     2: #      $NetBSD: Makefile,v 1.14 1995/04/19 07:24:08 cgd Exp $
                      3:
1.3       deraadt     4: .if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "mips")
                      5: NOPROG=
                      6: .else
1.1       deraadt     7: PROG=  gprof
                      8: SRCS=  gprof.c arcs.c dfn.c lookup.c ${MACHINE_ARCH}.c hertz.c \
                      9:        printgprof.c printlist.c
                     10: CFLAGS+= -D${MACHINE_ARCH}
1.3       deraadt    11: .endif
1.1       deraadt    12:
                     13: beforeinstall:
1.5     ! millert    14:        ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
1.1       deraadt    15:            ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \
                     16:            ${DESTDIR}/usr/share/misc
                     17:
                     18: .if make(install)
                     19: SUBDIR+= PSD.doc
                     20: .endif
                     21:
                     22: .include <bsd.prog.mk>