1 # $NetBSD: Makefile,v 1.9 1996/03/30 06:49:21 cgd Exp $ 2 # @(#)Makefile 8.2 (Berkeley) 4/17/94 3 4 PROG= savecore 5 .if (${MACHINE} == "atari") # XXX until other ports use new libkvm 6 SRCS= savecore.c 7 .else 8 SRCS= savecore_old.c 9 .endif 10 SRCS+= zopen.c 11 MAN= savecore.8 12 .PATH: ${.CURDIR}/../../usr.bin/compress 13 14 .include <bsd.prog.mk> 15