From: wolf Date: Fri, 10 Sep 1999 08:40:01 +0000 (+0000) Subject: Add some MT stuff and remove the production rules again, since that X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7ad6e8ab3272ac886e5e887419adede8d58f582;p=dealii-svn.git Add some MT stuff and remove the production rules again, since that was voluntarily. git-svn-id: https://svn.dealii.org/trunk@1732 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/common/Make.global_options b/deal.II/common/Make.global_options index 037336df92..72c454fb73 100644 --- a/deal.II/common/Make.global_options +++ b/deal.II/common/Make.global_options @@ -19,15 +19,13 @@ CXXFLAGS.g= -DDEBUG -ggdb -Wall -W -Wconversion \ $(INCLUDE) CXXFLAGS.o= -O2 -Wuninitialized -ffast-math \ -felide-constructors -fnonnull-objects \ - -fno-vtable-thunks -ftemplate-depth-32\ + -fno-vtable-thunks -ftemplate-depth-32 -pg\ $(INCLUDE) +ifeq ($(DEAL_II_USE_MT),true) + INCLUDE += -I $(shell echo $$ACE_ROOT) + CXXFLAGS.g += -DDEAL_II_USE_MT + CXXFLAGS.o += -DDEAL_II_USE_MT - -%.go : %.cc #Makefile - @echo =====debug========= $< - @$(CXX) $(flags) -c $< -o $@ -%.o : %.cc #Makefile - @echo =====optimized===== $< - @$(CXX) $(flags) -c $< -o $@ - + user_libs += $(ACE_ROOT)/ace/libACE.so +endif