2e280533a1
This finishes up the binutils import. But I am leaving it disabled in "src/gnu/usr.bin/Makefile" for now. It is not used by anything yet, so I'll take this opportunity to run one more round of tests before enabling it.
18 lines
320 B
Makefile
18 lines
320 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
.include "../Makefile.inc0"
|
|
|
|
.PATH: ${SRCDIR}/binutils
|
|
|
|
PROG= addr2line
|
|
SRCS= addr2line.c
|
|
CFLAGS+= -I${.CURDIR}/${RELTOP}/libbinutils
|
|
CFLAGS+= -I${SRCDIR}/binutils
|
|
LDADD+= -L${RELTOP}/libbinutils -lbinutils
|
|
LDADD+= -L${RELTOP}/libbfd -lbfd
|
|
LDADD+= -L${RELTOP}/libiberty -liberty
|
|
|
|
.include <bsd.prog.mk>
|