#!/bin/sh
#
# Make fist-2.0' aclocal.m4 file (concatendated from others).
# For maintainers only.
# Erez Zadok <ezk@cs.columbia.edu>

if [ ! -d macros ]; then
	echo no macros directory found!
	exit 2
fi

cd macros
for i in HEADER *.m4; do
	cat $i
	echo
	echo
done

cat TRAILER
exit 0
