mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 11:20:29 -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
17 lines
248 B
Makefile
17 lines
248 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
ELFTCDIR= ${SRCTOP}/contrib/elftoolchain
|
|
SRCDIR= ${ELFTCDIR}/cxxfilt
|
|
|
|
.PATH: ${SRCDIR}
|
|
|
|
PROG= c++filt
|
|
SRCS= cxxfilt.c
|
|
|
|
LIBADD= elftc
|
|
|
|
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
|
|
|
|
.include <bsd.prog.mk>
|