Adding a quickstart based Makefile

Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
Tim 'mithro' Ansell 2017-12-20 16:20:01 +01:00 committed by Tim 'mithro' Ansell
parent c237bcd412
commit fa871cd2c4
1 changed files with 7 additions and 0 deletions

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
JOBS ?= $(shell nproc)
JOBS ?= 2
go:
git submodule update --init --recursive
mkdir -p build
cd build; cmake ..; make -j$(JOBS)