freebsd-dev/lib/libdevstat/Makefile
Kenneth D. Merry 50a7fdaed8 Remove MAINTAINER= lines in the makefiles for camcontrol, iostat, libcam
and libdevstat, since the new way of doing things is to just list
maintainership in src/MAINTAINERS.

Also, remove duplicate entries in src/MAINTAINERS for those utilities.  I
already had entries for them.
2003-06-14 05:28:01 +00:00

38 lines
913 B
Makefile

# $FreeBSD$
LIB= devstat
# Bump DEVSTAT_USER_API_VER in devstat.h every time this is incremented.
SHLIB_MAJOR= 4
SRCS= devstat.c
INCS= devstat.h
DPADD+= ${LIBKVM}
LDADD+= -lkvm
MAN= devstat.3
MLINKS+=devstat.3 devstat_getnumdevs.3
MLINKS+=devstat.3 devstat_getgeneration.3
MLINKS+=devstat.3 devstat_getversion.3
MLINKS+=devstat.3 devstat_checkversion.3
MLINKS+=devstat.3 devstat_getdevs.3
MLINKS+=devstat.3 devstat_selectdevs.3
MLINKS+=devstat.3 devstat_buildmatch.3
MLINKS+=devstat.3 devstat_compute_statistics.3
MLINKS+=devstat.3 devstat_compute_etime.3
MLINKS+=devstat.3 getnumdevs.3
MLINKS+=devstat.3 getgeneration.3
MLINKS+=devstat.3 getversion.3
MLINKS+=devstat.3 checkversion.3
MLINKS+=devstat.3 getdevs.3
MLINKS+=devstat.3 selectdevs.3
MLINKS+=devstat.3 buildmatch.3
MLINKS+=devstat.3 compute_stats.3
MLINKS+=devstat.3 compute_etime.3
CFLAGS+=-I${.CURDIR}
WARNS?= 2
.include <bsd.lib.mk>