#!/bin/sh
#
# call makedep with an additional rule for C++ source files
#
#
ET_DIR=${ET_DIR:-/local/ET++}
${ET_DIR}/bin/makedep -r".o: .C" $* > tmp.1 2> tmp.2
sort < tmp.1
rm tmp.[12]

