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