summaryrefslogtreecommitdiff
path: root/sbin/savecore/Makefile
blob: 5b294f2c9134652c886cb949074fb6c85f2073ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$OpenBSD: Makefile,v 1.15 1999/04/23 05:21:56 downsj Exp $

PROG=	savecore

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