blob: ecfc2133cf6379c38f340e5308dc0b21c90e2366 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: Makefile,v 1.5 2009/12/27 21:42:22 abs Exp $
# $FreeBSD: src/usr.sbin/acpi/acpidump/Makefile,v 1.7 2003/08/28 03:33:07 njl Exp $
.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64")
CPPFLAGS+=-I${.CURDIR}/../../../sys
CPPFLAGS+=-I${.CURDIR}/..
PROG= acpidump
SRCS= acpi.c acpi_user.c acpidump.c
.endif
MAN= acpidump.8
.include <bsd.prog.mk>
|