respect DAMASK_NUM_THREADS
This commit is contained in:
parent
705694b97c
commit
2aea6df678
4
Makefile
4
Makefile
|
@ -8,13 +8,13 @@ all: grid mesh processing
|
||||||
|
|
||||||
.PHONY: grid
|
.PHONY: grid
|
||||||
grid: build/grid
|
grid: build/grid
|
||||||
@(cd build/grid;make -j4 all install;)
|
@(cd build/grid;make -j${DAMASK_NUM_THREADS} all install;)
|
||||||
.PHONY: spectral
|
.PHONY: spectral
|
||||||
spectral: grid
|
spectral: grid
|
||||||
|
|
||||||
.PHONY: mesh
|
.PHONY: mesh
|
||||||
mesh: build/mesh
|
mesh: build/mesh
|
||||||
@(cd build/mesh; make -j4 all install;)
|
@(cd build/mesh; make -j${DAMASK_NUM_THREADS} all install;)
|
||||||
.PHONY: FEM
|
.PHONY: FEM
|
||||||
FEM: mesh
|
FEM: mesh
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue