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