]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - tools/tools/ncpus/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / tools / tools / ncpus / Makefile
1 # $FreeBSD$
2
3 PROG=   ncpus
4 NO_MAN=
5 SRCS=   ncpus.c acpi.c
6 .if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
7 SRCS+=  biosmptable.c
8 .endif
9 BINDIR= /usr/local/bin
10 WARNS?= 6
11
12 DPADD=  ${LIBDEVINFO}
13 LDADD=  -ldevinfo
14
15 .include <bsd.prog.mk>