diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-01-19 02:02:35 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-01-19 02:02:35 +0000 |
commit | 01f308907b3edaf28e20dfb3875d2cb969b1b185 (patch) | |
tree | d24de5076140afc7ae4c23f89422ea87a23303e3 /usr.sbin/apmd | |
parent | 9b80c4fe9ef02d77bb4d2cedf41da21bdaaec693 (diff) |
APM emulation framework and zaurus scoop driver. Not enabled yet.
ok drahn@, deraadt@
Diffstat (limited to 'usr.sbin/apmd')
-rw-r--r-- | usr.sbin/apmd/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/apmd/Makefile b/usr.sbin/apmd/Makefile index 40b750eab72..5fd01009143 100644 --- a/usr.sbin/apmd/Makefile +++ b/usr.sbin/apmd/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.6 2001/10/03 19:07:58 drahn Exp $ +# $OpenBSD: Makefile,v 1.7 2005/01/19 02:02:34 uwe Exp $ -.if (${MACHINE} == "i386") || (${MACHINE} == "macppc") +.if (${MACHINE} == "i386") || (${MACHINE} == "macppc") || \ + (${MACHINE} == "zaurus") SRCS= apmd.c apmsubr.c PROG= apmd @@ -9,6 +10,6 @@ NOPROG=yes .endif MAN= apmd.8 -MANSUBDIR=i386 macppc +MANSUBDIR=i386 macppc zaurus .include <bsd.prog.mk> |