xref: /dragonfly/usr.bin/gcore/Makefile (revision 2cd2d2b5)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: src/usr.bin/gcore/Makefile,v 1.6 1999/11/14 13:54:43 marcel Exp $
3# $DragonFly: src/usr.bin/gcore/Makefile,v 1.2 2003/06/17 04:29:26 dillon Exp $
4
5PROG=	gcore
6SRCS=	elfcore.c gcore.c
7CFLAGS+=-Wall
8DPADD=	${LIBKVM}
9LDADD=	-lkvm
10
11.if	${MACHINE_ARCH} != "sparc"
12SRCS+=	md-nop.c
13.else
14SRCS+=	md-${MACHINE_ARCH}.c
15.endif
16
17.include <bsd.prog.mk>
18