diff options
author | 2001-10-03 19:07:58 +0000 | |
---|---|---|
committer | 2001-10-03 19:07:58 +0000 | |
commit | cc00ef9f1d5554852f53387abc15a854ecc44391 (patch) | |
tree | 9d6ccd43e591dec0864af0c23ef173bc939827c3 | |
parent | Remove all traces of Kerberised NFS; it never worked in OpenBSD, but it (diff) | |
download | wireguard-openbsd-cc00ef9f1d5554852f53387abc15a854ecc44391.tar.xz wireguard-openbsd-cc00ef9f1d5554852f53387abc15a854ecc44391.zip |
build apm and apmd on macppc
ok miod@
-rw-r--r-- | usr.sbin/apm/Makefile | 6 | ||||
-rw-r--r-- | usr.sbin/apmd/Makefile | 6 |
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> |