prjxray/Makefile

8 lines
131 B
Makefile
Raw Normal View History

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