This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [BUG] nasm files are not processed in automake generatedMakefiles


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)



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]