mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 17:19:56 -05:00
17 lines
237 B
Makefile
17 lines
237 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
.include <src.opts.mk>
|
||
|
|
|
||
|
|
ELFTCDIR= ${.CURDIR}/../../contrib/elftoolchain
|
||
|
|
NMDIR= ${ELFTCDIR}/nm
|
||
|
|
|
||
|
|
.PATH: ${NMDIR}
|
||
|
|
|
||
|
|
PROG= nm
|
||
|
|
|
||
|
|
LIBADD= dwarf elftc elf
|
||
|
|
|
||
|
|
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
|
||
|
|
|
||
|
|
.include <bsd.prog.mk>
|