This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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: libgo patch committed: Add SPARC RTEMS specific file


* Ian Lance Taylor wrote on Sat, Jan 22, 2011 at 03:01:40AM CET:
> If anybody knows of a simple way to use automake with files
> that may or may not exist, please let me know.  I'd prefer to avoid
> configure tests since they separate the test and the use in a way that I
> find hard to maintain over time.

Hmm, you can

if COND
foo_SOURCES += bar.go
endif

or you can

foo_SOURCES = $(computed)
EXTRA_foo_SOURCES = bar1.go bar2.go bar3.go

where $(computed) must come from the second set.

If you want to use only Posix make, then you need to have at least some
bit of computation at configure time for this.

Hope that helps.

Cheers,
Ralf


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