1 1.21 thorpej # $NetBSD: Makefile,v 1.21 1998/02/18 01:24:08 thorpej Exp $ 2 1.8 cgd # @(#)Makefile 8.2 (Berkeley) 4/17/94 3 1.1 cgd 4 1.1 cgd PROG= savecore 5 1.10 gwr 6 1.10 gwr # XXX Temporary, until other ports use new libkvm 7 1.15 thorpej .if (${MACHINE} == "alpha") || \ 8 1.15 thorpej (${MACHINE} == "amiga") || \ 9 1.15 thorpej (${MACHINE} == "atari") || \ 10 1.16 thorpej (${MACHINE} == "hp300") || \ 11 1.21 thorpej (${MACHINE} == "i386") || \ 12 1.17 scottr (${MACHINE} == "mac68k") || \ 13 1.18 thorpej (${MACHINE} == "mvme68k") || \ 14 1.15 thorpej (${MACHINE} == "pc532") || \ 15 1.15 thorpej (${MACHINE} == "powerpc") || \ 16 1.15 thorpej (${MACHINE} == "sparc") || \ 17 1.15 thorpej (${MACHINE} == "sun3") || \ 18 1.15 thorpej (${MACHINE} == "sun3x") 19 1.9 cgd SRCS= savecore.c 20 1.10 gwr LDADD= -lkvm 21 1.10 gwr DPADD= ${LIBKVM} 22 1.9 cgd .else 23 1.9 cgd SRCS= savecore_old.c 24 1.9 cgd .endif 25 1.9 cgd SRCS+= zopen.c 26 1.7 cgd MAN= savecore.8 27 1.20 gwr .PATH: ${.CURDIR}/../../usr.bin/compress 28 1.1 cgd 29 1.1 cgd .include <bsd.prog.mk> 30