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

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

1.3     ! deraadt     1: #      $OpenBSD: Makefile,v 1.2 1996/06/26 05:33:46 deraadt 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:
                     14:        install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
                     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>