Jim Meyering <[EMAIL PROTECTED]> wrote: > For example, this command, applied to the imported .m4 files for > coreutils, produces the required list of .c file names: > > grep -h 'AC_LIBOBJ(' *.m4 \ > |sed 's/^ *//;/^#/d;/^dnl/d;s/.*AC_LIBOBJ(//;s/^\[//;s/[])].*$/.c \\/' \ > |sort -u
Before anyone says anything, I do know that we should use something like "autoconf --trace=AC_LIBOBJ" instead.