xref: /freebsd/usr.bin/gcore/Makefile (revision 22cf89c938886d14f5796fc49f9f020c23ea8eaf)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2
3PROG=	gcore
4SRCS=	elfcore.c gcore.c
5LIBADD=	sbuf util
6
7.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_ARCH} == "amd64" || \
8    ${MACHINE_ARCH} == "powerpc64"
9SRCS+=	elf32core.c
10.endif
11
12WARNS?=	1
13
14.include <bsd.prog.mk>
15