Files
djm 630770a54b Add a "cpuid identify" that prints basic information (brand, family,
model, stepping and manufacturer). Fix a few compiler warnings.

ok sthen@
2023-11-14 22:30:58 +00:00

25 lines
356 B
Makefile

ONLY_FOR_ARCHS= i386 amd64
COMMENT= simple tool to dump cpuid information
PKGNAME= cpuid-20231115
DISTFILES=
CATEGORIES= sysutils
# ISC
PERMIT_PACKAGE= Yes
WANTLIB= c
NO_TEST= Yes
do-build:
cp ${FILESDIR}/cpuid.c ${WRKSRC}/
cd ${WRKSRC}; ${MAKE_PROGRAM} cpuid
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cpuid ${PREFIX}/bin
.include <bsd.port.mk>