Re: Overriding suffix based implicit rules

2007-03-27 Thread Ralf Wildenhues
Hello Artus, * Artus wrote on Tue, Mar 27, 2007 at 02:40:06PM CEST: > > What shoul I write in Makefile.am to inform automake that .c files in this > specific directory are C++ source files and not C files? I tried the > following with no sucess (and I do not want to rename the files). Well, rena

Re: Overriding suffix based implicit rules

2007-03-27 Thread Stepan Kasal
Hello, On Tue, Mar 27, 2007 at 05:40:06AM -0700, Artus wrote: > What should I write in Makefile.am to inform automake that .c files in this > specific directory are C++ source files and not C files? I tried the > following with no sucess (and I do not want to rename the files). "no success" is fa

Overriding suffix based implicit rules

2007-03-27 Thread Artus
Hi, What shoul I write in Makefile.am to inform automake that .c files in this specific directory are C++ source files and not C files? I tried the following with no sucess (and I do not want to rename the files). # Makefile.am .c.o: $(CXX) $(CXXFLAGS) -c $< -o $@ lib_LTLIBRARIES = libadn