aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/cxxfilt
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2015-04-30 22:51:15 +0000
committerEd Maste <emaste@FreeBSD.org>2015-04-30 22:51:15 +0000
commit83990d380a6e4d4427e77d8da5c5ce4362d35570 (patch)
treebabad4e6732d7c1280f38bc95427a739a7b17e42 /usr.bin/cxxfilt
parent8325ce5c7ece96178d5c88edfea10b4971414090 (diff)
downloadsrc-83990d380a6e4d4427e77d8da5c5ce4362d35570.tar.gz
src-83990d380a6e4d4427e77d8da5c5ce4362d35570.zip
Actually add c++filt's Makefile
Missed in r282285 Pointy hat to: emaste
Notes
Notes: svn path=/head/; revision=282288
Diffstat (limited to 'usr.bin/cxxfilt')
-rw-r--r--usr.bin/cxxfilt/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/usr.bin/cxxfilt/Makefile b/usr.bin/cxxfilt/Makefile
new file mode 100644
index 000000000000..496b240a79d5
--- /dev/null
+++ b/usr.bin/cxxfilt/Makefile
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+.include <src.opts.mk>
+
+ELFTCDIR= ${.CURDIR}/../../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>