Home | History | Annotate | Line # | Download | only in savecore
Makefile revision 1.11
      1 #	$NetBSD: Makefile,v 1.11 1996/05/12 04:36:29 mhitch 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} == "amiga") || \
      8 	(${MACHINE} == "atari") || \
      9 	(${MACHINE} == "sun3")
     10 SRCS=	savecore.c
     11 LDADD=	-lkvm
     12 DPADD=	${LIBKVM}
     13 .else
     14 SRCS=	savecore_old.c
     15 .endif
     16 SRCS+=	zopen.c
     17 MAN=	savecore.8
     18 .PATH:	${.CURDIR}/../../usr.bin/compress
     19 
     20 .include <bsd.prog.mk>
     21