Home | History | Annotate | Line # | Download | only in savecore
Makefile revision 1.20
      1  1.20      gwr #	$NetBSD: Makefile,v 1.20 1997/05/08 21:11:33 gwr Exp $
      2   1.8      cgd #	@(#)Makefile	8.2 (Berkeley) 4/17/94
      3   1.1      cgd 
      4   1.1      cgd PROG=	savecore
      5  1.10      gwr 
      6  1.10      gwr # XXX Temporary, until other ports use new libkvm
      7  1.15  thorpej .if	(${MACHINE} == "alpha")   || \
      8  1.15  thorpej 	(${MACHINE} == "amiga")   || \
      9  1.15  thorpej 	(${MACHINE} == "atari")   || \
     10  1.16  thorpej 	(${MACHINE} == "hp300")   || \
     11  1.17   scottr 	(${MACHINE} == "mac68k")  || \
     12  1.18  thorpej 	(${MACHINE} == "mvme68k") || \
     13  1.15  thorpej 	(${MACHINE} == "pc532")   || \
     14  1.15  thorpej 	(${MACHINE} == "powerpc") || \
     15  1.15  thorpej 	(${MACHINE} == "sparc")   || \
     16  1.15  thorpej 	(${MACHINE} == "sun3")    || \
     17  1.15  thorpej 	(${MACHINE} == "sun3x")
     18   1.9      cgd SRCS=	savecore.c
     19  1.10      gwr LDADD=	-lkvm
     20  1.10      gwr DPADD=	${LIBKVM}
     21   1.9      cgd .else
     22   1.9      cgd SRCS=	savecore_old.c
     23   1.9      cgd .endif
     24   1.9      cgd SRCS+=	zopen.c
     25   1.7      cgd MAN=	savecore.8
     26  1.20      gwr .PATH:	${.CURDIR}/../../usr.bin/compress
     27   1.1      cgd 
     28   1.1      cgd .include <bsd.prog.mk>
     29