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
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
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