244a51db99
is savecore.c, move it back into the 'savecore' dir (renamed as savecore_old.c) so that the build is more 'normal,' and more like what it used to be.
15 lines
325 B
Makefile
15 lines
325 B
Makefile
# $NetBSD: Makefile,v 1.9 1996/03/30 06:49:21 cgd Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 4/17/94
|
|
|
|
PROG= savecore
|
|
.if (${MACHINE} == "atari") # XXX until other ports use new libkvm
|
|
SRCS= savecore.c
|
|
.else
|
|
SRCS= savecore_old.c
|
|
.endif
|
|
SRCS+= zopen.c
|
|
MAN= savecore.8
|
|
.PATH: ${.CURDIR}/../../usr.bin/compress
|
|
|
|
.include <bsd.prog.mk>
|