diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-04-21 23:47:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-04-21 23:47:39 +0000 |
commit | 882e83ccf31fca22178b290a6753a605bb52044c (patch) | |
tree | e2e6ec6ef7e162fd03a03e5c71bc96ce90d1c105 /sbin/savecore/Makefile | |
parent | 67d88b0a9910a68bb666b448d2dac29cb4d3d8c2 (diff) |
sync to netbsd 960418
Diffstat (limited to 'sbin/savecore/Makefile')
-rw-r--r-- | sbin/savecore/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sbin/savecore/Makefile b/sbin/savecore/Makefile index 31fd8b57608..6a5af9c16ce 100644 --- a/sbin/savecore/Makefile +++ b/sbin/savecore/Makefile @@ -1,8 +1,13 @@ -# $NetBSD: Makefile,v 1.8 1995/03/18 15:00:59 cgd Exp $ +# $NetBSD: Makefile,v 1.9 1996/03/30 06:49:21 cgd Exp $ # @(#)Makefile 8.2 (Berkeley) 4/17/94 PROG= savecore -SRCS= savecore.c zopen.c +.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 |