Makefile revision 1.16
11.16Sthorpej# $NetBSD: Makefile,v 1.16 1997/04/09 22:10:23 thorpej Exp $ 21.8Scgd# @(#)Makefile 8.2 (Berkeley) 4/17/94 31.1Scgd 41.1ScgdPROG= savecore 51.10Sgwr 61.10Sgwr# XXX Temporary, until other ports use new libkvm 71.15Sthorpej.if (${MACHINE} == "alpha") || \ 81.15Sthorpej (${MACHINE} == "amiga") || \ 91.15Sthorpej (${MACHINE} == "atari") || \ 101.16Sthorpej (${MACHINE} == "hp300") || \ 111.15Sthorpej (${MACHINE} == "pc532") || \ 121.15Sthorpej (${MACHINE} == "powerpc") || \ 131.15Sthorpej (${MACHINE} == "sparc") || \ 141.15Sthorpej (${MACHINE} == "sun3") || \ 151.15Sthorpej (${MACHINE} == "sun3x") 161.9ScgdSRCS= savecore.c 171.10SgwrLDADD= -lkvm 181.10SgwrDPADD= ${LIBKVM} 191.9Scgd.else 201.9ScgdSRCS= savecore_old.c 211.9Scgd.endif 221.9ScgdSRCS+= zopen.c 231.7ScgdMAN= savecore.8 241.5Spk.PATH: ${.CURDIR}/../../usr.bin/compress 251.1Scgd 261.1Scgd.include <bsd.prog.mk> 27