Date: Thu, 30 Apr 2015 22:51:16 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r282288 - head/usr.bin/cxxfilt Message-ID: <201504302251.t3UMpG8S010458@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: emaste Date: Thu Apr 30 22:51:15 2015 New Revision: 282288 URL: https://svnweb.freebsd.org/changeset/base/282288 Log: Actually add c++filt's Makefile Missed in r282285 Pointy hat to: emaste Added: head/usr.bin/cxxfilt/ head/usr.bin/cxxfilt/Makefile (contents, props changed) Added: head/usr.bin/cxxfilt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/usr.bin/cxxfilt/Makefile Thu Apr 30 22:51:15 2015 (r282288) @@ -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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504302251.t3UMpG8S010458>