Re: Automake 1.14 and subdir-objects

2014-08-14 Thread Václav Zeman
On 14 August 2014 00:56, David Beer db...@adaptivecomputing.com wrote: Gavin, I am going to test out and see if the BUILT_SOURCES option works. Making a single Makefile would not be an option as there are over 500 Makefiles in my project and combining them into one would not be maintainable.

Re: Automake 1.14 and subdir-objects

2014-08-13 Thread David Beer
Gavin, I am going to test out and see if the BUILT_SOURCES option works. Making a single Makefile would not be an option as there are over 500 Makefiles in my project and combining them into one would not be maintainable. I'm curious though - am I really the only person having this issue? How

Re: Automake 1.14 and subdir-objects

2014-08-13 Thread Harlan Stenn
David Beer writes: I'm curious though - am I really the only person having this issue? How are people using unit tests with the new version of automake? It would seem that these changes make it very difficult for anyone who has unit tests in their project. I can't speak to the unit test issue

Re: Automake 1.14 and subdir-objects

2014-07-31 Thread David Beer
Gavin, Thanks for your reply. Here's a more specific breakdown of what the project does: src/a/Makefile.am: a_SOURCES = bob.c tom.c src/b/Makefile.am: b_SOURCES = mary.c ../a/tom.c The purpose was so that tom.c would be recompiled with a different preprocessor switch. There were only a few

Re: Automake 1.14 and subdir-objects

2014-07-31 Thread Gavin Smith
On Thu, Jul 31, 2014 at 9:32 PM, David Beer db...@adaptivecomputing.com wrote: Gavin, Thanks for your reply. Here's a more specific breakdown of what the project does: src/a/Makefile.am: a_SOURCES = bob.c tom.c src/b/Makefile.am: b_SOURCES = mary.c ../a/tom.c The purpose was so that