freebsd-src/usr.bin/gcore/Makefile

16 lines
229 B
Makefile
Raw Normal View History

1994-05-27 13:33:43 +01:00
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
1994-05-27 13:33:43 +01:00
PROG= gcore
1998-10-19 20:42:18 +01:00
SRCS= elfcore.c gcore.c
2013-05-11 14:46:05 +01:00
DPADD= ${LIBSBUF} ${LIBUTIL}
LDADD= -lsbuf -lutil
.if ${MACHINE_ARCH} == "amd64"
SRCS+= elf32core.c
.endif
WARNS?= 1
1994-05-27 13:33:43 +01:00
.include <bsd.prog.mk>