xref: /freebsd/usr.bin/gcore/Makefile (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
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