summaryrefslogtreecommitdiff
path: root/sbin/savecore/Makefile
blob: 7083d37bab3bfa845b7cf75814de1be49427a67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$OpenBSD: Makefile,v 1.16 2000/04/15 20:35:57 mickey Exp $

PROG=	savecore

# XXX Temporarily until pmax is able to use libkvm
.if	(${MACHINE} == "pmax")
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>