fbd8b34a06
- Allow the "-t" option to take a regular expression naming command line processes to attach process PMCs to. - Update the manual page and add an example showing the use of the new functionality. - Update the (c) year on the affected source files.
16 lines
171 B
Makefile
16 lines
171 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PROG= pmcstat
|
|
MAN= pmcstat.8
|
|
|
|
DPADD= ${LIBPMC} ${LIBM}
|
|
LDADD= -lkvm -lpmc -lm
|
|
|
|
WARNS?= 6
|
|
|
|
SRCS= pmcstat.c pmcstat.h pmcstat_log.c
|
|
|
|
.include <bsd.prog.mk>
|