Build and install gcov, a basic block profiler/code coverage tool.

This program just formats the output.
Compiler and runtime support are already enabled in egcs for the
platforms I've tried (i386, arm32).
No man page (yet).
The info file is already being installed.
This commit is contained in:
sommerfe 1999-03-12 22:06:43 +00:00
parent d662e94812
commit bf1e79f956
2 changed files with 10 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.9 1999/02/11 15:58:19 tv Exp $
# $NetBSD: Makefile,v 1.10 1999/03/12 22:06:43 sommerfe Exp $
SUBDIR= common cc1 cc1plus cc1obj f771 \
c89 cc cpp collect2 g++ g77
c89 cc cpp collect2 g++ g77 gcov
all-cc1 all-cc1obj all-cc1plus all-f771: all-common
depend-cc1 depend-cc1obj depend-cc1plus depend-f771: depend-common

View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1999/03/12 22:06:44 sommerfe Exp $
PROG= gcov
SRCS= gcov.c
BINDIR= /usr/bin
NOMAN=1
.include <bsd.prog.mk>