#
SET(DEAL_II_BUILD_TYPE "${CMAKE_BUILD_TYPE}")
+SET(DEAL_II_BUILD_TYPES "${CMAKE_BUILD_TYPES}")
SET(DEAL_II_CXX_COMPILER "${CMAKE_CXX_COMPILER}")
SET(DEAL_II_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
SET(DEAL_II_LINKER_FLAGS_DEBUG "${DEAL_II_SHARED_LINKER_FLAGS_DEBUG}")
SET(DEAL_II_LINKER_FLAGS_RELEASE "${DEAL_II_SHARED_LINKER_FLAGS_RELEASE}")
-SET(DEAL_II_LINKER "${CMAKE_LINKER}")
-SET(DEAL_II_AR "${CMAKE_AR}")
-
#
# Information on where to find the deal.II libraries and headers
#
+++ /dev/null
-
-
-############################################################
-# Include general settings for including DEAL libraries
-############################################################
-
-include $D/common/Make.global_options
-
-
-############################################################
-# Targets for compilation
-############################################################
-
-ifneq ($(enable-threads),no)
- MT = MT
-else
- MT = ==
-endif
-
-%.g.$(OBJEXT) : %.cc
- @echo =====debug======$(MT)== $<
- @$(CXX) $(CXXFLAGS.g) $(CXXFLAGS) -c $< -o $@
-%.$(OBJEXT) : %.cc
- @echo =====optimized==$(MT)== $<
- @$(CXX) $(CXXFLAGS.o) $(CXXFLAGS) -c $< -o $@
-
-############################################################
-# Automatic generation of dependencies
-############################################################
-
-all-cc-files = $(shell echo *.cc)
-
-Makefile.depend: $(all-cc-files)
- @echo =====Dependencies== Makefile.depend
- @$(CXX) $(flags) $^ -M > $@
- @$(PERL) -pi~ -e 's/(^[^.]+)\.$(OBJEXT):/\1.$(OBJEXT) \1.g.$(OBJEXT):/;' $@
-
-include Makefile.depend