#! /bin/bash -e

# (See the notes in `./buff-expand'.)
#
# This script is successfully called from the main source directory as
# `helper/buffe-src'.  It buffs and expands all the source files, except
# that it only buffs the two Makefiles `Makefile' and `debian/rules'.

BUFFE='helper/buff-expand -M'
for F in `find .` ; do
  if [ -f $F ] ; then
    $BUFFE $F
    echo   $F
  fi
done

