#! /bin/bash -e

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

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

