: Run this script through /bin/sh
if [ "$MAKE" = "" ]; then
    MAKE=/bin/make
if [ -f /usr/bin/make ]; then
    MAKE=/usr/bin/make
fi
fi

for par do
	if [ $par = "-DSCA" ]
	then
		exec $MAKE MODULE=sca -f ../config/CONFIG.make -f sca.make $1
	fi
done

