This produces a nicer path in debug info and build logs. MFC after: 1 week Sponsored by: The FreeBSD Foundation
17 lines
262 B
Makefile
17 lines
262 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
ELFTCDIR= ${.CURDIR:H:H}/contrib/elftoolchain
|
|
ADDR2LINEDIR= ${ELFTCDIR}/addr2line
|
|
|
|
.PATH: ${ADDR2LINEDIR}
|
|
|
|
PROG= addr2line
|
|
|
|
LIBADD= elftc dwarf elf
|
|
|
|
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
|
|
|
|
.include <bsd.prog.mk>
|