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