NetBSD/dist/am-utils/m4/mk-aclocal

19 lines
282 B
Bash
Executable File

#!/bin/sh
#
# Make am-utils' 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