From dfe4d8e570ab6e6b61a0fd9636064af2881202d1 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 2 Feb 2000 10:41:00 +0000 Subject: [PATCH] Make this Makefile MT aware. git-svn-id: https://svn.dealii.org/trunk@2317 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/deal.II/Makefile b/tests/deal.II/Makefile index 9ce0da270c..89578da295 100644 --- a/tests/deal.II/Makefile +++ b/tests/deal.II/Makefile @@ -50,6 +50,13 @@ flags = $(CXXFLAGS.o) $(CXXFLAGS) endif +# If in multithread mode, add the ACE library to the libraries which +# we need to link with: +ifneq ($(with-multithreading),no) + libraries += $(lib-ACE) +endif + + %.go : %.cc Makefile @echo =====debug========= $< @$(CXX) $(flags) -c $< -o $@ -- 2.39.5