aboutsummaryrefslogtreecommitdiff
path: root/tools/tools/ncpus/Makefile
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2006-02-22 21:51:09 +0000
committerSam Leffler <sam@FreeBSD.org>2006-02-22 21:51:09 +0000
commited7b0743d73bd0b27097ab1a8f4aacbd02f5642a (patch)
treeb43bec7d2469d578a89529415784956017e9d957 /tools/tools/ncpus/Makefile
parent93d74675d6011b45e57c66a397e8796bc2ddbbef (diff)
downloadsrc-ed7b0743d73bd0b27097ab1a8f4aacbd02f5642a.tar.gz
src-ed7b0743d73bd0b27097ab1a8f4aacbd02f5642a.zip
test program to check cpu counting
MFC after: 1 week
Notes
Notes: svn path=/head/; revision=155928
Diffstat (limited to 'tools/tools/ncpus/Makefile')
-rw-r--r--tools/tools/ncpus/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/tools/ncpus/Makefile b/tools/tools/ncpus/Makefile
new file mode 100644
index 000000000000..7d2410c2e138
--- /dev/null
+++ b/tools/tools/ncpus/Makefile
@@ -0,0 +1,11 @@
+# $FreeBSD$
+
+PROG= ncpus
+SRCS= ncpus.c acpi.c biosmptable.c
+NO_MAN= noman
+BINDIR= /usr/local/bin
+
+DPADD= ${LIBDEVINFO}
+LDADD= -ldevinfo
+
+.include <bsd.prog.mk>