From: wolf Date: Wed, 2 Feb 2000 10:41:00 +0000 (+0000) Subject: Make this Makefile MT aware. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3e182dfafedf51291c747ba3cd5eeb0a859266f;p=dealii-svn.git Make this Makefile MT aware. git-svn-id: https://svn.dealii.org/trunk@2317 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 $@