I have a set of different projects that all share a common set of C++ libraries. Currently these common libs are copied into each code base but this is turning into a major problem for me. We use subversion for version control so I am planning on changing the common libraries into a set of svn externals.
Once I do that though I need a way to either make a parent/child Makefile.am or some way to automatically merge the Makefile.ams together. Is this possible? I know about the SUBDIR functionality, however I am trying to avoid recursive make.