Makefile revision 1.10
1#	$NetBSD: Makefile,v 1.10 1996/05/08 17:00:10 gwr Exp $
2#	@(#)Makefile	8.2 (Berkeley) 4/17/94
3
4PROG=	savecore
5
6# XXX Temporary, until other ports use new libkvm
7.if	(${MACHINE} == "atari") || \
8	(${MACHINE} == "sun3")
9SRCS=	savecore.c
10LDADD=	-lkvm
11DPADD=	${LIBKVM}
12.else
13SRCS=	savecore_old.c
14.endif
15SRCS+=	zopen.c
16MAN=	savecore.8
17.PATH:	${.CURDIR}/../../usr.bin/compress
18
19.include <bsd.prog.mk>
20