summaryrefslogtreecommitdiff
path: root/sbin/savecore/Makefile
blob: 2767371dbb9777d443e744cc9029ccbd6c2f2605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$OpenBSD: Makefile,v 1.14 1998/09/26 21:39:42 ryker Exp $

PROG=	savecore

# XXX Temporarily until i386, pmax and mac68k are able to use libkvm
.if	(${MACHINE} == "i386" || ${MACHINE} == "pmax" || ${MACHINE} == "mac68k")
SRCS=	savecore_old.c
.else
SRCS=	savecore.c
LDADD=	-lkvm
DPADD=	${LIBKVM}
.endif
SRCS+=	zopen.c
MAN=	savecore.8
.PATH:	${.CURDIR}/../../usr.bin/compress

.include <bsd.prog.mk>