Home | History | Annotate | Line # | Download | only in savecore
Makefile revision 1.16
      1  1.16  thorpej #	$NetBSD: Makefile,v 1.16 1997/04/09 22:10:23 thorpej 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.15  thorpej 	(${MACHINE} == "pc532")   || \
     12  1.15  thorpej 	(${MACHINE} == "powerpc") || \
     13  1.15  thorpej 	(${MACHINE} == "sparc")   || \
     14  1.15  thorpej 	(${MACHINE} == "sun3")    || \
     15  1.15  thorpej 	(${MACHINE} == "sun3x")
     16   1.9      cgd SRCS=	savecore.c
     17  1.10      gwr LDADD=	-lkvm
     18  1.10      gwr DPADD=	${LIBKVM}
     19   1.9      cgd .else
     20   1.9      cgd SRCS=	savecore_old.c
     21   1.9      cgd .endif
     22   1.9      cgd SRCS+=	zopen.c
     23   1.7      cgd MAN=	savecore.8
     24   1.5       pk .PATH:	${.CURDIR}/../../usr.bin/compress
     25   1.1      cgd 
     26   1.1      cgd .include <bsd.prog.mk>
     27