Re: automake and AC_CONFIG_FILES templates

2002-06-14 Thread Alexandre Duret-Lutz
>>> "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,

Re: automake and AC_CONFIG_FILES templates

2002-06-12 Thread Harlan Stenn
And I also tried: AC_CONFIG_FILES(Makefile:global-vars.mk:Makefile) H

automake and AC_CONFIG_FILES templates

2002-06-12 Thread Harlan Stenn
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