aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pmccontrol/Makefile
diff options
context:
space:
mode:
authorJoseph Koshy <jkoshy@FreeBSD.org>2005-04-19 04:01:25 +0000
committerJoseph Koshy <jkoshy@FreeBSD.org>2005-04-19 04:01:25 +0000
commitebccf1e3a6b11b97cbf5f813dd76636e892a9035 (patch)
tree3175e06cfbec643ca7426d756f2362160f9309d4 /usr.sbin/pmccontrol/Makefile
parent5b930f51c99986e0488914780510637221c46d76 (diff)
downloadsrc-ebccf1e3a6b11b97cbf5f813dd76636e892a9035.tar.gz
src-ebccf1e3a6b11b97cbf5f813dd76636e892a9035.zip
Bring a working snapshot of hwpmc(4), its associated libraries, userland utilities
and documentation into -CURRENT. Bump FreeBSD_version. Reviewed by: alc, jhb (kernel changes)
Notes
Notes: svn path=/head/; revision=145256
Diffstat (limited to 'usr.sbin/pmccontrol/Makefile')
-rw-r--r--usr.sbin/pmccontrol/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/usr.sbin/pmccontrol/Makefile b/usr.sbin/pmccontrol/Makefile
new file mode 100644
index 000000000000..851b1c70cbc8
--- /dev/null
+++ b/usr.sbin/pmccontrol/Makefile
@@ -0,0 +1,17 @@
+#
+# $FreeBSD$
+#
+
+PROG= pmccontrol
+MAN= pmccontrol.8
+
+DPADD= ${LIBPMC}
+LDADD= -lpmc
+
+WARNS= 6
+
+CFLAGS+= -I${.CURDIR}/../../sys -I${.CURDIR}/../../lib/libpmc
+
+SRCS= pmccontrol.c
+
+.include <bsd.prog.mk>