diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..6cde83dc --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +JOBS ?= $(shell nproc) +JOBS ?= 2 + +go: + git submodule update --init --recursive + mkdir -p build + cd build; cmake ..; make -j$(JOBS)