>>> "Harlan" == Harlan Stenn <[EMAIL PROTECTED]> writes:
[...]
Harlan> I was attempting to solve this problem using:
Harlan> AC_CONFIG_FILES(Makefile:global-vars.mk:Makefile.in)
Harlan> where "global-vars.mk" would handle fetching the
Harlan> library dependency variable definitions first,
And I also tried:
AC_CONFIG_FILES(Makefile:global-vars.mk:Makefile)
H
An application I'm working with preprocesses the Makefile.am's to find the
ones that build libraries, and creates a file that contains the path to each
library:
libfoo_la_LIBDEP = /path/to/libfoo.la
libbar_la_LIBDEP = /path/to/libbar.la
...
ALL_LIBS = \
/path/to/libfoo.la \
/p