diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-12-29 15:30:05 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-12-29 15:30:05 +0000 |
| commit | 912e60377833803e8c89e2cbfd4c8eb8a6d90280 (patch) | |
| tree | 9ce1e55534d3d930aead3ff55aeb7fcedbc086a4 /usr.bin | |
| parent | 703a371f1a0ab9292eab79ecfde2f156af78c652 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/Makefile | 3 | ||||
| -rw-r--r-- | usr.bin/gprof4/Makefile | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 4f2edb9e6f6f..37844eb3beb7 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.3 (Berkeley) 1/7/94 -# $Id: Makefile,v 1.62 1995/10/03 12:29:28 bde Exp $ +# $Id: Makefile,v 1.63 1995/10/23 16:44:22 peter Exp $ # XXX MISSING: deroff diction graph learn plot # spell spline struct units xsend @@ -25,6 +25,7 @@ SUBDIR= apply ar at banner basename biff cal calendar \ unexpand unifdef uniq unvis users uudecode uuencode vacation \ vgrind vi vis w wall wc what whereis which who whois window \ write xargs xinstall xstr yacc yes ypcat ypmatch ypwhich +SUBDIR+=gprof4 .if !exists(../secure) || defined(NOSECURE) SUBDIR+=telnet diff --git a/usr.bin/gprof4/Makefile b/usr.bin/gprof4/Makefile new file mode 100644 index 000000000000..f5c2c83bd33d --- /dev/null +++ b/usr.bin/gprof4/Makefile @@ -0,0 +1,14 @@ +# This was cloned from the Makefile for gprof by changing PROG from gprof +# to gprof4, adding NOMAN and PATH, adding -DGPROF4 to CFLAGS and deleting +# beforeinstall. + +# @(#)Makefile 5.17 (Berkeley) 5/11/90 + +PROG= gprof4 +NOMAN= noman +SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \ + printgprof.c printlist.c +CFLAGS+=-DGPROF4 +.PATH: ${.CURDIR}/../../usr.bin/gprof + +.include <bsd.prog.mk> |
