1 # $NetBSD: Makefile,v 1.15 1997/03/30 23:42:24 thorpej Exp $ 2 # @(#)Makefile 8.2 (Berkeley) 4/17/94 3 4 PROG= 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") 15 SRCS= savecore.c 16 LDADD= -lkvm 17 DPADD= ${LIBKVM} 18 .else 19 SRCS= savecore_old.c 20 .endif 21 SRCS+= zopen.c 22 MAN= savecore.8 23 .PATH: ${.CURDIR}/../../usr.bin/compress 24 25 .include <bsd.prog.mk> 26