From efc65f86b13104c660919a070efdde878c157fc1 Mon Sep 17 00:00:00 2001 From: zhangc43 Date: Wed, 20 Apr 2016 08:39:40 -0400 Subject: [PATCH] further suppress message when using make to build spectral/fem solver --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0127d9d56..7ed9a5131 100755 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ SHELL = /bin/sh all: spectral FEM spectral: build/spectral - @(cd build/spectral; make -s all install;) + @(cd build/spectral; make --no-print-directory -ws all install;) build/spectral: build @mkdir build/spectral @@ -19,7 +19,7 @@ bin: @mkdir bin FEM: build/FEM - @(cd build/FEM; make -s all install;) + @(cd build/FEM; make --no-print-directory -ws all install;) build/FEM: build @mkdir build