4 echo "Usage: $0 [--debug][--valgrind] path/to/file.c"
11 if [[ "$1" == "--debug" ]] ; then
14 elif [[ "$1" == "--debug-implied" ]] ; then
15 POST
="$POST --debug-implied"
17 elif [[ "$1" == "--valgrind" ]] ; then
20 elif [[ "$1" == "--sparse" ]] ; then
29 if [[ "$cname" == "" ]] ; then
32 if ! test -e $cname ; then
36 oname
=$
(echo ${cname/.c/.o})
38 make C
=y CHECK
="$PRE $CMD $POST" $oname