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