freebsd-dev/usr.bin/gcore/Makefile

16 lines
269 B
Makefile
Raw Normal View History

1994-05-27 12:33:43 +00:00
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
1994-05-27 12:33:43 +00:00
PROG= gcore
1998-10-19 19:42:18 +00:00
SRCS= elfcore.c gcore.c
LIBADD= sbuf util
.if ${MACHINE_ARCH} == "aarch64" || ${MACHINE_ARCH} == "amd64" || \
${MACHINE_ARCH} == "powerpc64"
SRCS+= elf32core.c
.endif
WARNS?= 1
1994-05-27 12:33:43 +00:00
.include <bsd.prog.mk>