diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-06-03 19:18:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-06-03 19:18:33 +0000 |
commit | 2e8f379c5ccdc672ac7bf174cca807ecb0936d94 (patch) | |
tree | ce27047d8ea7bc9c387e42bd77254dde389048b0 /usr.sbin/acpidump | |
parent | f3d0b354a1543667a8d87822d31deac86a393ec4 (diff) |
i386 and amd64 only
Diffstat (limited to 'usr.sbin/acpidump')
-rw-r--r-- | usr.sbin/acpidump/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/acpidump/Makefile b/usr.sbin/acpidump/Makefile index ebd0ae5776d..1645c634f6e 100644 --- a/usr.sbin/acpidump/Makefile +++ b/usr.sbin/acpidump/Makefile @@ -1,9 +1,14 @@ -# $OpenBSD: Makefile,v 1.1 2005/06/02 20:09:39 tholo Exp $ +# $OpenBSD: Makefile,v 1.2 2005/06/03 19:18:32 deraadt Exp $ +.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") PROG= acpidump SRCS= acpi.c acpi_user.c asl_dump.c aml_dump.c acpidump.c SRCS+= aml_name.c aml_parse.c aml_amlmem.c aml_memman.c aml_obj.c SRCS+= aml_common.c aml_evalobj.c aml_store.c +.else +NOPROG= yes +.endif + MAN= acpidump.8 VPATH= ${.CURDIR}/aml |