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 7if [ ! -d macros ]; then 8 echo no macros directory found! 9 exit 2 10fi 11cd macros 12for i in HEADER *.m4; do 13 cat $i 14 echo 15 echo 16done 17cat TRAILER 18exit 0 19