mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 02:10:45 -05:00
It contain all the binaries and libs from the elftoolchain contrib project except for libelf which is used everywhere. All of those tools are never used by the average user. Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D38224
18 lines
280 B
Makefile
18 lines
280 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= elftoolchain
|
|
|
|
ELFTCDIR= ${SRCTOP}/contrib/elftoolchain
|
|
ADDR2LINEDIR= ${ELFTCDIR}/addr2line
|
|
|
|
.PATH: ${ADDR2LINEDIR}
|
|
|
|
PROG= addr2line
|
|
|
|
LIBADD= elftc dwarf elf
|
|
|
|
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
|
|
|
|
.include <bsd.prog.mk>
|