On 26 Aug 2010, at 09:25, Reuben Hawkins wrote: > I was > thinking output a Makefile.am in each dir which has source in this > format... > > noist_LTLIBRARIES = lib<dir_name>.la > > lib<dir_name>_la_SOURCES = <source files in this directory>
func_output ()
{
dirname=`echo "$1" | sed 's,^.*/,,g'`
sources=*.c
cat > Makefile.am <<EOF
noinst_LTLIBRARIES=lib$dirname.la
lib${dirname}_la_SOURCES = $sources
EOF
}
find . -type d -exec func_output {} \;
> Any thoughts would be appreciated.
Don't know whether it's sensible without more context, but the code
above is probably close to what you asked for :)
Cheers,
--
Gary V. Vaughan ([email protected])
PGP.sig
Description: This is a digitally signed message part
_______________________________________________ Autoconf mailing list [email protected] http://lists.gnu.org/mailman/listinfo/autoconf
