removed aliases, users can symlink if they are afraid of changes
DAMASK_spectral -> DAMASK_grid DAMASK_FEM -> DAMASK_mesh make spectral -> make grid make FEM -> make mesh
This commit is contained in:
parent
1fd0ec9986
commit
398afbcbe4
8
Makefile
8
Makefile
|
@ -9,18 +9,10 @@ all: grid mesh processing
|
|||
.PHONY: grid
|
||||
grid: build/grid
|
||||
@(cd build/grid;make -j${DAMASK_NUM_THREADS} all install;)
|
||||
@rm -f ${DAMASK_ROOT}/bin/DAMASK_spectral > /dev/null || true
|
||||
@ln -s ${DAMASK_ROOT}/bin/DAMASK_grid ${DAMASK_ROOT}/bin/DAMASK_spectral || true
|
||||
.PHONY: spectral
|
||||
spectral: grid
|
||||
|
||||
.PHONY: mesh
|
||||
mesh: build/mesh
|
||||
@(cd build/mesh; make -j${DAMASK_NUM_THREADS} all install;)
|
||||
@rm -f ${DAMASK_ROOT}/bin/DAMASK_FEM > /dev/null || true
|
||||
@ln -s ${DAMASK_ROOT}/bin/DAMASK_mesh ${DAMASK_ROOT}/bin/DAMASK_FEM || true
|
||||
.PHONY: FEM
|
||||
FEM: mesh
|
||||
|
||||
.PHONY: build/grid
|
||||
build/grid:
|
||||
|
|
2
PRIVATE
2
PRIVATE
|
@ -1 +1 @@
|
|||
Subproject commit fe0a83c023334167197dafeb6bf09d17574e2955
|
||||
Subproject commit f06c73c1eacb9b5939bc84de3b8224abf195fb80
|
Loading…
Reference in New Issue