diff options
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/apm/Makefile | 5 | ||||
-rw-r--r-- | usr.sbin/apmd/Makefile | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/usr.sbin/apm/Makefile b/usr.sbin/apm/Makefile index 70a25d6c892..ad1c3f6c673 100644 --- a/usr.sbin/apm/Makefile +++ b/usr.sbin/apm/Makefile @@ -1,7 +1,8 @@ -# $OpenBSD: Makefile,v 1.7 2001/10/03 19:07:58 drahn Exp $ +# $OpenBSD: Makefile,v 1.8 2005/01/19 02:02:34 uwe Exp $ -.if (${MACHINE} == "i386") || (${MACHINE} == "macppc") +.if (${MACHINE} == "i386") || (${MACHINE} == "macppc") || \ + (${MACHINE} == "zaurus") SRCS= apm.c apmsubr.c .PATH: ${.CURDIR}/../apmd 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> |