Makefile revision 1.22
1#	$NetBSD: Makefile,v 1.22 1998/02/19 07:08:09 thorpej Exp $
2#	@(#)Makefile	8.2 (Berkeley) 4/17/94
3
4PROG=	savecore
5
6# XXX Temporary until these ports are able to use libkvm.
7.if	(${MACHINE_ARCH} == "mips")
8SRCS=	savecore.old
9.else
10SRCS=	savecore.c
11LDADD=	-lkvm
12DPADD=	${LIBKVM}
13.endif
14SRCS+=	zopen.c
15MAN=	savecore.8
16.PATH:	${.CURDIR}/../../usr.bin/compress
17
18.include <bsd.prog.mk>
19