Hello Ralf,
"Ralf Wildenhues" <[EMAIL PROTECTED]> wrote:
> * Jeroen N. Witmond [Bahco] wrote on Mon, Apr 07, 2008 at 09:19:26PM CEST:
>>
>> problem_SOURCES = main.cpp problem.cxx
>>
>> # When a file problem.cpp is present, this file is compiled. File
>> # problem.cxx in problem_SOURCES is ignored.
Hello Jeroen,
* Jeroen N. Witmond [Bahco] wrote on Mon, Apr 07, 2008 at 09:19:26PM CEST:
>
> problem_SOURCES = main.cpp problem.cxx
>
> # When a file problem.cpp is present, this file is compiled. File
> # problem.cxx in problem_SOURCES is ignored.
Can you work around it by either
- removing pr
Greetings!
I've stumbled across a minor problem in automake, demonstated by the
Makefile.am below.
# Makefile.am
bin_PROGRAMS = problem
# There seems to be a problem with mixing .cpp and .cxx as extensions
# for C++ source file names.
problem_SOURCES = main.cpp problem.cxx
# When a file probl