1# @(#)Makefile 8.1 (Berkeley) 6/6/93 2# $FreeBSD$ 3 4PROG= gcore 5SRCS= elfcore.c gcore.c 6LIBADD= sbuf util 7 8.if ${MACHINE_ARCH} == "amd64" 9SRCS+= elf32core.c 10.endif 11 12WARNS?= 1 13 14.include <bsd.prog.mk> 15