NetBSD/sbin/savecore/Makefile

29 lines
687 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.20 1997/05/08 21:11:33 gwr Exp $
# @(#)Makefile 8.2 (Berkeley) 4/17/94
1993-03-21 12:45:37 +03:00
PROG= savecore
# XXX Temporary, until other ports use new libkvm
1997-03-31 03:42:24 +04:00
.if (${MACHINE} == "alpha") || \
(${MACHINE} == "amiga") || \
(${MACHINE} == "atari") || \
1997-04-10 02:10:23 +04:00
(${MACHINE} == "hp300") || \
1997-04-23 23:33:15 +04:00
(${MACHINE} == "mac68k") || \
(${MACHINE} == "mvme68k") || \
1997-03-31 03:42:24 +04:00
(${MACHINE} == "pc532") || \
(${MACHINE} == "powerpc") || \
(${MACHINE} == "sparc") || \
(${MACHINE} == "sun3") || \
(${MACHINE} == "sun3x")
SRCS= savecore.c
LDADD= -lkvm
DPADD= ${LIBKVM}
.else
SRCS= savecore_old.c
.endif
SRCS+= zopen.c
1994-12-22 13:44:04 +03:00
MAN= savecore.8
.PATH: ${.CURDIR}/../../usr.bin/compress
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>