diff options
author | 1999-04-23 05:20:40 +0000 | |
---|---|---|
committer | 1999-04-23 05:20:40 +0000 | |
commit | ab48ca10557420459dbd047665c62a3aa83ad258 (patch) | |
tree | 68580f4fb7637fa70ad6c6c2db4f7d5833491ff6 | |
parent | mmmmap() bounds check. (diff) | |
download | wireguard-openbsd-ab48ca10557420459dbd047665c62a3aa83ad258.tar.xz wireguard-openbsd-ab48ca10557420459dbd047665c62a3aa83ad258.zip |
mac68k uses libkvm now
-rw-r--r-- | lib/Makefile | 6 | ||||
-rw-r--r-- | sbin/savecore/Makefile | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/Makefile b/lib/Makefile index c8c2ed75bec..45c0a0b320a 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,14 +1,14 @@ -# $OpenBSD: Makefile,v 1.32 1999/01/19 05:45:25 d Exp $ +# $OpenBSD: Makefile,v 1.33 1999/04/23 05:20:40 downsj Exp $ # $NetBSD: Makefile,v 1.20.4.1 1996/06/14 17:22:38 cgd Exp $ SUBDIR= csu libarch libc libc_r libcom_err libcompat libcurses libdes libedit \ libform libl libm libmenu libocurses libossaudio libpanel libpcap \ libresolv librpcsvc libskey libssl libtelnet libutil libwrap liby libz -# XXX Temporarily until i386, pmax and mac68k are able to use libkvm +# XXX Temporarily until i386 and pmax are able to use libkvm .if make(obj) SUBDIR+= libkvm libkvm.old -.elif (${MACHINE} == "i386" || ${MACHINE} == "pmax" || ${MACHINE} == "mac68k") +.elif (${MACHINE} == "i386" || ${MACHINE} == "pmax") SUBDIR+= libkvm.old .else SUBDIR+= libkvm diff --git a/sbin/savecore/Makefile b/sbin/savecore/Makefile index 2767371dbb9..5b294f2c913 100644 --- a/sbin/savecore/Makefile +++ b/sbin/savecore/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.14 1998/09/26 21:39:42 ryker Exp $ +# $OpenBSD: Makefile,v 1.15 1999/04/23 05:21:56 downsj Exp $ PROG= savecore -# XXX Temporarily until i386, pmax and mac68k are able to use libkvm -.if (${MACHINE} == "i386" || ${MACHINE} == "pmax" || ${MACHINE} == "mac68k") +# XXX Temporarily until i386 and pmax are able to use libkvm +.if (${MACHINE} == "i386" || ${MACHINE} == "pmax") SRCS= savecore_old.c .else SRCS= savecore.c |