Home | History | Annotate | Line # | Download | only in gcore
Makefile revision 1.3
      1 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      2 #       $NetBSD: Makefile,v 1.3 1995/09/05 09:11:55 phil Exp $
      3 
      4 PROG=	gcore
      5 SRCS=	gcore.c
      6 
      7 .if ${MACHINE} == pc532
      8 SRCS += md-nop.c
      9 .else
     10 SRCS += md-${MACHINE}.c
     11 .endif
     12 
     13 LDADD=	-lkvm
     14 
     15 .include <bsd.prog.mk>
     16