diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-06 15:19:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-06 15:19:32 +0000 |
commit | 9d6c25e99ec0fa066e7deaa568b208816f81f46e (patch) | |
tree | 72d6b658bb874c76167e68a68dd50e09e977059c /usr.bin/gprof/Makefile | |
parent | 0f33904a3c45f1859d8161dec0ca55e4ed2b372b (diff) |
powerpc uses binutils gprof
Diffstat (limited to 'usr.bin/gprof/Makefile')
-rw-r--r-- | usr.bin/gprof/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/gprof/Makefile b/usr.bin/gprof/Makefile index dc1e2df96e7..b0a8248e8a2 100644 --- a/usr.bin/gprof/Makefile +++ b/usr.bin/gprof/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.6 1997/09/21 11:49:15 deraadt Exp $ +# $OpenBSD: Makefile,v 1.7 1998/07/06 15:19:31 millert Exp $ -.if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "mips") +.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "mips") || \ + (${MACHINE_ARCH} == "powerpc") NOPROG= .else PROG= gprof |