#!/bin/sh
# set -x
# This script scan all the source files to generate the dependencies

for i in *.c ; do
    icc $CFLAGS -M  -o cc$$.txt $i 
    ./dependre cc$$.txt
done

rm cc$$.txt
#EOF
