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