summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-05-22 12:10:02 +0000
committerderaadt <deraadt@openbsd.org>1996-05-22 12:10:02 +0000
commit5a0f00a9aa45e3afe65bba4c797a263cb832fb3c (patch)
tree93991341911f746a152b70ad5390a8b49e3ddd71
parentscsi here, +/- few other things (diff)
downloadwireguard-openbsd-5a0f00a9aa45e3afe65bba4c797a263cb832fb3c.tar.xz
wireguard-openbsd-5a0f00a9aa45e3afe65bba4c797a263cb832fb3c.zip
amiga uses new libkvm
-rw-r--r--sbin/savecore/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/sbin/savecore/Makefile b/sbin/savecore/Makefile
index 6a5af9c16ce..5d332216bfe 100644
--- a/sbin/savecore/Makefile
+++ b/sbin/savecore/Makefile
@@ -1,9 +1,15 @@
-# $NetBSD: Makefile,v 1.9 1996/03/30 06:49:21 cgd Exp $
+# $NetBSD: Makefile,v 1.11 1996/05/12 04:36:29 mhitch Exp $
# @(#)Makefile 8.2 (Berkeley) 4/17/94
PROG= savecore
-.if (${MACHINE} == "atari") # XXX until other ports use new libkvm
+
+# XXX Temporary, until other ports use new libkvm
+.if (${MACHINE} == "amiga") || \
+ (${MACHINE} == "atari") || \
+ (${MACHINE} == "sun3")
SRCS= savecore.c
+LDADD= -lkvm
+DPADD= ${LIBKVM}
.else
SRCS= savecore_old.c
.endif