automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: automake (cvs 2001 Feb 6) incorrectly sees .o rule collision


From: Tom Tromey
Subject: Re: automake (cvs 2001 Feb 6) incorrectly sees .o rule collision
Date: 07 Feb 2001 22:43:05 -0700

>>>>> "Adam" == Adam J Richter <address@hidden> writes:

Adam> EXTRA_PROGRAMS = typedefs
Adam> EXTRA_typedefs_SOURCES  = typedefs.l

Adam> It produced the following error:

Adam> automake: Makefile.am: object `typedefs.$(OBJEXT)' created by
Adam> `typedefs.c' and `

This is intentional.
You only specified EXTRA_typedefs_SOURCES for `typedefs'.
But this means that the default .c file rule is invoked.

Instead try adding `typedefs_SOURCES =' to Makefile.am.
Then the warning goes away.

Tom



reply via email to

[Prev in Thread] Current Thread [Next in Thread]