Makefile revision 1.17
1#	$NetBSD: Makefile,v 1.17 1997/04/23 19:34:34 scottr 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} == "alpha")   || \
8	(${MACHINE} == "amiga")   || \
9	(${MACHINE} == "atari")   || \
10	(${MACHINE} == "hp300")   || \
11	(${MACHINE} == "mac68k")  || \
12	(${MACHINE} == "pc532")   || \
13	(${MACHINE} == "powerpc") || \
14	(${MACHINE} == "sparc")   || \
15	(${MACHINE} == "sun3")    || \
16	(${MACHINE} == "sun3x")
17SRCS=	savecore.c
18LDADD=	-lkvm
19DPADD=	${LIBKVM}
20.else
21SRCS=	savecore_old.c
22.endif
23SRCS+=	zopen.c
24MAN=	savecore.8
25.PATH:	${.CURDIR}/../../usr.bin/compress
26
27.include <bsd.prog.mk>
28