mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 06:45:34 -05:00
It's provided by sys.mk so there's no need to derive it from ${.CURDIR}.
Suggested by: ngie
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D5998
16 lines
231 B
Makefile
16 lines
231 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
ELFTCDIR= ${SRCTOP}/contrib/elftoolchain
|
|
SIZEDIR= ${ELFTCDIR}/size
|
|
|
|
.PATH: ${SIZEDIR}
|
|
|
|
PROG= size
|
|
|
|
LIBADD= elftc elf
|
|
|
|
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
|
|
|
|
.include <bsd.prog.mk>
|