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