From b811816356157af11281a36e44a219b30bce7782 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sat, 23 Dec 2000 19:49:28 +0000 Subject: [PATCH] Add `gcov' to the mix. Requested by: David Malone PR: 18574 --- gnu/usr.bin/cc/Makefile | 4 ++++ gnu/usr.bin/cc/gcov/Makefile | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 gnu/usr.bin/cc/gcov/Makefile diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile index e7823d21ba84..30ec1194d954 100644 --- a/gnu/usr.bin/cc/Makefile +++ b/gnu/usr.bin/cc/Makefile @@ -21,4 +21,8 @@ SUBDIR+= cc1obj SUBDIR+= f77 f771 f77doc .endif +.if !defined(NO_GCOV) +SUBDIR+= gcov +.endif + .include diff --git a/gnu/usr.bin/cc/gcov/Makefile b/gnu/usr.bin/cc/gcov/Makefile new file mode 100644 index 000000000000..e8a5794348c3 --- /dev/null +++ b/gnu/usr.bin/cc/gcov/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.include "../Makefile.inc" + +.PATH: ${GCCDIR} + +PROG= gcov +SRCS= gcov.c +NOMAN= 1 + +.include