head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2005.09.13.16.04.56;	author csjp;	state dead;
branches;
next	1.1;

1.1
date	2005.07.26.21.38.54;	author csjp;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Garbage collect bpfstat. This is handled by netstat now.

Requested by:	rwatson
@
text
@# $FreeBSD: src/tools/tools/bpfstat/Makefile,v 1.1 2005/07/26 21:38:54 csjp Exp $

OBJS=	bpfstat.o
CC?=	CC
PROG=	bpfstat
PREFIX?=/usr/local

bpfstat:	$(OBJS)
		$(CC) -lm -o $(PROG) $(OBJS)
install:
	cp $(PROG) $(PREFIX)/sbin
	cp $(PROG).8 $(PREFIX)/man/man8/

clean:
	rm -f *.o $(PROG)

all:	bpfstat
@


1.1
log
@Introduce a bpfstat utility. This program can be used to retrieve
stats provided by bpf(4). This program will live in tools/ for now
until we figure out where it will live permanently. Based on some
discussions on developers@@, it is likely that we will be adding
this functionality to netstat(1) at some point.
@
text
@d1 1
a1 1
# $FreeBSD$
@

