From 83990d380a6e4d4427e77d8da5c5ce4362d35570 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 30 Apr 2015 22:51:15 +0000 Subject: [PATCH] Actually add c++filt's Makefile Missed in r282285 Pointy hat to: emaste --- usr.bin/cxxfilt/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 usr.bin/cxxfilt/Makefile 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 + +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