diff options
author | Nikolay Sturm <sturm@cvs.openbsd.org> | 2006-03-14 22:30:54 +0000 |
---|---|---|
committer | Nikolay Sturm <sturm@cvs.openbsd.org> | 2006-03-14 22:30:54 +0000 |
commit | ef6bb351fc1de0fa2eeec0873d730a30a1f7cb04 (patch) | |
tree | 50d0936aadbe1a414aa55084ac578a3aed87c195 /usr.sbin/apmd/Makefile | |
parent | 91ea96b4b51dd194e9306faaf9480abded225b26 (diff) |
install these on amd64
even though amd64 does not have apm support, this change permits
hw.setperf manipulations via apm/apmd
Diffstat (limited to 'usr.sbin/apmd/Makefile')
-rw-r--r-- | usr.sbin/apmd/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.sbin/apmd/Makefile b/usr.sbin/apmd/Makefile index d5754a377e8..3832b8578fd 100644 --- a/usr.sbin/apmd/Makefile +++ b/usr.sbin/apmd/Makefile @@ -1,7 +1,8 @@ -# $OpenBSD: Makefile,v 1.8 2005/03/29 16:26:45 miod Exp $ +# $OpenBSD: Makefile,v 1.9 2006/03/14 22:30:53 sturm Exp $ -.if (${MACHINE} == "i386") || (${MACHINE} == "macppc") || \ - (${MACHINE} == "sparc") || (${MACHINE} == "zaurus") +.if (${MACHINE} == "amd64") || (${MACHINE} == "i386") || \ + (${MACHINE} == "macppc") || (${MACHINE} == "sparc") || \ + (${MACHINE} == "zaurus") SRCS= apmd.c apmsubr.c PROG= apmd @@ -10,6 +11,6 @@ NOPROG=yes .endif MAN= apmd.8 -MANSUBDIR=i386 macppc sparc zaurus +MANSUBDIR=amd64 i386 macppc sparc zaurus .include <bsd.prog.mk> |