Home | History | Annotate | Line # | Download | only in savecore
Makefile revision 1.21
      1 #	$NetBSD: Makefile,v 1.21 1998/02/18 01:24:08 thorpej 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} == "hp300")   || \
     11 	(${MACHINE} == "i386")    || \
     12 	(${MACHINE} == "mac68k")  || \
     13 	(${MACHINE} == "mvme68k") || \
     14 	(${MACHINE} == "pc532")   || \
     15 	(${MACHINE} == "powerpc") || \
     16 	(${MACHINE} == "sparc")   || \
     17 	(${MACHINE} == "sun3")    || \
     18 	(${MACHINE} == "sun3x")
     19 SRCS=	savecore.c
     20 LDADD=	-lkvm
     21 DPADD=	${LIBKVM}
     22 .else
     23 SRCS=	savecore_old.c
     24 .endif
     25 SRCS+=	zopen.c
     26 MAN=	savecore.8
     27 .PATH:	${.CURDIR}/../../usr.bin/compress
     28 
     29 .include <bsd.prog.mk>
     30