From: wolf Date: Wed, 2 Feb 2000 11:41:15 +0000 (+0000) Subject: Bring this file up-to-date. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4d9b2658b95b84ae2608be9472dac7e253d1ff7;p=dealii-svn.git Bring this file up-to-date. git-svn-id: https://svn.dealii.org/trunk@2319 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/Makefile b/tests/fe/Makefile index 1b07386594..054cb1a9e4 100644 --- a/tests/fe/Makefile +++ b/tests/fe/Makefile @@ -23,8 +23,12 @@ debug-mode = on # Define library names ############################################################ -libs = -ldeal_II_2d -llac -lbase -libs.g = -ldeal_II_2d.g -llac.g -lbase.g +libs.g = $(lib-deal2-2d.g) \ + $(lib-lac.g) \ + $(lib-base.g) +libs = $(lib-deal2-2d.o) \ + $(lib-lac.o) \ + $(lib-base.o) ############################################################ @@ -41,6 +45,14 @@ libraries = $(libs) 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 $@