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