This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: [BUG] nasm files are not processed in automake generatedMakefiles
- From: Kevin Ryde <user42 at zip dot com dot au>
- To: Edouard Gomez <ed dot gomez at wanadoo dot fr>
- Cc: automake at gnu dot org
- Date: Sat, 24 Aug 2002 08:55:20 +1000
- Subject: Re: [BUG] nasm files are not processed in automake generatedMakefiles
- References: <20020820235137.GA13372@leloo>
Edouard Gomez <ed.gomez@wanadoo.fr> writes:
>
> As libtool does not support nasm natively, i had to use a tip from the
> the libsdl library automake files. But like libsdl (you can read a
> mail from Arkadiusz Miskiewicz <misiek@pld.ORG.PL>, 20 Oct 2001) the
> nasm files are not processed.
I don't think it works to put .asm files in SOURCES. Or rather they
get distributed, but not recognised as turning into objects. I think
you can list the .lo files in LIBADD and DEPENDENCIES explicitly,
EXTRA_DIST = bar.asm
libfoo_la_DEPENDENCIES = bar.lo
libfoo_la_LIBADD = $(libfoo_la_DEPENDENCIES)