Hi Paolo, The patchlet below allows uses of source file with .cc extension.
This comes out of work being done on the C++ front-end and has merit of its own. OK to apply? Thanks, -- Gaby 2013-03-26 Gabriel Dos Reis <g...@integrable-solutions.net> * Makefile.in (.SUFFIXES): Add .cc. (.c.o): Apply same recipe for implicit rule .cc.o. Index: Makefile.in =================================================================== --- Makefile.in (revision 196984) +++ Makefile.in (working copy) @@ -48,7 +48,7 @@ # This must come before the language makefile fragments to allow them to # add suffixes and rules of their own. .SUFFIXES: -.SUFFIXES: .c .o .po .pox .gmo +.SUFFIXES: .c .cc .o .po .pox .gmo # ------------------------------- # Standard autoconf-set variables @@ -1054,7 +1054,7 @@ $(CPPINC) $(GMPINC) $(DECNUMINC) $(BACKTRACEINC) \ $(CLOOGINC) $(ISLINC) -.c.o: +.cc.o .c.o: $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION) #