On Mon, Apr 02, 2001 at 11:07:23PM +0200, Esben Haabendal Soerensen wrote: : In Makefile.am: : : lib_LTLIBRARIES = foobar.la : foobar_la_SOURCES = foo.c @BAR_SOURCE@ : EXTRA_foobar_la_SOURCES = bar_linux.c bar_freebsd.c Use an AM_CONDITIONAL instead. if USE_LINUXSOURCES BARSOURCE = bar_linux.c else BARSOURCE = bar_freebsd.c endif foobar_la_SOURCES = foo.c $(BARSOURCE) Lars J
- Problem with EXTRA_*_SOURCES Esben Haabendal Soerensen
- Re: Problem with EXTRA_*_SOURCES Lars J. Aas
- Re: Problem with EXTRA_*_SOURCES Esben Haabendal Soerensen
- Re: Problem with EXTRA_*_SOURCES Lars J. Aas
- Re: Problem with EXTRA_*_SOURCES Esben Haabendal Soerensen
- Re: Problem with EXTRA_*_SOURCES Lars J. Aas
- Re: Problem with EXTRA_*_SOURCES Esben Haabendal Soerensen
- Re: Problem with EXTRA_*_SOURCES Lars J. Aas
- Re: Problem with EXTRA_*_SOURCES Esben Haabendal Soerensen
- Re: Problem with EXTRA_*_SOURCES Lars J. Aas
- Re: Problem with EXTRA_*_SOURCES Akim Demaille