From 68ca3f2a53193fe1e08a2f8be97163a6aa1363c3 Mon Sep 17 00:00:00 2001 From: kronbichler Date: Tue, 14 May 2013 14:28:25 +0000 Subject: [PATCH] Make compile with older gcc. git-svn-id: https://svn.dealii.org/trunk@29509 0785d39b-7218-0410-832d-ea1e28bc413d --- .../bundled/tbb41_20130401oss/src/Makefile | 1324 ++++++++++++++--- .../deal.II/base/polynomials_piecewise.h | 9 +- 2 files changed, 1124 insertions(+), 209 deletions(-) diff --git a/deal.II/bundled/tbb41_20130401oss/src/Makefile b/deal.II/bundled/tbb41_20130401oss/src/Makefile index 7649e9fdab..f55fb48925 100644 --- a/deal.II/bundled/tbb41_20130401oss/src/Makefile +++ b/deal.II/bundled/tbb41_20130401oss/src/Makefile @@ -1,237 +1,1157 @@ -# Copyright 2005-2013 Intel Corporation. All Rights Reserved. -# -# This file is part of Threading Building Blocks. -# -# Threading Building Blocks is free software; you can redistribute it -# and/or modify it under the terms of the GNU General Public License -# version 2 as published by the Free Software Foundation. -# -# Threading Building Blocks is distributed in the hope that it will be -# useful, but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with Threading Building Blocks; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -# -# As a special exception, you may use this file as part of a free software -# library without restriction. Specifically, if other files instantiate -# templates or use macros or inline functions from this file, or you compile -# this file and link it with other files to produce an executable, this -# file does not by itself cause the resulting executable to be covered by -# the GNU General Public License. This exception does not however -# invalidate any other reasons why the executable file might be covered by -# the GNU General Public License. - -tbb_root?=.. -examples_root:=$(tbb_root)/examples -include $(tbb_root)/build/common.inc - -.PHONY: all tbb tbbmalloc tbbproxy test test_no_depends release debug examples clean - -all: release debug examples - -tbb: tbb_release tbb_debug - -tbbmalloc: tbbmalloc_release tbbmalloc_debug - -tbbproxy: tbbproxy_release tbbproxy_debug - -rml: rml_release rml_debug - -test: tbbmalloc_test_release $(if $(use_proxy),tbbproxy_test_release) rml_test_release tbb_test_release tbbmalloc_test_debug $(if $(use_proxy),tbbproxy_test_debug) rml_test_debug tbb_test_debug - -tbb_test_no_depends: tbbmalloc_test_release_no_depends $(if $(use_proxy),tbbproxy_test_release_no_depends) tbb_test_release_no_depends tbbmalloc_test_debug_no_depends $(if $(use_proxy),tbbproxy_test_debug_no_depends) tbb_test_debug_no_depends - @echo done - -release: tbb_release tbbmalloc_release $(if $(use_proxy),tbbproxy_release) -release: $(call cross_cfg,tbbmalloc_test_release) $(call cross_cfg,test_release) - -debug: tbb_debug tbbmalloc_debug $(if $(use_proxy),tbbproxy_debug) -debug: $(call cross_cfg,tbbmalloc_test_debug) $(call cross_cfg, test_debug) - -examples: tbb tbbmalloc examples_debug clean_examples examples_release - -examples_no_depends: examples_release_no_depends examples_debug_no_depends - -clean: clean_release clean_debug clean_examples - @echo clean done - -.PHONY: full -full: - $(MAKE) -s -i -r --no-print-directory -f Makefile tbb_root=. clean all -ifeq ($(tbb_os),windows) - $(MAKE) -s -i -r --no-print-directory -f Makefile tbb_root=. compiler=icl clean all native_examples -else - $(MAKE) -s -i -r --no-print-directory -f Makefile tbb_root=. compiler=icc clean all native_examples -endif -ifeq ($(arch),intel64) - $(MAKE) -s -i -r --no-print-directory -f Makefile tbb_root=. arch=ia32 clean all -endif -# it doesn't test compiler=icc arch=ia32 on intel64 systems due to enviroment settings of icc - -native_examples: tbb tbbmalloc - $(MAKE) -C $(examples_root) -r -f Makefile tbb_root=.. compiler=$(native_compiler) tbb_build_prefix=$(tbb_build_prefix) debug test - $(MAKE) -C $(examples_root) -r -f Makefile tbb_root=.. compiler=$(native_compiler) tbb_build_prefix=$(tbb_build_prefix) clean release test - -../examples/% examples/%:: - $(MAKE) -C $(examples_root) -r -f Makefile tbb_root=.. $(subst examples/,,$(subst ../,,$@)) - -debug_%:: cfg?=debug -debug_%:: run_cmd=$(debugger) -test_% stress_% time_% perf_%:: cfg?=release -debug_% test_% stress_% time_% perf_%:: - $(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.test cfg=$(cfg) run_cmd="$(run_cmd)" tbb_root=$(tbb_root) $@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 -clean_%:: -ifeq ($(cfg),) - @$(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.test cfg=release tbb_root=$(tbb_root) $@ - @$(MAKE) -C "$(work_dir)_debug" -r -f $(tbb_root)/build/Makefile.test cfg=debug tbb_root=$(tbb_root) $@ -else - @$(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.test cfg=$(cfg) tbb_root=$(tbb_root) $@ -endif +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target -.PHONY: test_release test_debug test_release_no_depends test_debug_no_depends -.PHONY: tbb_release tbb_debug tbb_test_release tbb_test_debug tbb_test_release_no_depends tbb_test_debug_no_depends -# do not delete double-space after -C option -tbb_release: mkdir_release - $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbb cfg=release tbb_root=$(tbb_root) +#============================================================================= +# Special targets provided by cmake. -tbb_debug: mkdir_debug - $(MAKE) -C "$(work_dir)_debug" -r -f $(tbb_root)/build/Makefile.tbb cfg=debug tbb_root=$(tbb_root) +# Disable implicit rules so canonical targets will work. +.SUFFIXES: -tbb_test_release: $(call cross_cfg,tbb_release) $(if $(use_proxy),$(call cross_cfg,tbbproxy_release)) tbb_test_release_no_depends -tbb_test_release_no_depends:$(call cross_cfg,mkdir_release) - $(MAKE) -C "$(call cross_cfg,$(work_dir)_release)" -r -f $(tbb_root)/build/Makefile.test cfg=release tbb_root=$(tbb_root) +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = -tbb_test_debug: $(call cross_cfg,tbb_debug) $(if $(use_proxy),$(call cross_cfg,tbbproxy_debug)) tbb_test_debug_no_depends -tbb_test_debug_no_depends:$(call cross_cfg,mkdir_debug) - $(MAKE) -C "$(call cross_cfg,$(work_dir)_debug)" -r -f $(tbb_root)/build/Makefile.test cfg=debug tbb_root=$(tbb_root) -# backward compatibility -test_release: tbb_test_release -test_debug: tbb_test_debug -test_release_no_depends: tbb_test_release_no_depends -test_debug_no_depends: tbb_test_debug_no_depends +.SUFFIXES: .hpux_make_needs_suffix_list -.PHONY: tbbmalloc_release tbbmalloc_debug -.PHONY: tbbmalloc_dll_release tbbmalloc_dll_debug tbbmalloc_proxy_dll_release tbbmalloc_proxy_dll_debug -.PHONY: tbbmalloc_test tbbmalloc_test_release tbbmalloc_test_debug tbbmalloc_test_release_no_depends tbbmalloc_test_debug_no_depends +# Suppress display of executed commands. +$(VERBOSE).SILENT: -tbbmalloc_release: mkdir_release - $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=release malloc tbb_root=$(tbb_root) +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force -tbbmalloc_debug: mkdir_debug - $(MAKE) -C "$(work_dir)_debug" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=debug malloc tbb_root=$(tbb_root) +#============================================================================= +# Set environment variables for the build. -tbbmalloc_dll_release: mkdir_release - $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=release malloc_dll tbb_root=$(tbb_root) +# The shell in which to execute make rules. +SHELL = /bin/sh -tbbmalloc_proxy_dll_release: mkdir_release - $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=release malloc_proxy_dll tbb_root=$(tbb_root) +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake -tbbmalloc_dll_debug: mkdir_debug - $(MAKE) -C "$(work_dir)_debug" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=debug malloc_dll tbb_root=$(tbb_root) +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f -tbbmalloc_proxy_dll_debug: mkdir_debug - $(MAKE) -C "$(work_dir)_debug" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=debug malloc_proxy_dll tbb_root=$(tbb_root) +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = /usr/bin/ccmake -tbbmalloc_test: tbbmalloc_test_release tbbmalloc_test_debug +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kronbichler/deal/mpi_build/dummy/deal.II -tbbmalloc_test_release: $(call cross_cfg,tbbmalloc_release) tbbmalloc_test_release_no_depends -tbbmalloc_test_release_no_depends: $(call cross_cfg,mkdir_release) - $(MAKE) -C "$(call cross_cfg,$(work_dir)_release)" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=release malloc_test_no_depends tbb_root=$(tbb_root) +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kronbichler/deal/mpi_build/dummy/deal.II -tbbmalloc_test_debug: $(call cross_cfg,tbbmalloc_debug) tbbmalloc_test_debug_no_depends -tbbmalloc_test_debug_no_depends: $(call cross_cfg,mkdir_debug) - $(MAKE) -C "$(call cross_cfg,$(work_dir)_debug)" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=debug malloc_test_no_depends tbb_root=$(tbb_root) +#============================================================================= +# Targets provided globally by CMake. -.PHONY: tbbproxy_release tbbproxy_debug -.PHONY: tbbproxy_test tbbproxy_test_release tbbproxy_test_debug tbbproxy_test_release_no_depends tbbproxy_test_debug_no_depends +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." + /usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache -tbbproxy_release: mkdir_release tbb_release - $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbbproxy cfg=release tbbproxy tbb_root=$(tbb_root) - -tbbproxy_debug: mkdir_debug tbb_debug - $(MAKE) -C "$(work_dir)_debug" -r -f $(tbb_root)/build/Makefile.tbbproxy cfg=debug tbbproxy tbb_root=$(tbb_root) - -tbbproxy_test: tbbproxy_test_release tbbproxy_test_debug - -tbbproxy_test_release: $(call cross_cfg,tbb_release) $(call cross_cfg,tbbproxy_release) tbbproxy_test_release_no_depends -tbbproxy_test_release_no_depends:$(call cross_cfg,mkdir_release) - $(MAKE) -C "$(call cross_cfg,$(work_dir)_release)" -r -f $(tbb_root)/build/Makefile.tbbproxy cfg=release tbbproxy_test tbb_root=$(tbb_root) - -tbbproxy_test_debug: $(call cross_cfg,tbb_debug) $(call cross_cfg,tbbproxy_debug) tbbproxy_test_debug_no_depends -tbbproxy_test_debug_no_depends: $(call cross_cfg,mkdir_debug) - $(MAKE) -C "$(call cross_cfg,$(work_dir)_debug)" -r -f $(tbb_root)/build/Makefile.tbbproxy cfg=debug tbbproxy_test tbb_root=$(tbb_root) +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast -.PHONY: rml_release rml_debug rml_test_release rml_test_debug -.PHONY: rml_test_release_no_depends rml_test_debug_no_depends +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install -rml_release: mkdir_release - $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.rml cfg=release tbb_root=$(tbb_root) rml +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast -rml_debug: mkdir_debug - $(MAKE) -C "$(work_dir)_debug" -r -f $(tbb_root)/build/Makefile.rml cfg=debug tbb_root=$(tbb_root) rml +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local -rml_test_release: $(call cross_cfg,rml_release) rml_test_release_no_depends -rml_test_release_no_depends: $(call cross_cfg,mkdir_release) - $(MAKE) -C "$(call cross_cfg,$(work_dir)_release)" -r -f $(tbb_root)/build/Makefile.rml cfg=release rml_test tbb_root=$(tbb_root) +# Special rule for the target install/local +install/local/fast: install/local +.PHONY : install/local/fast -rml_test_debug: $(call cross_cfg,rml_debug) rml_test_debug_no_depends -rml_test_debug_no_depends: $(call cross_cfg,mkdir_debug) - $(MAKE) -C "$(call cross_cfg,$(work_dir)_debug)" -r -f $(tbb_root)/build/Makefile.rml cfg=debug rml_test tbb_root=$(tbb_root) +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip -.PHONY: examples_release examples_debug examples_release_no_depends examples_debug_no_depends +# Special rule for the target install/strip +install/strip/fast: install/strip +.PHONY : install/strip/fast -examples_release: tbb_release tbbmalloc_release examples_release_no_depends -examples_release_no_depends: - $(MAKE) -C $(examples_root) -r -f Makefile tbb_root=.. release test +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"compat_files\" \"examples\" \"library\" \"mesh_converter\"" +.PHONY : list_install_components -examples_debug: tbb_debug tbbmalloc_debug examples_debug_no_depends -examples_debug_no_depends: - $(MAKE) -C $(examples_root) -r -f Makefile tbb_root=.. debug test +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast -.PHONY: clean_release clean_debug clean_examples +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache -clean_release: - $(shell $(RM) $(work_dir)_release$(SLASH)*.* >$(NUL) 2>$(NUL)) - $(shell $(RD) $(work_dir)_release >$(NUL) 2>$(NUL)) +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast -clean_debug: - $(shell $(RM) $(work_dir)_debug$(SLASH)*.* >$(NUL) 2>$(NUL)) - $(shell $(RD) $(work_dir)_debug >$(NUL) 2>$(NUL)) +# The main all target +all: cmake_check_build_system + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(CMAKE_COMMAND) -E cmake_progress_start /home/kronbichler/deal/mpi_build/dummy/deal.II/CMakeFiles /home/kronbichler/deal/mpi_build/dummy/deal.II/bundled/tbb41_20130401oss/src/CMakeFiles/progress.marks + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f CMakeFiles/Makefile2 bundled/tbb41_20130401oss/src/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kronbichler/deal/mpi_build/dummy/deal.II/CMakeFiles 0 +.PHONY : all -clean_examples: - $(shell $(MAKE) -s -i -r -C $(examples_root) -f Makefile tbb_root=.. clean >$(NUL) 2>$(NUL)) +# The main clean target +clean: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f CMakeFiles/Makefile2 bundled/tbb41_20130401oss/src/clean +.PHONY : clean -.PHONY: mkdir_release mkdir_debug codecov do_codecov info +# The main clean target +clean/fast: clean +.PHONY : clean/fast -mkdir_release: - $(shell $(MD) "$(work_dir)_release" >$(NUL) 2>$(NUL)) - @echo Created $(work_dir)_release directory +# Prepare targets for installation. +preinstall: all + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f CMakeFiles/Makefile2 bundled/tbb41_20130401oss/src/preinstall +.PHONY : preinstall -mkdir_debug: - $(shell $(MD) "$(work_dir)_debug" >$(NUL) 2>$(NUL)) - @echo Created $(work_dir)_debug directory +# Prepare targets for installation. +preinstall/fast: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f CMakeFiles/Makefile2 bundled/tbb41_20130401oss/src/preinstall +.PHONY : preinstall/fast -codecov: compiler=$(if $(findstring windows,$(tbb_os)),icl,icc) -codecov: - $(MAKE) tbb_root=.. codecov=yes do_codecov +# clear depends +depend: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend -do_codecov: - $(MAKE) RML=yes tbbmalloc_test_release test_release - $(MAKE) clean_test_* cfg=release - $(MAKE) RML=yes crosstest=yes tbbmalloc_test_debug test_debug - $(MAKE) clean_test_* cfg=release - $(MAKE) rml_test_release - $(MAKE) clean_test_* cfg=release - $(MAKE) crosstest=yes rml_test_debug - $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.test tbb_root=$(tbb_root) cfg=release codecov=yes codecov_gen +# Convenience name for target. +bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/rule: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f CMakeFiles/Makefile2 bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/rule +.PHONY : bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/rule + +# Convenience name for target. +obj_tbb.debug: bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/rule +.PHONY : obj_tbb.debug + +# fast build rule for target. +obj_tbb.debug/fast: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build +.PHONY : obj_tbb.debug/fast + +# Convenience name for target. +bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/rule: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f CMakeFiles/Makefile2 bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/rule +.PHONY : bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/rule + +# Convenience name for target. +obj_tbb.release: bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/rule +.PHONY : obj_tbb.release + +# fast build rule for target. +obj_tbb.release/fast: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build +.PHONY : obj_tbb.release/fast + +rml/client/rml_tbb.o: rml/client/rml_tbb.cpp.o +.PHONY : rml/client/rml_tbb.o + +# target to build an object file +rml/client/rml_tbb.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/rml/client/rml_tbb.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/rml/client/rml_tbb.cpp.o +.PHONY : rml/client/rml_tbb.cpp.o + +rml/client/rml_tbb.i: rml/client/rml_tbb.cpp.i +.PHONY : rml/client/rml_tbb.i + +# target to preprocess a source file +rml/client/rml_tbb.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/rml/client/rml_tbb.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/rml/client/rml_tbb.cpp.i +.PHONY : rml/client/rml_tbb.cpp.i + +rml/client/rml_tbb.s: rml/client/rml_tbb.cpp.s +.PHONY : rml/client/rml_tbb.s + +# target to generate assembly for a file +rml/client/rml_tbb.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/rml/client/rml_tbb.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/rml/client/rml_tbb.cpp.s +.PHONY : rml/client/rml_tbb.cpp.s + +tbb/arena.o: tbb/arena.cpp.o +.PHONY : tbb/arena.o + +# target to build an object file +tbb/arena.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/arena.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/arena.cpp.o +.PHONY : tbb/arena.cpp.o + +tbb/arena.i: tbb/arena.cpp.i +.PHONY : tbb/arena.i + +# target to preprocess a source file +tbb/arena.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/arena.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/arena.cpp.i +.PHONY : tbb/arena.cpp.i + +tbb/arena.s: tbb/arena.cpp.s +.PHONY : tbb/arena.s + +# target to generate assembly for a file +tbb/arena.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/arena.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/arena.cpp.s +.PHONY : tbb/arena.cpp.s + +tbb/cache_aligned_allocator.o: tbb/cache_aligned_allocator.cpp.o +.PHONY : tbb/cache_aligned_allocator.o + +# target to build an object file +tbb/cache_aligned_allocator.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/cache_aligned_allocator.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/cache_aligned_allocator.cpp.o +.PHONY : tbb/cache_aligned_allocator.cpp.o + +tbb/cache_aligned_allocator.i: tbb/cache_aligned_allocator.cpp.i +.PHONY : tbb/cache_aligned_allocator.i + +# target to preprocess a source file +tbb/cache_aligned_allocator.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/cache_aligned_allocator.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/cache_aligned_allocator.cpp.i +.PHONY : tbb/cache_aligned_allocator.cpp.i + +tbb/cache_aligned_allocator.s: tbb/cache_aligned_allocator.cpp.s +.PHONY : tbb/cache_aligned_allocator.s + +# target to generate assembly for a file +tbb/cache_aligned_allocator.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/cache_aligned_allocator.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/cache_aligned_allocator.cpp.s +.PHONY : tbb/cache_aligned_allocator.cpp.s + +tbb/concurrent_hash_map.o: tbb/concurrent_hash_map.cpp.o +.PHONY : tbb/concurrent_hash_map.o + +# target to build an object file +tbb/concurrent_hash_map.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_hash_map.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_hash_map.cpp.o +.PHONY : tbb/concurrent_hash_map.cpp.o + +tbb/concurrent_hash_map.i: tbb/concurrent_hash_map.cpp.i +.PHONY : tbb/concurrent_hash_map.i + +# target to preprocess a source file +tbb/concurrent_hash_map.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_hash_map.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_hash_map.cpp.i +.PHONY : tbb/concurrent_hash_map.cpp.i + +tbb/concurrent_hash_map.s: tbb/concurrent_hash_map.cpp.s +.PHONY : tbb/concurrent_hash_map.s + +# target to generate assembly for a file +tbb/concurrent_hash_map.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_hash_map.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_hash_map.cpp.s +.PHONY : tbb/concurrent_hash_map.cpp.s + +tbb/concurrent_monitor.o: tbb/concurrent_monitor.cpp.o +.PHONY : tbb/concurrent_monitor.o + +# target to build an object file +tbb/concurrent_monitor.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_monitor.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_monitor.cpp.o +.PHONY : tbb/concurrent_monitor.cpp.o + +tbb/concurrent_monitor.i: tbb/concurrent_monitor.cpp.i +.PHONY : tbb/concurrent_monitor.i + +# target to preprocess a source file +tbb/concurrent_monitor.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_monitor.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_monitor.cpp.i +.PHONY : tbb/concurrent_monitor.cpp.i + +tbb/concurrent_monitor.s: tbb/concurrent_monitor.cpp.s +.PHONY : tbb/concurrent_monitor.s + +# target to generate assembly for a file +tbb/concurrent_monitor.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_monitor.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_monitor.cpp.s +.PHONY : tbb/concurrent_monitor.cpp.s + +tbb/concurrent_queue.o: tbb/concurrent_queue.cpp.o +.PHONY : tbb/concurrent_queue.o + +# target to build an object file +tbb/concurrent_queue.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_queue.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_queue.cpp.o +.PHONY : tbb/concurrent_queue.cpp.o + +tbb/concurrent_queue.i: tbb/concurrent_queue.cpp.i +.PHONY : tbb/concurrent_queue.i + +# target to preprocess a source file +tbb/concurrent_queue.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_queue.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_queue.cpp.i +.PHONY : tbb/concurrent_queue.cpp.i + +tbb/concurrent_queue.s: tbb/concurrent_queue.cpp.s +.PHONY : tbb/concurrent_queue.s + +# target to generate assembly for a file +tbb/concurrent_queue.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_queue.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_queue.cpp.s +.PHONY : tbb/concurrent_queue.cpp.s + +tbb/concurrent_vector.o: tbb/concurrent_vector.cpp.o +.PHONY : tbb/concurrent_vector.o + +# target to build an object file +tbb/concurrent_vector.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_vector.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_vector.cpp.o +.PHONY : tbb/concurrent_vector.cpp.o + +tbb/concurrent_vector.i: tbb/concurrent_vector.cpp.i +.PHONY : tbb/concurrent_vector.i + +# target to preprocess a source file +tbb/concurrent_vector.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_vector.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_vector.cpp.i +.PHONY : tbb/concurrent_vector.cpp.i + +tbb/concurrent_vector.s: tbb/concurrent_vector.cpp.s +.PHONY : tbb/concurrent_vector.s + +# target to generate assembly for a file +tbb/concurrent_vector.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/concurrent_vector.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/concurrent_vector.cpp.s +.PHONY : tbb/concurrent_vector.cpp.s + +tbb/condition_variable.o: tbb/condition_variable.cpp.o +.PHONY : tbb/condition_variable.o + +# target to build an object file +tbb/condition_variable.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/condition_variable.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/condition_variable.cpp.o +.PHONY : tbb/condition_variable.cpp.o + +tbb/condition_variable.i: tbb/condition_variable.cpp.i +.PHONY : tbb/condition_variable.i + +# target to preprocess a source file +tbb/condition_variable.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/condition_variable.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/condition_variable.cpp.i +.PHONY : tbb/condition_variable.cpp.i + +tbb/condition_variable.s: tbb/condition_variable.cpp.s +.PHONY : tbb/condition_variable.s + +# target to generate assembly for a file +tbb/condition_variable.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/condition_variable.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/condition_variable.cpp.s +.PHONY : tbb/condition_variable.cpp.s + +tbb/critical_section.o: tbb/critical_section.cpp.o +.PHONY : tbb/critical_section.o + +# target to build an object file +tbb/critical_section.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/critical_section.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/critical_section.cpp.o +.PHONY : tbb/critical_section.cpp.o + +tbb/critical_section.i: tbb/critical_section.cpp.i +.PHONY : tbb/critical_section.i + +# target to preprocess a source file +tbb/critical_section.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/critical_section.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/critical_section.cpp.i +.PHONY : tbb/critical_section.cpp.i + +tbb/critical_section.s: tbb/critical_section.cpp.s +.PHONY : tbb/critical_section.s + +# target to generate assembly for a file +tbb/critical_section.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/critical_section.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/critical_section.cpp.s +.PHONY : tbb/critical_section.cpp.s + +tbb/dynamic_link.o: tbb/dynamic_link.cpp.o +.PHONY : tbb/dynamic_link.o + +# target to build an object file +tbb/dynamic_link.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/dynamic_link.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/dynamic_link.cpp.o +.PHONY : tbb/dynamic_link.cpp.o + +tbb/dynamic_link.i: tbb/dynamic_link.cpp.i +.PHONY : tbb/dynamic_link.i + +# target to preprocess a source file +tbb/dynamic_link.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/dynamic_link.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/dynamic_link.cpp.i +.PHONY : tbb/dynamic_link.cpp.i + +tbb/dynamic_link.s: tbb/dynamic_link.cpp.s +.PHONY : tbb/dynamic_link.s + +# target to generate assembly for a file +tbb/dynamic_link.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/dynamic_link.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/dynamic_link.cpp.s +.PHONY : tbb/dynamic_link.cpp.s + +tbb/governor.o: tbb/governor.cpp.o +.PHONY : tbb/governor.o + +# target to build an object file +tbb/governor.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/governor.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/governor.cpp.o +.PHONY : tbb/governor.cpp.o + +tbb/governor.i: tbb/governor.cpp.i +.PHONY : tbb/governor.i + +# target to preprocess a source file +tbb/governor.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/governor.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/governor.cpp.i +.PHONY : tbb/governor.cpp.i + +tbb/governor.s: tbb/governor.cpp.s +.PHONY : tbb/governor.s + +# target to generate assembly for a file +tbb/governor.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/governor.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/governor.cpp.s +.PHONY : tbb/governor.cpp.s + +tbb/itt_notify.o: tbb/itt_notify.cpp.o +.PHONY : tbb/itt_notify.o + +# target to build an object file +tbb/itt_notify.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/itt_notify.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/itt_notify.cpp.o +.PHONY : tbb/itt_notify.cpp.o + +tbb/itt_notify.i: tbb/itt_notify.cpp.i +.PHONY : tbb/itt_notify.i + +# target to preprocess a source file +tbb/itt_notify.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/itt_notify.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/itt_notify.cpp.i +.PHONY : tbb/itt_notify.cpp.i + +tbb/itt_notify.s: tbb/itt_notify.cpp.s +.PHONY : tbb/itt_notify.s + +# target to generate assembly for a file +tbb/itt_notify.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/itt_notify.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/itt_notify.cpp.s +.PHONY : tbb/itt_notify.cpp.s + +tbb/market.o: tbb/market.cpp.o +.PHONY : tbb/market.o + +# target to build an object file +tbb/market.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/market.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/market.cpp.o +.PHONY : tbb/market.cpp.o + +tbb/market.i: tbb/market.cpp.i +.PHONY : tbb/market.i + +# target to preprocess a source file +tbb/market.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/market.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/market.cpp.i +.PHONY : tbb/market.cpp.i + +tbb/market.s: tbb/market.cpp.s +.PHONY : tbb/market.s + +# target to generate assembly for a file +tbb/market.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/market.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/market.cpp.s +.PHONY : tbb/market.cpp.s + +tbb/mutex.o: tbb/mutex.cpp.o +.PHONY : tbb/mutex.o + +# target to build an object file +tbb/mutex.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/mutex.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/mutex.cpp.o +.PHONY : tbb/mutex.cpp.o + +tbb/mutex.i: tbb/mutex.cpp.i +.PHONY : tbb/mutex.i + +# target to preprocess a source file +tbb/mutex.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/mutex.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/mutex.cpp.i +.PHONY : tbb/mutex.cpp.i + +tbb/mutex.s: tbb/mutex.cpp.s +.PHONY : tbb/mutex.s + +# target to generate assembly for a file +tbb/mutex.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/mutex.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/mutex.cpp.s +.PHONY : tbb/mutex.cpp.s + +tbb/observer_proxy.o: tbb/observer_proxy.cpp.o +.PHONY : tbb/observer_proxy.o + +# target to build an object file +tbb/observer_proxy.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/observer_proxy.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/observer_proxy.cpp.o +.PHONY : tbb/observer_proxy.cpp.o + +tbb/observer_proxy.i: tbb/observer_proxy.cpp.i +.PHONY : tbb/observer_proxy.i + +# target to preprocess a source file +tbb/observer_proxy.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/observer_proxy.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/observer_proxy.cpp.i +.PHONY : tbb/observer_proxy.cpp.i + +tbb/observer_proxy.s: tbb/observer_proxy.cpp.s +.PHONY : tbb/observer_proxy.s + +# target to generate assembly for a file +tbb/observer_proxy.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/observer_proxy.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/observer_proxy.cpp.s +.PHONY : tbb/observer_proxy.cpp.s + +tbb/pipeline.o: tbb/pipeline.cpp.o +.PHONY : tbb/pipeline.o + +# target to build an object file +tbb/pipeline.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/pipeline.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/pipeline.cpp.o +.PHONY : tbb/pipeline.cpp.o + +tbb/pipeline.i: tbb/pipeline.cpp.i +.PHONY : tbb/pipeline.i + +# target to preprocess a source file +tbb/pipeline.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/pipeline.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/pipeline.cpp.i +.PHONY : tbb/pipeline.cpp.i + +tbb/pipeline.s: tbb/pipeline.cpp.s +.PHONY : tbb/pipeline.s + +# target to generate assembly for a file +tbb/pipeline.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/pipeline.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/pipeline.cpp.s +.PHONY : tbb/pipeline.cpp.s + +tbb/private_server.o: tbb/private_server.cpp.o +.PHONY : tbb/private_server.o + +# target to build an object file +tbb/private_server.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/private_server.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/private_server.cpp.o +.PHONY : tbb/private_server.cpp.o + +tbb/private_server.i: tbb/private_server.cpp.i +.PHONY : tbb/private_server.i + +# target to preprocess a source file +tbb/private_server.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/private_server.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/private_server.cpp.i +.PHONY : tbb/private_server.cpp.i + +tbb/private_server.s: tbb/private_server.cpp.s +.PHONY : tbb/private_server.s + +# target to generate assembly for a file +tbb/private_server.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/private_server.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/private_server.cpp.s +.PHONY : tbb/private_server.cpp.s + +tbb/queuing_mutex.o: tbb/queuing_mutex.cpp.o +.PHONY : tbb/queuing_mutex.o + +# target to build an object file +tbb/queuing_mutex.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/queuing_mutex.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/queuing_mutex.cpp.o +.PHONY : tbb/queuing_mutex.cpp.o + +tbb/queuing_mutex.i: tbb/queuing_mutex.cpp.i +.PHONY : tbb/queuing_mutex.i + +# target to preprocess a source file +tbb/queuing_mutex.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/queuing_mutex.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/queuing_mutex.cpp.i +.PHONY : tbb/queuing_mutex.cpp.i + +tbb/queuing_mutex.s: tbb/queuing_mutex.cpp.s +.PHONY : tbb/queuing_mutex.s + +# target to generate assembly for a file +tbb/queuing_mutex.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/queuing_mutex.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/queuing_mutex.cpp.s +.PHONY : tbb/queuing_mutex.cpp.s + +tbb/queuing_rw_mutex.o: tbb/queuing_rw_mutex.cpp.o +.PHONY : tbb/queuing_rw_mutex.o + +# target to build an object file +tbb/queuing_rw_mutex.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/queuing_rw_mutex.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/queuing_rw_mutex.cpp.o +.PHONY : tbb/queuing_rw_mutex.cpp.o + +tbb/queuing_rw_mutex.i: tbb/queuing_rw_mutex.cpp.i +.PHONY : tbb/queuing_rw_mutex.i + +# target to preprocess a source file +tbb/queuing_rw_mutex.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/queuing_rw_mutex.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/queuing_rw_mutex.cpp.i +.PHONY : tbb/queuing_rw_mutex.cpp.i + +tbb/queuing_rw_mutex.s: tbb/queuing_rw_mutex.cpp.s +.PHONY : tbb/queuing_rw_mutex.s + +# target to generate assembly for a file +tbb/queuing_rw_mutex.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/queuing_rw_mutex.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/queuing_rw_mutex.cpp.s +.PHONY : tbb/queuing_rw_mutex.cpp.s + +tbb/reader_writer_lock.o: tbb/reader_writer_lock.cpp.o +.PHONY : tbb/reader_writer_lock.o + +# target to build an object file +tbb/reader_writer_lock.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/reader_writer_lock.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/reader_writer_lock.cpp.o +.PHONY : tbb/reader_writer_lock.cpp.o + +tbb/reader_writer_lock.i: tbb/reader_writer_lock.cpp.i +.PHONY : tbb/reader_writer_lock.i + +# target to preprocess a source file +tbb/reader_writer_lock.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/reader_writer_lock.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/reader_writer_lock.cpp.i +.PHONY : tbb/reader_writer_lock.cpp.i + +tbb/reader_writer_lock.s: tbb/reader_writer_lock.cpp.s +.PHONY : tbb/reader_writer_lock.s + +# target to generate assembly for a file +tbb/reader_writer_lock.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/reader_writer_lock.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/reader_writer_lock.cpp.s +.PHONY : tbb/reader_writer_lock.cpp.s + +tbb/recursive_mutex.o: tbb/recursive_mutex.cpp.o +.PHONY : tbb/recursive_mutex.o + +# target to build an object file +tbb/recursive_mutex.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/recursive_mutex.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/recursive_mutex.cpp.o +.PHONY : tbb/recursive_mutex.cpp.o + +tbb/recursive_mutex.i: tbb/recursive_mutex.cpp.i +.PHONY : tbb/recursive_mutex.i + +# target to preprocess a source file +tbb/recursive_mutex.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/recursive_mutex.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/recursive_mutex.cpp.i +.PHONY : tbb/recursive_mutex.cpp.i + +tbb/recursive_mutex.s: tbb/recursive_mutex.cpp.s +.PHONY : tbb/recursive_mutex.s + +# target to generate assembly for a file +tbb/recursive_mutex.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/recursive_mutex.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/recursive_mutex.cpp.s +.PHONY : tbb/recursive_mutex.cpp.s + +tbb/scheduler.o: tbb/scheduler.cpp.o +.PHONY : tbb/scheduler.o + +# target to build an object file +tbb/scheduler.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/scheduler.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/scheduler.cpp.o +.PHONY : tbb/scheduler.cpp.o + +tbb/scheduler.i: tbb/scheduler.cpp.i +.PHONY : tbb/scheduler.i + +# target to preprocess a source file +tbb/scheduler.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/scheduler.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/scheduler.cpp.i +.PHONY : tbb/scheduler.cpp.i + +tbb/scheduler.s: tbb/scheduler.cpp.s +.PHONY : tbb/scheduler.s + +# target to generate assembly for a file +tbb/scheduler.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/scheduler.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/scheduler.cpp.s +.PHONY : tbb/scheduler.cpp.s + +tbb/semaphore.o: tbb/semaphore.cpp.o +.PHONY : tbb/semaphore.o + +# target to build an object file +tbb/semaphore.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/semaphore.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/semaphore.cpp.o +.PHONY : tbb/semaphore.cpp.o + +tbb/semaphore.i: tbb/semaphore.cpp.i +.PHONY : tbb/semaphore.i + +# target to preprocess a source file +tbb/semaphore.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/semaphore.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/semaphore.cpp.i +.PHONY : tbb/semaphore.cpp.i + +tbb/semaphore.s: tbb/semaphore.cpp.s +.PHONY : tbb/semaphore.s + +# target to generate assembly for a file +tbb/semaphore.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/semaphore.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/semaphore.cpp.s +.PHONY : tbb/semaphore.cpp.s + +tbb/spin_mutex.o: tbb/spin_mutex.cpp.o +.PHONY : tbb/spin_mutex.o + +# target to build an object file +tbb/spin_mutex.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/spin_mutex.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/spin_mutex.cpp.o +.PHONY : tbb/spin_mutex.cpp.o + +tbb/spin_mutex.i: tbb/spin_mutex.cpp.i +.PHONY : tbb/spin_mutex.i + +# target to preprocess a source file +tbb/spin_mutex.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/spin_mutex.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/spin_mutex.cpp.i +.PHONY : tbb/spin_mutex.cpp.i + +tbb/spin_mutex.s: tbb/spin_mutex.cpp.s +.PHONY : tbb/spin_mutex.s + +# target to generate assembly for a file +tbb/spin_mutex.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/spin_mutex.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/spin_mutex.cpp.s +.PHONY : tbb/spin_mutex.cpp.s + +tbb/spin_rw_mutex.o: tbb/spin_rw_mutex.cpp.o +.PHONY : tbb/spin_rw_mutex.o + +# target to build an object file +tbb/spin_rw_mutex.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/spin_rw_mutex.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/spin_rw_mutex.cpp.o +.PHONY : tbb/spin_rw_mutex.cpp.o + +tbb/spin_rw_mutex.i: tbb/spin_rw_mutex.cpp.i +.PHONY : tbb/spin_rw_mutex.i + +# target to preprocess a source file +tbb/spin_rw_mutex.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/spin_rw_mutex.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/spin_rw_mutex.cpp.i +.PHONY : tbb/spin_rw_mutex.cpp.i + +tbb/spin_rw_mutex.s: tbb/spin_rw_mutex.cpp.s +.PHONY : tbb/spin_rw_mutex.s + +# target to generate assembly for a file +tbb/spin_rw_mutex.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/spin_rw_mutex.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/spin_rw_mutex.cpp.s +.PHONY : tbb/spin_rw_mutex.cpp.s + +tbb/task.o: tbb/task.cpp.o +.PHONY : tbb/task.o + +# target to build an object file +tbb/task.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/task.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/task.cpp.o +.PHONY : tbb/task.cpp.o + +tbb/task.i: tbb/task.cpp.i +.PHONY : tbb/task.i + +# target to preprocess a source file +tbb/task.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/task.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/task.cpp.i +.PHONY : tbb/task.cpp.i + +tbb/task.s: tbb/task.cpp.s +.PHONY : tbb/task.s + +# target to generate assembly for a file +tbb/task.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/task.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/task.cpp.s +.PHONY : tbb/task.cpp.s + +tbb/task_group_context.o: tbb/task_group_context.cpp.o +.PHONY : tbb/task_group_context.o + +# target to build an object file +tbb/task_group_context.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/task_group_context.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/task_group_context.cpp.o +.PHONY : tbb/task_group_context.cpp.o + +tbb/task_group_context.i: tbb/task_group_context.cpp.i +.PHONY : tbb/task_group_context.i + +# target to preprocess a source file +tbb/task_group_context.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/task_group_context.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/task_group_context.cpp.i +.PHONY : tbb/task_group_context.cpp.i + +tbb/task_group_context.s: tbb/task_group_context.cpp.s +.PHONY : tbb/task_group_context.s + +# target to generate assembly for a file +tbb/task_group_context.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/task_group_context.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/task_group_context.cpp.s +.PHONY : tbb/task_group_context.cpp.s + +tbb/tbb_main.o: tbb/tbb_main.cpp.o +.PHONY : tbb/tbb_main.o + +# target to build an object file +tbb/tbb_main.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_main.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_main.cpp.o +.PHONY : tbb/tbb_main.cpp.o + +tbb/tbb_main.i: tbb/tbb_main.cpp.i +.PHONY : tbb/tbb_main.i + +# target to preprocess a source file +tbb/tbb_main.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_main.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_main.cpp.i +.PHONY : tbb/tbb_main.cpp.i + +tbb/tbb_main.s: tbb/tbb_main.cpp.s +.PHONY : tbb/tbb_main.s + +# target to generate assembly for a file +tbb/tbb_main.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_main.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_main.cpp.s +.PHONY : tbb/tbb_main.cpp.s + +tbb/tbb_misc.o: tbb/tbb_misc.cpp.o +.PHONY : tbb/tbb_misc.o + +# target to build an object file +tbb/tbb_misc.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_misc.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_misc.cpp.o +.PHONY : tbb/tbb_misc.cpp.o + +tbb/tbb_misc.i: tbb/tbb_misc.cpp.i +.PHONY : tbb/tbb_misc.i + +# target to preprocess a source file +tbb/tbb_misc.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_misc.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_misc.cpp.i +.PHONY : tbb/tbb_misc.cpp.i + +tbb/tbb_misc.s: tbb/tbb_misc.cpp.s +.PHONY : tbb/tbb_misc.s + +# target to generate assembly for a file +tbb/tbb_misc.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_misc.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_misc.cpp.s +.PHONY : tbb/tbb_misc.cpp.s + +tbb/tbb_misc_ex.o: tbb/tbb_misc_ex.cpp.o +.PHONY : tbb/tbb_misc_ex.o + +# target to build an object file +tbb/tbb_misc_ex.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_misc_ex.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_misc_ex.cpp.o +.PHONY : tbb/tbb_misc_ex.cpp.o + +tbb/tbb_misc_ex.i: tbb/tbb_misc_ex.cpp.i +.PHONY : tbb/tbb_misc_ex.i + +# target to preprocess a source file +tbb/tbb_misc_ex.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_misc_ex.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_misc_ex.cpp.i +.PHONY : tbb/tbb_misc_ex.cpp.i + +tbb/tbb_misc_ex.s: tbb/tbb_misc_ex.cpp.s +.PHONY : tbb/tbb_misc_ex.s + +# target to generate assembly for a file +tbb/tbb_misc_ex.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_misc_ex.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_misc_ex.cpp.s +.PHONY : tbb/tbb_misc_ex.cpp.s + +tbb/tbb_statistics.o: tbb/tbb_statistics.cpp.o +.PHONY : tbb/tbb_statistics.o + +# target to build an object file +tbb/tbb_statistics.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_statistics.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_statistics.cpp.o +.PHONY : tbb/tbb_statistics.cpp.o + +tbb/tbb_statistics.i: tbb/tbb_statistics.cpp.i +.PHONY : tbb/tbb_statistics.i + +# target to preprocess a source file +tbb/tbb_statistics.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_statistics.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_statistics.cpp.i +.PHONY : tbb/tbb_statistics.cpp.i + +tbb/tbb_statistics.s: tbb/tbb_statistics.cpp.s +.PHONY : tbb/tbb_statistics.s + +# target to generate assembly for a file +tbb/tbb_statistics.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_statistics.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_statistics.cpp.s +.PHONY : tbb/tbb_statistics.cpp.s + +tbb/tbb_thread.o: tbb/tbb_thread.cpp.o +.PHONY : tbb/tbb_thread.o + +# target to build an object file +tbb/tbb_thread.cpp.o: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_thread.cpp.o + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_thread.cpp.o +.PHONY : tbb/tbb_thread.cpp.o + +tbb/tbb_thread.i: tbb/tbb_thread.cpp.i +.PHONY : tbb/tbb_thread.i + +# target to preprocess a source file +tbb/tbb_thread.cpp.i: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_thread.cpp.i + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_thread.cpp.i +.PHONY : tbb/tbb_thread.cpp.i + +tbb/tbb_thread.s: tbb/tbb_thread.cpp.s +.PHONY : tbb/tbb_thread.s + +# target to generate assembly for a file +tbb/tbb_thread.cpp.s: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.debug.dir/tbb/tbb_thread.cpp.s + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(MAKE) -f bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/build.make bundled/tbb41_20130401oss/src/CMakeFiles/obj_tbb.release.dir/tbb/tbb_thread.cpp.s +.PHONY : tbb/tbb_thread.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... obj_tbb.debug" + @echo "... obj_tbb.release" + @echo "... rebuild_cache" + @echo "... rml/client/rml_tbb.o" + @echo "... rml/client/rml_tbb.i" + @echo "... rml/client/rml_tbb.s" + @echo "... tbb/arena.o" + @echo "... tbb/arena.i" + @echo "... tbb/arena.s" + @echo "... tbb/cache_aligned_allocator.o" + @echo "... tbb/cache_aligned_allocator.i" + @echo "... tbb/cache_aligned_allocator.s" + @echo "... tbb/concurrent_hash_map.o" + @echo "... tbb/concurrent_hash_map.i" + @echo "... tbb/concurrent_hash_map.s" + @echo "... tbb/concurrent_monitor.o" + @echo "... tbb/concurrent_monitor.i" + @echo "... tbb/concurrent_monitor.s" + @echo "... tbb/concurrent_queue.o" + @echo "... tbb/concurrent_queue.i" + @echo "... tbb/concurrent_queue.s" + @echo "... tbb/concurrent_vector.o" + @echo "... tbb/concurrent_vector.i" + @echo "... tbb/concurrent_vector.s" + @echo "... tbb/condition_variable.o" + @echo "... tbb/condition_variable.i" + @echo "... tbb/condition_variable.s" + @echo "... tbb/critical_section.o" + @echo "... tbb/critical_section.i" + @echo "... tbb/critical_section.s" + @echo "... tbb/dynamic_link.o" + @echo "... tbb/dynamic_link.i" + @echo "... tbb/dynamic_link.s" + @echo "... tbb/governor.o" + @echo "... tbb/governor.i" + @echo "... tbb/governor.s" + @echo "... tbb/itt_notify.o" + @echo "... tbb/itt_notify.i" + @echo "... tbb/itt_notify.s" + @echo "... tbb/market.o" + @echo "... tbb/market.i" + @echo "... tbb/market.s" + @echo "... tbb/mutex.o" + @echo "... tbb/mutex.i" + @echo "... tbb/mutex.s" + @echo "... tbb/observer_proxy.o" + @echo "... tbb/observer_proxy.i" + @echo "... tbb/observer_proxy.s" + @echo "... tbb/pipeline.o" + @echo "... tbb/pipeline.i" + @echo "... tbb/pipeline.s" + @echo "... tbb/private_server.o" + @echo "... tbb/private_server.i" + @echo "... tbb/private_server.s" + @echo "... tbb/queuing_mutex.o" + @echo "... tbb/queuing_mutex.i" + @echo "... tbb/queuing_mutex.s" + @echo "... tbb/queuing_rw_mutex.o" + @echo "... tbb/queuing_rw_mutex.i" + @echo "... tbb/queuing_rw_mutex.s" + @echo "... tbb/reader_writer_lock.o" + @echo "... tbb/reader_writer_lock.i" + @echo "... tbb/reader_writer_lock.s" + @echo "... tbb/recursive_mutex.o" + @echo "... tbb/recursive_mutex.i" + @echo "... tbb/recursive_mutex.s" + @echo "... tbb/scheduler.o" + @echo "... tbb/scheduler.i" + @echo "... tbb/scheduler.s" + @echo "... tbb/semaphore.o" + @echo "... tbb/semaphore.i" + @echo "... tbb/semaphore.s" + @echo "... tbb/spin_mutex.o" + @echo "... tbb/spin_mutex.i" + @echo "... tbb/spin_mutex.s" + @echo "... tbb/spin_rw_mutex.o" + @echo "... tbb/spin_rw_mutex.i" + @echo "... tbb/spin_rw_mutex.s" + @echo "... tbb/task.o" + @echo "... tbb/task.i" + @echo "... tbb/task.s" + @echo "... tbb/task_group_context.o" + @echo "... tbb/task_group_context.i" + @echo "... tbb/task_group_context.s" + @echo "... tbb/tbb_main.o" + @echo "... tbb/tbb_main.i" + @echo "... tbb/tbb_main.s" + @echo "... tbb/tbb_misc.o" + @echo "... tbb/tbb_misc.i" + @echo "... tbb/tbb_misc.s" + @echo "... tbb/tbb_misc_ex.o" + @echo "... tbb/tbb_misc_ex.i" + @echo "... tbb/tbb_misc_ex.s" + @echo "... tbb/tbb_statistics.o" + @echo "... tbb/tbb_statistics.i" + @echo "... tbb/tbb_statistics.s" + @echo "... tbb/tbb_thread.o" + @echo "... tbb/tbb_thread.i" + @echo "... tbb/tbb_thread.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/kronbichler/deal/mpi_build/dummy/deal.II && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system -info: - @echo OS: $(tbb_os) - @echo arch=$(arch) - @echo compiler=$(compiler) - @echo runtime=$(runtime) - @echo tbb_build_prefix=$(tbb_build_prefix) diff --git a/deal.II/include/deal.II/base/polynomials_piecewise.h b/deal.II/include/deal.II/base/polynomials_piecewise.h index 4b13a17772..c9e1dbbcaa 100644 --- a/deal.II/include/deal.II/base/polynomials_piecewise.h +++ b/deal.II/include/deal.II/base/polynomials_piecewise.h @@ -67,11 +67,6 @@ namespace Polynomials const unsigned int interval, const bool spans_next_interval); - /** - * Default constructor creating an illegal object. - */ - PiecewisePolynomial (); - /** * Return the value of this polynomial at the given point, evaluating the * underlying polynomial. The polynomial evaluates to zero when outside of @@ -121,13 +116,13 @@ namespace Polynomials /** * Stores the number of intervals that the unit interval is divided into. */ - const unsigned int n_intervals; + unsigned int n_intervals; /** * Stores the index of the current polynomial in the range of * intervals. */ - const unsigned int interval; + unsigned int interval; /** * Store if the polynomial spans over two adjacent intervals, i.e., the -- 2.39.5