NetBSD/lib/libpmc/Makefile
thorpej 982451d606 Add a user interface library to the PMC-related system calls. This
provides a mapping between an event name and the selector, and provides
a more convenient API For manipulating the PMCs.
2002-08-09 00:03:15 +00:00

18 lines
280 B
Makefile

# $NetBSD: Makefile,v 1.1 2002/08/09 00:03:15 thorpej Exp $
.include <bsd.own.mk>
MAN= pmc.3
.if exists(${.CURDIR}/pmc_${MACHINE_CPU}.c)
LIB= pmc
SRCS= pmc.c
SRCS+= pmc_${MACHINE_CPU}.c
INCS= pmc.h
INCSDIR=/usr/include
.include <bsd.lib.mk>
.else
.include <bsd.man.mk>
.endif