Makefile revision 1.20
11.20Sgwr#	$NetBSD: Makefile,v 1.20 1997/05/08 21:11:33 gwr Exp $
21.8Scgd#	@(#)Makefile	8.2 (Berkeley) 4/17/94
31.1Scgd
41.1ScgdPROG=	savecore
51.10Sgwr
61.10Sgwr# XXX Temporary, until other ports use new libkvm
71.15Sthorpej.if	(${MACHINE} == "alpha")   || \
81.15Sthorpej	(${MACHINE} == "amiga")   || \
91.15Sthorpej	(${MACHINE} == "atari")   || \
101.16Sthorpej	(${MACHINE} == "hp300")   || \
111.17Sscottr	(${MACHINE} == "mac68k")  || \
121.18Sthorpej	(${MACHINE} == "mvme68k") || \
131.15Sthorpej	(${MACHINE} == "pc532")   || \
141.15Sthorpej	(${MACHINE} == "powerpc") || \
151.15Sthorpej	(${MACHINE} == "sparc")   || \
161.15Sthorpej	(${MACHINE} == "sun3")    || \
171.15Sthorpej	(${MACHINE} == "sun3x")
181.9ScgdSRCS=	savecore.c
191.10SgwrLDADD=	-lkvm
201.10SgwrDPADD=	${LIBKVM}
211.9Scgd.else
221.9ScgdSRCS=	savecore_old.c
231.9Scgd.endif
241.9ScgdSRCS+=	zopen.c
251.7ScgdMAN=	savecore.8
261.20Sgwr.PATH:	${.CURDIR}/../../usr.bin/compress
271.1Scgd
281.1Scgd.include <bsd.prog.mk>
29