Hi Peter, Peter Johansson writes: > On 03/08/2015 07:46 PM, Harlan Stenn wrote: > > The problem I'm seeing (with at least automake-1.12.1 and automake-1.15) > > is that the .deps directories are not being created along the subdir > > path, so the build is failing. > > > > So if A/Makefile.am contains: > > > > foo_SRCS = ... $(srcdir)/../foo/bar.c > Hi Harlan, > > I had the same issue and wouldn't care unless Automake 1.15 started to > warn about "source file in a subdirectory". In my case 'bar.o' is also > built from 'foo/Makefile' so I decided to skip using 'bar.c' as SOURCE > and instead link in 'foo/bar.o'. > > http://dev.thep.lu.se/svndigest/changeset/1581
The problem is that in this case, A/Makefile is the *only* place that bar.o is created and used. There is no other location for me to link to an object. H