From: maier Date: Wed, 5 Dec 2012 18:26:55 +0000 (+0000) Subject: *sigh* X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecdd5facb7ae912a3b7a266da8572f23be1d5eda;p=dealii-svn.git *sigh* git-svn-id: https://svn.dealii.org/branches/branch_cmake@27771 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 22cb8a5dbb..282d3dfc3f 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -46,13 +46,13 @@ endif @echo =====debug========= $< @echo Compiling > $(dir $@)/status @-rm -f $(dir $@)/ncpu*/status - $(CXX) $(flags) -c $< -o $@ + @$(CXX) $(flags) -c $< -o $@ %/obj.$(OBJEXT) : %.cc @echo =====optimized===== $< @echo Compiling > $(dir $@)/status @-rm -f $(dir $@)/ncpu*/status - $(CXX) $(CXXFLAGS.o) -c $< -o $@ + @$(CXX) $(CXXFLAGS.o) -c $< -o $@ ###################################################################### # Don't put $(libraries) into this line since it is already in $^ @@ -60,7 +60,7 @@ endif %/exe : %/obj.g.$(OBJEXT) @echo =====linking======= $@ @echo Linking > $(dir $@)/status - $(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) + @$(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) ############################################################