#!/bin/bash
export LC_ALL=C

echo "This script compiles all the targets and tests, and executes the testing suite"

__DIR=`pwd`
echo "Building..."
make -j 12 && make test

