Home | History | Annotate | Line # | Download | only in savecore
Makefile revision 1.12
      1 #	$NetBSD: Makefile,v 1.12 1996/10/01 14:42:31 cgd Exp $
      2 #	@(#)Makefile	8.2 (Berkeley) 4/17/94
      3 
      4 PROG=	savecore
      5 
      6 # XXX Temporary, until other ports use new libkvm
      7 .if	(${MACHINE} == "alpha") || \
      8 	(${MACHINE} == "amiga") || \
      9 	(${MACHINE} == "atari") || \
     10 	(${MACHINE} == "sun3")
     11 SRCS=	savecore.c
     12 LDADD=	-lkvm
     13 DPADD=	${LIBKVM}
     14 .else
     15 SRCS=	savecore_old.c
     16 .endif
     17 SRCS+=	zopen.c
     18 MAN=	savecore.8
     19 .PATH:	${.CURDIR}/../../usr.bin/compress
     20 
     21 .include <bsd.prog.mk>
     22