diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2009-09-29 23:01:30 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2009-09-29 23:01:30 -0400 |
commit | d5f4edddeb609ad93c7a69ad4575b082de8dc707 (patch) | |
tree | a0717adf99d475ef98d9002044972a7ab9c3e5d6 /libiberty/Makefile.in | |
parent | 300ea2831b894fc143539fe0319f39062b6e4daf (diff) | |
download | gcc-d5f4edddeb609ad93c7a69ad4575b082de8dc707.zip gcc-d5f4edddeb609ad93c7a69ad4575b082de8dc707.tar.gz gcc-d5f4edddeb609ad93c7a69ad4575b082de8dc707.tar.bz2 |
merge in cxx0x-lambdas-branch@152308
From-SVN: r152318
Diffstat (limited to 'libiberty/Makefile.in')
-rw-r--r-- | libiberty/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 5d2adff..ba24c6d 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -371,10 +371,12 @@ TAGS: $(CFILES) etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done` # The standalone demangler (c++filt) has been moved to binutils. -demangle: +# But make this target work anyway for demangler hacking. +demangle: $(ALL) $(srcdir)/cp-demangle.c @echo "The standalone demangler, now named c++filt, is now" @echo "a part of binutils." - @false + $(CC) @DEFS@ $(CFLAGS) $(CPPFLAGS) -I. -I$(INCDIR) $(HDEFINES) \ + $(srcdir)/cp-demangle.c -DSTANDALONE_DEMANGLER $(TARGETLIB) -o $@ ls: @echo Makefile $(CFILES) |