mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
This produces a nicer path in debug info and build logs. MFC after: 1 week Sponsored by: The FreeBSD Foundation
16 lines
235 B
Makefile
16 lines
235 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
ELFTCDIR= ${.CURDIR:H:H}/contrib/elftoolchain
|
|
NMDIR= ${ELFTCDIR}/nm
|
|
|
|
.PATH: ${NMDIR}
|
|
|
|
PROG= nm
|
|
|
|
LIBADD= dwarf elftc elf
|
|
|
|
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
|
|
|
|
.include <bsd.prog.mk>
|