Hi, Is it possible to tell automake to move the generated file aclocal.m4 into a build subdirectory?
Similar to the way I move config.h like this: AM_CONFIG_HEADER(build/config.h)? I would prefer not to have aclocal.m4 at the root of my project tree. I currently do this if it's helpful, AC_CONFIG_AUX_DIR(build/build-aux) AC_CONFIG_MACRO_DIR(build/m4) AM_CONFIG_HEADER(build/config.h) Thanks, Bob Rossi