From 13a9e49b3986afc6f2704b457fcf0443657f041c Mon Sep 17 00:00:00 2001 From: zhangc43 Date: Wed, 20 Apr 2016 08:26:20 -0400 Subject: [PATCH] fix FEM build target --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c9b07f12c..0127d9d56 100755 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ SHELL = /bin/sh all: spectral FEM spectral: build/spectral - @(cd build/spectral; make; make install;) + @(cd build/spectral; make -s all install;) build/spectral: build @mkdir build/spectral @@ -19,10 +19,11 @@ bin: @mkdir bin FEM: build/FEM - @(cd build/FEM; cmake -Wno-dev -DCMAKE_BUILD_TYPE=RELEASE -DDAMASK_DRIVER=FEM ../..;) + @(cd build/FEM; make -s all install;) build/FEM: build @mkdir build + @(cd build/FEM; cmake -Wno-dev -DCMAKE_BUILD_TYPE=RELEASE -DDAMASK_DRIVER=FEM ../..;) .PHONY: clean clean: