#! /bin/sh

set -e

src="rtems-includes.m4 rtems-bsp-includes.m4 rtems-build-top.m4 rtems-source-top.m4"
dst="aclocal cpukit/aclocal testsuites/aclocal"

for s in $src
do
 for d in $dst
 do
  cp -v c/src/aclocal/$s $d/
 done
done

exit 0
