Re: Incorrect rule generated for assembly source with subdir-objects

2007-04-28 Thread Ralf Wildenhues
Hello Bas, * Bas Wijnen wrote on Fri, Apr 27, 2007 at 01:51:37PM CEST: > When using subdir-objects and assembly source (with CCAS), the generated > rule does > > gcc -g -O2 -c > > For a filename path/to/file.S, this creates file.o, not path/to/file.o. Please try Automake-1.10 rather than 1.9.x

Incorrect rule generated for assembly source with subdir-objects

2007-04-27 Thread Bas Wijnen
When using subdir-objects and assembly source (with CCAS), the generated rule does gcc -g -O2 -c For a filename path/to/file.S, this creates file.o, not path/to/file.o. As a workaround, AM_CCASFLAGS = -o $@ can be specified. This should be implicit in CCASCOMPILE though. Thanks, Bas Wijnen -