This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: Libraries with sources in subdirectories?
- To: "Steven G. Johnson" <stevenj at alum dot mit dot edu>
- Subject: Re: Libraries with sources in subdirectories?
- From: Tom Tromey <tromey at redhat dot com>
- Date: 30 May 2001 08:13:59 -0600
- Cc: automake at gnu dot org
- List-Id: Discussion list for automake <automake.gnu.org>
- References: <Pine.LNX.4.10.10105292329400.30648-100000@superjdj.mit.edu>
- Reply-To: tromey at redhat dot com
>>>>> "Steven" == Steven G Johnson <stevenj@superjdj.mit.edu> writes:
>> You can even arrange to have the objects kept in subdirectories using:
>> AUTOMAKE_OPTIONS = subdir-objects
>> This option isn't really documented yet, but it is on my to-do list.
Steven> I assume you mean that bar/baz.c is normally built as
Steven> bar/baz.o, but if I include foobar-objects in
Steven> AUTOMAKE_OPTIONS, then *all* objects will be kept in foobar/.
Steven> That's a nice feature, too.
Sorry, nope.
Normally bar/baz.c is built as bar.o.
With subdir-objects it is built as bar/baz.o.
There's no way to do what you suggested.
That might be interesting to enable, but definitely not in 1.5.
Tom