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