1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: releng/11.0/usr.bin/gcore/Makefile 275042 2014-11-25 14:29:10Z bapt $
3
4PROG=	gcore
5SRCS=	elfcore.c gcore.c
6LIBADD=	sbuf util
7
8.if ${MACHINE_ARCH} == "amd64"
9SRCS+=	elf32core.c
10.endif
11
12WARNS?=	1
13
14.include <bsd.prog.mk>
15