1 #!/bin/sh 2 # 3 # Make am-utils' aclocal.m4 file (concatendated from others). 4 # For maintainers only. 5 # Erez Zadok <ezk AT cs.columbia.edu> 6 7 if [ ! -d macros ]; then 8 echo no macros directory found! 9 exit 2 10 fi 11 cd macros 12 for i in HEADER *.m4; do 13 cat $i 14 echo 15 echo 16 done 17 cat TRAILER 18 exit 0 19