>>> "G" == G E Quelch <[EMAIL PROTECTED]> writes:
G> I am having trouble constructing the files needed by autoconf and/or G> automake to construct a sub directory build environment. My main G> directory has no source, but several subdirectories have. G> I have the following configure.in: G> AC_INIT Add a call to AM_INIT_AUTOMAKE(x,y) here. G> AC_CONFIG_SUBDIRS(db_access/ db_access_new/) Are you _sure_ you want that? It seems contradictory with the output of db_access/Makefile and db_access_new/Makefile below. G> AC_PROG_MAKE_SET Scratch that. AM_INIT_AUTOMAKE will do it for you. G> AC_CONFIG_FILES([Makefile]) G> AC_OUTPUT(db_access/Makefile db_access_new/Makefile) AC_CONFIG_FILES([Makefile db_access/Makefile db_access_new/Makefile]) AC_OUTPUT [...] -- Alexandre Duret-Lutz