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 jeng...@medozas.de wrote: In one project I use -- though not a header + main makefile but a main makefile + subordinates layout --: # Makefile.am (http://tinyurl.com/dhxfwf)

Re: Generate objects in right directory

2008-09-08 Thread Jeroen N. Witmond [Bahco]
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 [EMAIL PROTECTED] To: Jeroen N. Witmond [Bahco] [EMAIL PROTECTED] Cc: [EMAIL PROTECTED

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

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

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.cxx in problem_SOURCES is ignored. Can you