summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/apm/Makefile6
-rw-r--r--usr.sbin/apmd/Makefile6
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/apm/Makefile b/usr.sbin/apm/Makefile
index b23fec39cd5..70a25d6c892 100644
--- a/usr.sbin/apm/Makefile
+++ b/usr.sbin/apm/Makefile
@@ -1,7 +1,7 @@
-# $OpenBSD: Makefile,v 1.6 2000/09/21 14:59:40 mickey Exp $
+# $OpenBSD: Makefile,v 1.7 2001/10/03 19:07:58 drahn Exp $
-.if ${MACHINE} == "i386"
+.if (${MACHINE} == "i386") || (${MACHINE} == "macppc")
SRCS= apm.c apmsubr.c
.PATH: ${.CURDIR}/../apmd
@@ -14,7 +14,7 @@ NOPROG=yes
.endif
MAN= apm.8
-MANSUBDIR=i386
+MANSUBDIR=i386 macppc
MLINKS= apm.8 zzz.8
.include <bsd.prog.mk>
diff --git a/usr.sbin/apmd/Makefile b/usr.sbin/apmd/Makefile
index 31411a8bcaf..40b750eab72 100644
--- a/usr.sbin/apmd/Makefile
+++ b/usr.sbin/apmd/Makefile
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.5 2000/09/21 14:59:40 mickey Exp $
+# $OpenBSD: Makefile,v 1.6 2001/10/03 19:07:58 drahn Exp $
-.if ${MACHINE} == "i386"
+.if (${MACHINE} == "i386") || (${MACHINE} == "macppc")
SRCS= apmd.c apmsubr.c
PROG= apmd
@@ -9,6 +9,6 @@ NOPROG=yes
.endif
MAN= apmd.8
-MANSUBDIR=i386
+MANSUBDIR=i386 macppc
.include <bsd.prog.mk>