Re: Appending to builtin Automake variables from an included file

2009-02-26 Thread Jeroen N. Witmond [Bahco]
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

Re: Generate objects in right directory

2008-09-08 Thread Jeroen N. Witmond [Bahco]
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"

Re: Generate objects in right directory

2008-09-05 Thread Jeroen N. Witmond [Bahco]
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

Re: Report to stdout like Linux kernel compilation does

2008-04-11 Thread Jeroen N. Witmond [Bahco]
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

Re: Problem mixing .cpp and .cxx in _SOURCES.

2008-04-07 Thread Jeroen N. Witmond [Bahco]
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 mixing .cpp and .cxx in _SOURCES.

2008-04-07 Thread Jeroen N. Witmond [Bahco]
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