aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAlexander Kabaev <kan@FreeBSD.org>2004-11-09 03:17:07 +0000
committerAlexander Kabaev <kan@FreeBSD.org>2004-11-09 03:17:07 +0000
commitb683efc6bba8a6a8b567cbe1150ee8239e7d4a13 (patch)
tree6566e7c59de3f95994f79781b079548250946da4 /gnu
parentbc105d250f4f69182d774d5a8e069f9e3ce6455a (diff)
Notes
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/cc/Makefile2
-rw-r--r--gnu/usr.bin/cc/c++filt/Makefile9
2 files changed, 2 insertions, 9 deletions
diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile
index 69b4eb93e275..d8ea8c26ae28 100644
--- a/gnu/usr.bin/cc/Makefile
+++ b/gnu/usr.bin/cc/Makefile
@@ -10,7 +10,7 @@ SUBDIR+= cpp
.endif
.if !defined(NO_CXX)
-SUBDIR+= cc1plus c++
+SUBDIR+= cc1plus c++ c++filt
.if !defined(NO_COLLECT2)
#SUBDIR+= collect2
.endif
diff --git a/gnu/usr.bin/cc/c++filt/Makefile b/gnu/usr.bin/cc/c++filt/Makefile
index 045d33f820ec..31cd51e436f3 100644
--- a/gnu/usr.bin/cc/c++filt/Makefile
+++ b/gnu/usr.bin/cc/c++filt/Makefile
@@ -5,7 +5,7 @@
.PATH: ${GCCDIR}
PROG= c++filt
-SRCS= cp-demangle.c cplus-dem+%DIKED.c
+SRCS= cp-demangle.c
NOMAN= 1
CFLAGS+= -DSTANDALONE_DEMANGLER -DIN_GCC -DVERSION=\"$(version)\"
@@ -13,11 +13,4 @@ CFLAGS+= -DSTANDALONE_DEMANGLER -DIN_GCC -DVERSION=\"$(version)\"
DPADD= ${LIBCC_INT}
LDADD= ${LIBCC_INT}
-cplus-dem+%DIKED.c: cplus-dem.c
- sed -e 's/^xmalloc[ ]/_DONT_xmalloc /g' \
- -e 's/^xrealloc[ ]/_DONT_xrealloc /g' \
- ${.ALLSRC} > ${.TARGET}
-
-CLEANFILES= cplus-dem+%DIKED.c
-
.include <bsd.prog.mk>