mirror of https://github.com/openXC7/prjxray.git
8 lines
131 B
Makefile
8 lines
131 B
Makefile
|
|
JOBS ?= $(shell nproc)
|
||
|
|
JOBS ?= 2
|
||
|
|
|
||
|
|
go:
|
||
|
|
git submodule update --init --recursive
|
||
|
|
mkdir -p build
|
||
|
|
cd build; cmake ..; make -j$(JOBS)
|