From 03f671d12aec8015862c6988d7efdd490146b091 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Tue, 5 May 2020 09:35:28 +0200 Subject: [PATCH] do not report error if linking does not work required for syntax check --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9a1a41856..f7b783c61 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ all: grid mesh processing 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 + @ln -s ${DAMASK_ROOT}/bin/DAMASK_grid ${DAMASK_ROOT}/bin/DAMASK_spectral || true .PHONY: spectral spectral: grid @@ -18,7 +18,7 @@ spectral: grid 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 + @ln -s ${DAMASK_ROOT}/bin/DAMASK_mesh ${DAMASK_ROOT}/bin/DAMASK_FEM || true .PHONY: FEM FEM: mesh