#! /bin/csh -f 
# Last edited on 2004-08-15 17:59:25 by stolfi

set usage = "$0 MODEL.make OTHES.make..."

if ( $#argv < 1 ) then
  echo "usage: ${USAGE}"; exit 1
endif

set model = "$1"; shift;
set others = ( $* )

foreach f ( ${others} )
  echo "======================================================================"
  echo "=== ${f}"
  echo "======================================================================"
  diff -Bb ${model} ${f} | prettify-diff-output 
end
