f263522a45
- Implement sampling modes and logging support in hwpmc(4). - Separate MI and MD parts of hwpmc(4) and allow sharing of PMC implementations across different architectures. Add support for P4 (EMT64) style PMCs to the amd64 code. - New pmcstat(8) options: -E (exit time counts) -W (counts every context switch), -R (print log file). - pmc(3) API changes, improve our ability to keep ABI compatibility in the future. Add more 'alias' names for commonly used events. - bug fixes & documentation.
52 lines
1019 B
Makefile
52 lines
1019 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= pmc
|
|
|
|
SRCS= libpmc.c pmclog.c
|
|
INCS= pmc.h pmclog.h
|
|
|
|
WARNS?= 6
|
|
|
|
MAN= pmc.3 pmclog.3
|
|
|
|
MLINKS+= \
|
|
pmc.3 pmc_allocate.3 \
|
|
pmc.3 pmc_attach.3 \
|
|
pmc.3 pmc_capabilities.3 \
|
|
pmc.3 pmc_configure_logfile.3 \
|
|
pmc.3 pmc_cpuinfo.3 \
|
|
pmc.3 pmc_detach.3 \
|
|
pmc.3 pmc_disable.3 \
|
|
pmc.3 pmc_enable.3 \
|
|
pmc.3 pmc_event_names_of_class.3 \
|
|
pmc.3 pmc_flush_logfile.3 \
|
|
pmc.3 pmc_get_driver_stats.3 \
|
|
pmc.3 pmc_init.3 \
|
|
pmc.3 pmc_name_of_capability.3 \
|
|
pmc.3 pmc_name_of_class.3 \
|
|
pmc.3 pmc_name_of_cputype.3 \
|
|
pmc.3 pmc_name_of_event.3 \
|
|
pmc.3 pmc_name_of_mode.3 \
|
|
pmc.3 pmc_name_of_state.3 \
|
|
pmc.3 pmc_ncpu.3 \
|
|
pmc.3 pmc_npmc.3 \
|
|
pmc.3 pmc_pmcinfo.3 \
|
|
pmc.3 pmc_read.3 \
|
|
pmc.3 pmc_release.3 \
|
|
pmc.3 pmc_rw.3 \
|
|
pmc.3 pmc_set.3 \
|
|
pmc.3 pmc_start.3 \
|
|
pmc.3 pmc_stop.3 \
|
|
pmc.3 pmc_width.3 \
|
|
pmc.3 pmc_write.3 \
|
|
pmc.3 pmc_writelog.3 \
|
|
pmc.3 pmc_x86_get_msr.3
|
|
|
|
MLINKS+= \
|
|
pmclog.3 pmclog_open.3 \
|
|
pmclog.3 pmclog_close.3 \
|
|
pmclog.3 pmclog_feed.3 \
|
|
pmclog.3 pmclog_read.3
|
|
|
|
.include <bsd.lib.mk>
|