31d743df76
The 64-bit machine supported right now is amd64, but it's not too hard to add powerpc64. Obtained from: Juniper Networks, Inc.
16 lines
229 B
Makefile
16 lines
229 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= gcore
|
|
SRCS= elfcore.c gcore.c
|
|
DPADD= ${LIBSBUF} ${LIBUTIL}
|
|
LDADD= -lsbuf -lutil
|
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
SRCS+= elf32core.c
|
|
.endif
|
|
|
|
WARNS?= 1
|
|
|
|
.include <bsd.prog.mk>
|