only build on i386 and amd64.

This commit is contained in:
christos 2007-01-14 04:44:11 +00:00
parent 10866ba3f7
commit 02dcb4ad58
2 changed files with 8 additions and 3 deletions

View File

@ -1,13 +1,15 @@
# Id: Makefile,v 1.2 2000/07/14 18:16:29 iwasaki Exp
# $FreeBSD: src/usr.sbin/acpi/acpidump/Makefile,v 1.6 2001/10/22 17:25:25 iwasaki Exp $
.if (${MACHINE} == "i386" || ${MACHINE} == "amd64")
PROG= acpidump
MAN= acpidump.8
SRCS= acpi.c acpi_user.c asl_dump.c aml_dump.c acpidump.c
SRCS+= aml_parse.c aml_name.c aml_amlmem.c aml_memman.c aml_store.c \
aml_obj.c aml_evalobj.c aml_common.c
CPPFLAGS+=-I${.CURDIR}/../amldb
.endif
MAN= acpidump.8
.include <bsd.prog.mk>
.PATH: ${.CURDIR}/../aml

View File

@ -1,14 +1,17 @@
# $NetBSD: Makefile,v 1.1 2007/01/14 04:36:13 christos Exp $
# $NetBSD: Makefile,v 1.2 2007/01/14 04:44:11 christos Exp $
# Id: Makefile,v 1.5 2000/07/14 18:16:30 iwasaki Exp
# $FreeBSD: src/usr.sbin/acpi/amldb/Makefile,v 1.7 2001/10/22 17:25:32 iwasaki Exp $
.if (${MACHINE} == "i386" || ${MACHINE} == "amd64")
PROG= amldb
MAN= amldb.8
SRCS= amldb.c debug.c region.c
SRCS+= aml_parse.c aml_name.c aml_amlmem.c aml_memman.c aml_store.c \
aml_obj.c aml_evalobj.c aml_common.c
CPPFLAGS+= -I${.CURDIR}
.endif
MAN= amldb.8
.include <bsd.prog.mk>
.PATH: ${.CURDIR}/../aml