#!/bin/sh
#phase init
dispn "Checking for a compiler..."
if (gcc --version > /dev/null; test "$?" = "0"); then
	disp "found gcc"
	CC="gcc"
elif (cc -v > /dev/null; test "$?" = "0"); then
	disp "found cc"
	CC="cc"
else
	disp "not found, unable to continue"
	exit 1
fi
