Update your apt repo
sudo apt-get update
Install all these packages used for building.
sudo apt-get install \
ca-certificates \
build-essential
Now that everything else is installed you can simply run this to build the application.
make
The output folder should be created in ./out
If you wish to clean up you can run
make clean
You need to install the dev deps
make dev_deps
and then you can do
make lint
You can run all the unit tests by doing
make test