: run this script through /bin/sh

M=/bin/make
if [ -f /usr/bin/make ]; then
    M=/usr/bin/make
fi

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

