xref: /dragonfly/usr.bin/gcore/Makefile (revision 984263bc)
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
4PROG=	gcore
5SRCS=	elfcore.c gcore.c
6CFLAGS+=-Wall
7DPADD=	${LIBKVM}
8LDADD=	-lkvm
9
10.if	${MACHINE_ARCH} != "sparc"
11SRCS+=	md-nop.c
12.else
13SRCS+=	md-${MACHINE_ARCH}.c
14.endif
15
16.include <bsd.prog.mk>
17