2821bdccaa
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
18 lines
248 B
Makefile
18 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>
|