mirror of
https://github.com/openXC7/prjxray.git
synced 2026-08-30 09:48:26 +02:00
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)
|