Allan Caffee wrote:
> Thank you both for your speedy responses.
>
> On Wed, Feb 25, 2009 at 7:04 PM, Jan Engelhardt
> wrote:
>> In one project I use -- though not a "header + main makefile" but
>> a "main makefile + subordinates" layout --:
>>
>> # Makefile.am (http://tinyurl.com/dhxfwf)
>> bin_PR
y
> /home/devbdie/obj/ate_calcul_diametre_rayon
`make` should always be invoked in the build directory. In your case this
is the same as the source directory (see above), so this result is
correct.
Hope this helps.
Jeroen.
> - Original Message -
> From: "Sebastien REYNES"
Add
AUTOMAKE_OPTIONS = subdir-objects
to the Makefile.am
> Yes I have read this but I believe this solution don't answer to my need.
> In fact, I must to respect this treeview from root :
>
> /home/devbdie/
> configure.ac
> Makefile
> Makefile.am
> ...
> /home/devbdie/src/module1/
> Makefile
> M
Some work on improving make output (pretty-printing) has been done for
Xerces-C http://xerces.apache.org/xerces-c/
See also this bugreport http://issues.apache.org/jira/browse/XERCESC-1440
You may want to ask about it on one of the mailing lists
http://xerces.apache.org/xerces-c/mailing-lists.ht
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
>
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