DESC="Compile and link source files in one step"
main(){
	if  ( ${AGCC} -v2 --path src src/*.cc );then true;else
		ERR_MSG="Failed executing '${AGCC} -v2 --path src src/*.cc'";
		return 0;
	fi;
	if [ ! \( \( -x a.out \) -o \( -x a.exe \) \) ];then
		ERR_MSG="Executable file was not generated";
		return 0;
	else
		rm -f a.out a.exe;
	fi;
	return 1;
}
