From b33812e9a67eef279d9e3d979de08dd05897fdfd Mon Sep 17 00:00:00 2001 From: Tomas Oberhuber <tomas.oberhuber@fjfi.cvut.cz> Date: Tue, 14 Jun 2011 21:38:37 +0000 Subject: [PATCH] Converting project to CMake. --- CMakeLists.txt | 2 +- src/Makefile.am | 66 --- src/config/Makefile | 377 -------------- src/config/Makefile.am | 49 -- src/config/Makefile.in | 838 ------------------------------ src/core/Makefile | 527 ------------------- src/core/Makefile.am | 96 ---- src/core/low-level/Makefile | 197 ------- src/core/low-level/Makefile.am | 6 - src/core/low-level/Makefile.in | 466 ----------------- src/debug/Makefile | 467 ----------------- src/debug/Makefile.am | 56 -- src/diff/Makefile | 257 --------- src/diff/Makefile.am | 59 --- src/matrix/Makefile.am | 45 -- src/mesh/CMakeLists.txt | 2 +- src/mesh/Makefile | 257 --------- src/mesh/Makefile.am | 41 -- src/mesh/Makefile.in | 566 -------------------- src/solver/Makefile | 257 --------- src/solver/Makefile.am | 51 -- src/solver/Makefile.in | 582 --------------------- tests/Makefile | 197 ------- tests/Makefile.am | 87 ---- tests/Makefile.in | 895 -------------------------------- tests/benchmarks/CMakeLists.txt | 12 +- tests/unit-tests/Makefile | 212 -------- tests/unit-tests/Makefile.am | 63 --- tests/unit-tests/Makefile.in | 682 ------------------------ tools/Makefile.am | 3 - tools/share/Makefile | 197 ------- tools/share/Makefile.am | 12 - tools/src/Makefile | 407 --------------- tools/src/Makefile.am | 87 ---- 34 files changed, 8 insertions(+), 8110 deletions(-) delete mode 100644 src/Makefile.am delete mode 100644 src/config/Makefile delete mode 100644 src/config/Makefile.am delete mode 100644 src/config/Makefile.in delete mode 100644 src/core/Makefile delete mode 100644 src/core/Makefile.am delete mode 100644 src/core/low-level/Makefile delete mode 100644 src/core/low-level/Makefile.am delete mode 100644 src/core/low-level/Makefile.in delete mode 100644 src/debug/Makefile delete mode 100644 src/debug/Makefile.am delete mode 100644 src/diff/Makefile delete mode 100644 src/diff/Makefile.am delete mode 100644 src/matrix/Makefile.am delete mode 100644 src/mesh/Makefile delete mode 100644 src/mesh/Makefile.am delete mode 100644 src/mesh/Makefile.in delete mode 100644 src/solver/Makefile delete mode 100644 src/solver/Makefile.am delete mode 100644 src/solver/Makefile.in delete mode 100644 tests/Makefile delete mode 100644 tests/Makefile.am delete mode 100644 tests/Makefile.in delete mode 100644 tests/unit-tests/Makefile delete mode 100644 tests/unit-tests/Makefile.am delete mode 100644 tests/unit-tests/Makefile.in delete mode 100644 tools/Makefile.am delete mode 100644 tools/share/Makefile delete mode 100644 tools/share/Makefile.am delete mode 100644 tools/src/Makefile delete mode 100644 tools/src/Makefile.am diff --git a/CMakeLists.txt b/CMakeLists.txt index 3ba66924e9..79f7da86a9 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -139,11 +139,11 @@ endif() set( configDirectory \"${CMAKE_INSTALL_PREFIX}/share/tnl-${tnlVersion}/\") CONFIGURE_FILE( "tnlConfig.h.in" "${PROJECT_BUILD_PATH}/tnlConfig.h" ) +INSTALL( FILES ${PROJECT_BUILD_PATH}/tnlConfig.h DESTINATION include/tnl-${tnlVersion}/tnlConfig.h ) #Nastavime cesty k hlavickovym souborum a knihovnam INCLUDE_DIRECTORIES( src ) INCLUDE_DIRECTORIES( ${PROJECT_BUILD_PATH} ) -INCLUDE_DIRECTORIES( ${PROJECT_BINARY_DIR}/headers ) LINK_DIRECTORIES( ${LIBRARY_OUTPUT_PATH} ) #Pokracujeme dalsimi podadresari diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index e09ed34c7a..0000000000 --- a/src/Makefile.am +++ /dev/null @@ -1,66 +0,0 @@ -## Process this file with automake to produce Makefile.in - -SUBDIRS = core \ - config \ - debug \ - diff \ - matrix \ - mesh \ - solver - - -lib_LTLIBRARIES = libtnl-0.1.la -libtnl_0_1_la_SOURCES = -# Dummy C++ source to cause C++ linking. -nodist_EXTRA_libtnl_0_1_la_SOURCES = dummy.cpp -libtnl_0_1_la_LIBADD = core/libtnlcore-0.1.la \ - config/libtnlconfig-0.1.la \ - diff/libtnldiff-0.1.la \ - matrix/libtnlmatrix-0.1.la \ - mesh/libtnlmesh-0.1.la \ - solver/libtnlsolver-0.1.la \ - debug/libtnldebug-0.1.la - -if BUILD_DBG -lib_LTLIBRARIES += libtnl-dbg-0.1.la -libtnl_dbg_0_1_la_SOURCES = -# Dummy C++ source to cause C++ linking. -nodist_EXTRA_libtnl_dbg_0_1_la_SOURCES = dummy.cpp -libtnl_dbg_0_1_la_LIBADD = core/libtnlcore-dbg-0.1.la \ - config/libtnlconfig-dbg-0.1.la \ - diff/libtnldiff-dbg-0.1.la \ - matrix/libtnlmatrix-dbg-0.1.la \ - mesh/libtnlmesh-dbg-0.1.la \ - solver/libtnlsolver-dbg-0.1.la \ - debug/libtnldebug-dbg-0.1.la -# debug/libtnldebug-dbg-0.1.la -endif - -if BUILD_MPI -lib_LTLIBRARIES += libtnl-mpi-0.1.la -libtnl_mpi_0_1_la_SOURCES = -# Dummy C++ source to cause C++ linking. -nodist_EXTRA_libtnl_mpi_0_1_la_SOURCES = dummy.cpp -libtnl_mpi_0_1_la_LIBADD = core/libtnlcore-mpi-0.1.la \ - config/libtnlconfig-mpi-0.1.la \ - diff/libtnldiff-mpi-0.1.la \ - matrix/libtnlmatrix-mpi-0.1.la \ - mesh/libtnlmesh-mpi-0.1.la \ - solver/libtnlsolver-mpi-0.1.la \ - debug/libtnldebug-mpi-0.1.la -endif - -if BUILD_MPI_DBG -lib_LTLIBRARIES += libtnl-mpi-dbg-0.1.la -libtnl_mpi_dbg_0_1_la_SOURCES = -# Dummy C++ source to cause C++ linking. -nodist_EXTRA_libtnl_mpi_dbg_0_1_la_SOURCES = dummy.cpp -libtnl_mpi_dbg_0_1_la_LIBADD = core/libtnlcore-mpi-dbg-0.1.la \ - config/libtnlconfig-mpi-debg-0.1.la \ - diff/libtnldiff-mpi-dbg-0.1.la \ - matrix/libtnlmatrix-mpi-dbg-0.1.la \ - mesh/libtnlmesh-mpi-dbg-0.1.la \ - solver/libtnlsolver-mpi-dbg-0.1.la \ - debug/libtnldebug-mpi-dbg-0.1.la -#debug/libtnldebug-mpi-dbg-0.1.la -endif diff --git a/src/config/Makefile b/src/config/Makefile deleted file mode 100644 index 3b4d2dbede..0000000000 --- a/src/config/Makefile +++ /dev/null @@ -1,377 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/src/config/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/config/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/config/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/config/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/config/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/rule -.PHONY : src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/rule - -# Convenience name for target. -libtnlconfig-dbg-0.1: src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/rule -.PHONY : libtnlconfig-dbg-0.1 - -# fast build rule for target. -libtnlconfig-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build -.PHONY : libtnlconfig-dbg-0.1/fast - -# Convenience name for target. -src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/rule -.PHONY : src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/rule - -# Convenience name for target. -libtnlconfig-mpi-dbg-0.1: src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/rule -.PHONY : libtnlconfig-mpi-dbg-0.1 - -# fast build rule for target. -libtnlconfig-mpi-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build -.PHONY : libtnlconfig-mpi-dbg-0.1/fast - -parse.o: parse.cc.o -.PHONY : parse.o - -# target to build an object file -parse.cc.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/parse.cc.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/parse.cc.o -.PHONY : parse.cc.o - -parse.i: parse.cc.i -.PHONY : parse.i - -# target to preprocess a source file -parse.cc.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/parse.cc.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/parse.cc.i -.PHONY : parse.cc.i - -parse.s: parse.cc.s -.PHONY : parse.s - -# target to generate assembly for a file -parse.cc.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/parse.cc.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/parse.cc.s -.PHONY : parse.cc.s - -tnlConfigDescription.o: tnlConfigDescription.cpp.o -.PHONY : tnlConfigDescription.o - -# target to build an object file -tnlConfigDescription.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescription.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescription.cpp.o -.PHONY : tnlConfigDescription.cpp.o - -tnlConfigDescription.i: tnlConfigDescription.cpp.i -.PHONY : tnlConfigDescription.i - -# target to preprocess a source file -tnlConfigDescription.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescription.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescription.cpp.i -.PHONY : tnlConfigDescription.cpp.i - -tnlConfigDescription.s: tnlConfigDescription.cpp.s -.PHONY : tnlConfigDescription.s - -# target to generate assembly for a file -tnlConfigDescription.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescription.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescription.cpp.s -.PHONY : tnlConfigDescription.cpp.s - -tnlConfigDescriptionParser.o: tnlConfigDescriptionParser.cpp.o -.PHONY : tnlConfigDescriptionParser.o - -# target to build an object file -tnlConfigDescriptionParser.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescriptionParser.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescriptionParser.cpp.o -.PHONY : tnlConfigDescriptionParser.cpp.o - -tnlConfigDescriptionParser.i: tnlConfigDescriptionParser.cpp.i -.PHONY : tnlConfigDescriptionParser.i - -# target to preprocess a source file -tnlConfigDescriptionParser.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescriptionParser.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescriptionParser.cpp.i -.PHONY : tnlConfigDescriptionParser.cpp.i - -tnlConfigDescriptionParser.s: tnlConfigDescriptionParser.cpp.s -.PHONY : tnlConfigDescriptionParser.s - -# target to generate assembly for a file -tnlConfigDescriptionParser.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescriptionParser.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescriptionParser.cpp.s -.PHONY : tnlConfigDescriptionParser.cpp.s - -tnlConfigDescriptionScanner.o: tnlConfigDescriptionScanner.cpp.o -.PHONY : tnlConfigDescriptionScanner.o - -# target to build an object file -tnlConfigDescriptionScanner.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescriptionScanner.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescriptionScanner.cpp.o -.PHONY : tnlConfigDescriptionScanner.cpp.o - -tnlConfigDescriptionScanner.i: tnlConfigDescriptionScanner.cpp.i -.PHONY : tnlConfigDescriptionScanner.i - -# target to preprocess a source file -tnlConfigDescriptionScanner.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescriptionScanner.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescriptionScanner.cpp.i -.PHONY : tnlConfigDescriptionScanner.cpp.i - -tnlConfigDescriptionScanner.s: tnlConfigDescriptionScanner.cpp.s -.PHONY : tnlConfigDescriptionScanner.s - -# target to generate assembly for a file -tnlConfigDescriptionScanner.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlConfigDescriptionScanner.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlConfigDescriptionScanner.cpp.s -.PHONY : tnlConfigDescriptionScanner.cpp.s - -tnlParameterContainer.o: tnlParameterContainer.cpp.o -.PHONY : tnlParameterContainer.o - -# target to build an object file -tnlParameterContainer.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlParameterContainer.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlParameterContainer.cpp.o -.PHONY : tnlParameterContainer.cpp.o - -tnlParameterContainer.i: tnlParameterContainer.cpp.i -.PHONY : tnlParameterContainer.i - -# target to preprocess a source file -tnlParameterContainer.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlParameterContainer.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlParameterContainer.cpp.i -.PHONY : tnlParameterContainer.cpp.i - -tnlParameterContainer.s: tnlParameterContainer.cpp.s -.PHONY : tnlParameterContainer.s - -# target to generate assembly for a file -tnlParameterContainer.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-dbg-0.1.dir/tnlParameterContainer.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/build.make src/config/CMakeFiles/libtnlconfig-mpi-dbg-0.1.dir/tnlParameterContainer.cpp.s -.PHONY : tnlParameterContainer.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 "... libtnlconfig-dbg-0.1" - @echo "... libtnlconfig-mpi-dbg-0.1" - @echo "... list_install_components" - @echo "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" - @echo "... parse.o" - @echo "... parse.i" - @echo "... parse.s" - @echo "... tnlConfigDescription.o" - @echo "... tnlConfigDescription.i" - @echo "... tnlConfigDescription.s" - @echo "... tnlConfigDescriptionParser.o" - @echo "... tnlConfigDescriptionParser.i" - @echo "... tnlConfigDescriptionParser.s" - @echo "... tnlConfigDescriptionScanner.o" - @echo "... tnlConfigDescriptionScanner.i" - @echo "... tnlConfigDescriptionScanner.s" - @echo "... tnlParameterContainer.o" - @echo "... tnlParameterContainer.i" - @echo "... tnlParameterContainer.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/config/Makefile.am b/src/config/Makefile.am deleted file mode 100644 index 5d29575906..0000000000 --- a/src/config/Makefile.am +++ /dev/null @@ -1,49 +0,0 @@ -## Process this file with automake to produce Makefile.in - -EXTRA_DIST = tnlConfigDescriptionParser.y \ - tnlConfigDescriptionScanner.l \ - create-config-description-parser \ - FlexLexer.h - -headers = tnlConfigDescription.h \ - tnlConfigDescriptionParser.h \ - tnlConfigDescriptionParserbase.h \ - tnlConfigDescriptionParser.ih \ - tnlConfigDescriptionScanner.h \ - tnlParameterContainer.h - -sources = tnlConfigDescription.cpp \ - tnlConfigDescriptionScanner.cpp \ - tnlConfigDescriptionParser.cpp \ - tnlParameterContainer.cpp \ - parse.cc - - -libtnlconfigincludedir = $(TNL_INCLUDE_DIR)/config -libtnlconfiginclude_HEADERS = $(headers) - - -noinst_LTLIBRARIES = libtnlconfig-0.1.la -libtnlconfig_0_1_la_SOURCES = $(sources) $(headers) -libtnlconfig_0_1_la_CXXFLAGS = $(OPTIMSECXXFLAGS) - -if BUILD_MPI -noinst_LTLIBRARIES += libtnlconfig-mpi-0.1.la -libtnlconfig_mpi_0_1_la_SOURCES = $(sources) $(headers) -libtnlconfig_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMSECXXFLAGS) -libtnlconfig_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -endif - -if BUILD_DBG -noinst_LTLIBRARIES += libtnlconfig-dbg-0.1.la -libtnlconfig_dbg_0_1_la_SOURCES = $(sources) $(headers) -libtnlconfig_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) -libtnlconfig_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) -endif - -if BUILD_MPI_DBG -noinst_LTLIBRARIES += libtnlconfig-mpi-dbg-0.1.la -libtnlconfig_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) -libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) -libtnlconfig_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPICXXFLAGS) $(DBGLDFLAGS) -endif diff --git a/src/config/Makefile.in b/src/config/Makefile.in deleted file mode 100644 index 3020607c49..0000000000 --- a/src/config/Makefile.in +++ /dev/null @@ -1,838 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -@BUILD_MPI_TRUE@am__append_1 = libtnlconfig-mpi-0.1.la -@BUILD_DBG_TRUE@am__append_2 = libtnlconfig-dbg-0.1.la -@BUILD_MPI_DBG_TRUE@am__append_3 = libtnlconfig-mpi-dbg-0.1.la -subdir = src/config -DIST_COMMON = $(libtnlconfiginclude_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) -libtnlconfig_0_1_la_LIBADD = -am__objects_1 = libtnlconfig_0_1_la-tnlConfigDescription.lo \ - libtnlconfig_0_1_la-tnlConfigDescriptionScanner.lo \ - libtnlconfig_0_1_la-tnlConfigDescriptionParser.lo \ - libtnlconfig_0_1_la-tnlParameterContainer.lo \ - libtnlconfig_0_1_la-parse.lo -am__objects_2 = -am_libtnlconfig_0_1_la_OBJECTS = $(am__objects_1) $(am__objects_2) -libtnlconfig_0_1_la_OBJECTS = $(am_libtnlconfig_0_1_la_OBJECTS) -libtnlconfig_0_1_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -libtnlconfig_dbg_0_1_la_LIBADD = -am__libtnlconfig_dbg_0_1_la_SOURCES_DIST = tnlConfigDescription.cpp \ - tnlConfigDescriptionScanner.cpp tnlConfigDescriptionParser.cpp \ - tnlParameterContainer.cpp parse.cc tnlConfigDescription.h \ - tnlConfigDescriptionParser.h tnlConfigDescriptionParserbase.h \ - tnlConfigDescriptionParser.ih tnlConfigDescriptionScanner.h \ - tnlParameterContainer.h -am__objects_3 = libtnlconfig_dbg_0_1_la-tnlConfigDescription.lo \ - libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.lo \ - libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.lo \ - libtnlconfig_dbg_0_1_la-tnlParameterContainer.lo \ - libtnlconfig_dbg_0_1_la-parse.lo -@BUILD_DBG_TRUE@am_libtnlconfig_dbg_0_1_la_OBJECTS = $(am__objects_3) \ -@BUILD_DBG_TRUE@ $(am__objects_2) -libtnlconfig_dbg_0_1_la_OBJECTS = \ - $(am_libtnlconfig_dbg_0_1_la_OBJECTS) -libtnlconfig_dbg_0_1_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) \ - $(libtnlconfig_dbg_0_1_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_DBG_TRUE@am_libtnlconfig_dbg_0_1_la_rpath = -libtnlconfig_mpi_0_1_la_LIBADD = -am__libtnlconfig_mpi_0_1_la_SOURCES_DIST = tnlConfigDescription.cpp \ - tnlConfigDescriptionScanner.cpp tnlConfigDescriptionParser.cpp \ - tnlParameterContainer.cpp parse.cc tnlConfigDescription.h \ - tnlConfigDescriptionParser.h tnlConfigDescriptionParserbase.h \ - tnlConfigDescriptionParser.ih tnlConfigDescriptionScanner.h \ - tnlParameterContainer.h -am__objects_4 = libtnlconfig_mpi_0_1_la-tnlConfigDescription.lo \ - libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.lo \ - libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.lo \ - libtnlconfig_mpi_0_1_la-tnlParameterContainer.lo \ - libtnlconfig_mpi_0_1_la-parse.lo -@BUILD_MPI_TRUE@am_libtnlconfig_mpi_0_1_la_OBJECTS = $(am__objects_4) \ -@BUILD_MPI_TRUE@ $(am__objects_2) -libtnlconfig_mpi_0_1_la_OBJECTS = \ - $(am_libtnlconfig_mpi_0_1_la_OBJECTS) -libtnlconfig_mpi_0_1_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) \ - $(libtnlconfig_mpi_0_1_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_MPI_TRUE@am_libtnlconfig_mpi_0_1_la_rpath = -libtnlconfig_mpi_dbg_0_1_la_LIBADD = -am__libtnlconfig_mpi_dbg_0_1_la_SOURCES_DIST = \ - tnlConfigDescription.cpp tnlConfigDescriptionScanner.cpp \ - tnlConfigDescriptionParser.cpp tnlParameterContainer.cpp \ - parse.cc tnlConfigDescription.h tnlConfigDescriptionParser.h \ - tnlConfigDescriptionParserbase.h tnlConfigDescriptionParser.ih \ - tnlConfigDescriptionScanner.h tnlParameterContainer.h -am__objects_5 = libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.lo \ - libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.lo \ - libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.lo \ - libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.lo \ - libtnlconfig_mpi_dbg_0_1_la-parse.lo -@BUILD_MPI_DBG_TRUE@am_libtnlconfig_mpi_dbg_0_1_la_OBJECTS = \ -@BUILD_MPI_DBG_TRUE@ $(am__objects_5) $(am__objects_2) -libtnlconfig_mpi_dbg_0_1_la_OBJECTS = \ - $(am_libtnlconfig_mpi_dbg_0_1_la_OBJECTS) -libtnlconfig_mpi_dbg_0_1_la_LINK = $(LIBTOOL) --tag=CXX \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) \ - $(libtnlconfig_mpi_dbg_0_1_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_MPI_DBG_TRUE@am_libtnlconfig_mpi_dbg_0_1_la_rpath = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(libtnlconfig_0_1_la_SOURCES) \ - $(libtnlconfig_dbg_0_1_la_SOURCES) \ - $(libtnlconfig_mpi_0_1_la_SOURCES) \ - $(libtnlconfig_mpi_dbg_0_1_la_SOURCES) -DIST_SOURCES = $(libtnlconfig_0_1_la_SOURCES) \ - $(am__libtnlconfig_dbg_0_1_la_SOURCES_DIST) \ - $(am__libtnlconfig_mpi_0_1_la_SOURCES_DIST) \ - $(am__libtnlconfig_mpi_dbg_0_1_la_SOURCES_DIST) -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libtnlconfigincludedir)" -HEADERS = $(libtnlconfiginclude_HEADERS) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CUDA_HEADERS = @CUDA_HEADERS@ -CUDA_LIBS = @CUDA_LIBS@ -CUSP_CXXFLAGS = @CUSP_CXXFLAGS@ -CUSP_DIR = @CUSP_DIR@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DBGCXXFLAGS = @DBGCXXFLAGS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -MPICC = @MPICC@ -MPICXX = @MPICXX@ -MPICXXFLAGS = @MPICXXFLAGS@ -MPILDFLAGS = @MPILDFLAGS@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NVCC = @NVCC@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OPTIMISECXXFLAGS = @OPTIMISECXXFLAGS@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TNL_INCLUDE_DIR = @TNL_INCLUDE_DIR@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -cuda = @cuda@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -EXTRA_DIST = tnlConfigDescriptionParser.y \ - tnlConfigDescriptionScanner.l \ - create-config-description-parser \ - FlexLexer.h - -headers = tnlConfigDescription.h \ - tnlConfigDescriptionParser.h \ - tnlConfigDescriptionParserbase.h \ - tnlConfigDescriptionParser.ih \ - tnlConfigDescriptionScanner.h \ - tnlParameterContainer.h - -sources = tnlConfigDescription.cpp \ - tnlConfigDescriptionScanner.cpp \ - tnlConfigDescriptionParser.cpp \ - tnlParameterContainer.cpp \ - parse.cc - -libtnlconfigincludedir = $(TNL_INCLUDE_DIR)/config -libtnlconfiginclude_HEADERS = $(headers) -noinst_LTLIBRARIES = libtnlconfig-0.1.la $(am__append_1) \ - $(am__append_2) $(am__append_3) -libtnlconfig_0_1_la_SOURCES = $(sources) $(headers) -libtnlconfig_0_1_la_CXXFLAGS = $(OPTIMSECXXFLAGS) -@BUILD_MPI_TRUE@libtnlconfig_mpi_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_MPI_TRUE@libtnlconfig_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMSECXXFLAGS) -@BUILD_MPI_TRUE@libtnlconfig_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -@BUILD_DBG_TRUE@libtnlconfig_dbg_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_DBG_TRUE@libtnlconfig_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) -@BUILD_DBG_TRUE@libtnlconfig_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) -@BUILD_MPI_DBG_TRUE@libtnlconfig_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_MPI_DBG_TRUE@libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) -@BUILD_MPI_DBG_TRUE@libtnlconfig_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPICXXFLAGS) $(DBGLDFLAGS) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cc .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/config/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/config/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) - @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libtnlconfig-0.1.la: $(libtnlconfig_0_1_la_OBJECTS) $(libtnlconfig_0_1_la_DEPENDENCIES) - $(libtnlconfig_0_1_la_LINK) $(libtnlconfig_0_1_la_OBJECTS) $(libtnlconfig_0_1_la_LIBADD) $(LIBS) -libtnlconfig-dbg-0.1.la: $(libtnlconfig_dbg_0_1_la_OBJECTS) $(libtnlconfig_dbg_0_1_la_DEPENDENCIES) - $(libtnlconfig_dbg_0_1_la_LINK) $(am_libtnlconfig_dbg_0_1_la_rpath) $(libtnlconfig_dbg_0_1_la_OBJECTS) $(libtnlconfig_dbg_0_1_la_LIBADD) $(LIBS) -libtnlconfig-mpi-0.1.la: $(libtnlconfig_mpi_0_1_la_OBJECTS) $(libtnlconfig_mpi_0_1_la_DEPENDENCIES) - $(libtnlconfig_mpi_0_1_la_LINK) $(am_libtnlconfig_mpi_0_1_la_rpath) $(libtnlconfig_mpi_0_1_la_OBJECTS) $(libtnlconfig_mpi_0_1_la_LIBADD) $(LIBS) -libtnlconfig-mpi-dbg-0.1.la: $(libtnlconfig_mpi_dbg_0_1_la_OBJECTS) $(libtnlconfig_mpi_dbg_0_1_la_DEPENDENCIES) - $(libtnlconfig_mpi_dbg_0_1_la_LINK) $(am_libtnlconfig_mpi_dbg_0_1_la_rpath) $(libtnlconfig_mpi_dbg_0_1_la_OBJECTS) $(libtnlconfig_mpi_dbg_0_1_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_0_1_la-parse.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescription.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescriptionParser.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescriptionScanner.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_0_1_la-tnlParameterContainer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_dbg_0_1_la-parse.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescription.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlParameterContainer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_0_1_la-parse.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescription.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlParameterContainer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-parse.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.Plo@am__quote@ - -.cc.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cc.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cc.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -libtnlconfig_0_1_la-tnlConfigDescription.lo: tnlConfigDescription.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_0_1_la-tnlConfigDescription.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescription.Tpo -c -o libtnlconfig_0_1_la-tnlConfigDescription.lo `test -f 'tnlConfigDescription.cpp' || echo '$(srcdir)/'`tnlConfigDescription.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescription.Tpo $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescription.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescription.cpp' object='libtnlconfig_0_1_la-tnlConfigDescription.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_0_1_la-tnlConfigDescription.lo `test -f 'tnlConfigDescription.cpp' || echo '$(srcdir)/'`tnlConfigDescription.cpp - -libtnlconfig_0_1_la-tnlConfigDescriptionScanner.lo: tnlConfigDescriptionScanner.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_0_1_la-tnlConfigDescriptionScanner.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescriptionScanner.Tpo -c -o libtnlconfig_0_1_la-tnlConfigDescriptionScanner.lo `test -f 'tnlConfigDescriptionScanner.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionScanner.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescriptionScanner.Tpo $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescriptionScanner.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescriptionScanner.cpp' object='libtnlconfig_0_1_la-tnlConfigDescriptionScanner.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_0_1_la-tnlConfigDescriptionScanner.lo `test -f 'tnlConfigDescriptionScanner.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionScanner.cpp - -libtnlconfig_0_1_la-tnlConfigDescriptionParser.lo: tnlConfigDescriptionParser.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_0_1_la-tnlConfigDescriptionParser.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescriptionParser.Tpo -c -o libtnlconfig_0_1_la-tnlConfigDescriptionParser.lo `test -f 'tnlConfigDescriptionParser.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionParser.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescriptionParser.Tpo $(DEPDIR)/libtnlconfig_0_1_la-tnlConfigDescriptionParser.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescriptionParser.cpp' object='libtnlconfig_0_1_la-tnlConfigDescriptionParser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_0_1_la-tnlConfigDescriptionParser.lo `test -f 'tnlConfigDescriptionParser.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionParser.cpp - -libtnlconfig_0_1_la-tnlParameterContainer.lo: tnlParameterContainer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_0_1_la-tnlParameterContainer.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_0_1_la-tnlParameterContainer.Tpo -c -o libtnlconfig_0_1_la-tnlParameterContainer.lo `test -f 'tnlParameterContainer.cpp' || echo '$(srcdir)/'`tnlParameterContainer.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_0_1_la-tnlParameterContainer.Tpo $(DEPDIR)/libtnlconfig_0_1_la-tnlParameterContainer.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlParameterContainer.cpp' object='libtnlconfig_0_1_la-tnlParameterContainer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_0_1_la-tnlParameterContainer.lo `test -f 'tnlParameterContainer.cpp' || echo '$(srcdir)/'`tnlParameterContainer.cpp - -libtnlconfig_0_1_la-parse.lo: parse.cc -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_0_1_la-parse.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_0_1_la-parse.Tpo -c -o libtnlconfig_0_1_la-parse.lo `test -f 'parse.cc' || echo '$(srcdir)/'`parse.cc -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_0_1_la-parse.Tpo $(DEPDIR)/libtnlconfig_0_1_la-parse.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='parse.cc' object='libtnlconfig_0_1_la-parse.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_0_1_la-parse.lo `test -f 'parse.cc' || echo '$(srcdir)/'`parse.cc - -libtnlconfig_dbg_0_1_la-tnlConfigDescription.lo: tnlConfigDescription.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_dbg_0_1_la-tnlConfigDescription.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescription.Tpo -c -o libtnlconfig_dbg_0_1_la-tnlConfigDescription.lo `test -f 'tnlConfigDescription.cpp' || echo '$(srcdir)/'`tnlConfigDescription.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescription.Tpo $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescription.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescription.cpp' object='libtnlconfig_dbg_0_1_la-tnlConfigDescription.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_dbg_0_1_la-tnlConfigDescription.lo `test -f 'tnlConfigDescription.cpp' || echo '$(srcdir)/'`tnlConfigDescription.cpp - -libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.lo: tnlConfigDescriptionScanner.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.Tpo -c -o libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.lo `test -f 'tnlConfigDescriptionScanner.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionScanner.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.Tpo $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescriptionScanner.cpp' object='libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_dbg_0_1_la-tnlConfigDescriptionScanner.lo `test -f 'tnlConfigDescriptionScanner.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionScanner.cpp - -libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.lo: tnlConfigDescriptionParser.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.Tpo -c -o libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.lo `test -f 'tnlConfigDescriptionParser.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionParser.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.Tpo $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescriptionParser.cpp' object='libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_dbg_0_1_la-tnlConfigDescriptionParser.lo `test -f 'tnlConfigDescriptionParser.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionParser.cpp - -libtnlconfig_dbg_0_1_la-tnlParameterContainer.lo: tnlParameterContainer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_dbg_0_1_la-tnlParameterContainer.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlParameterContainer.Tpo -c -o libtnlconfig_dbg_0_1_la-tnlParameterContainer.lo `test -f 'tnlParameterContainer.cpp' || echo '$(srcdir)/'`tnlParameterContainer.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlParameterContainer.Tpo $(DEPDIR)/libtnlconfig_dbg_0_1_la-tnlParameterContainer.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlParameterContainer.cpp' object='libtnlconfig_dbg_0_1_la-tnlParameterContainer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_dbg_0_1_la-tnlParameterContainer.lo `test -f 'tnlParameterContainer.cpp' || echo '$(srcdir)/'`tnlParameterContainer.cpp - -libtnlconfig_dbg_0_1_la-parse.lo: parse.cc -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_dbg_0_1_la-parse.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_dbg_0_1_la-parse.Tpo -c -o libtnlconfig_dbg_0_1_la-parse.lo `test -f 'parse.cc' || echo '$(srcdir)/'`parse.cc -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_dbg_0_1_la-parse.Tpo $(DEPDIR)/libtnlconfig_dbg_0_1_la-parse.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='parse.cc' object='libtnlconfig_dbg_0_1_la-parse.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_dbg_0_1_la-parse.lo `test -f 'parse.cc' || echo '$(srcdir)/'`parse.cc - -libtnlconfig_mpi_0_1_la-tnlConfigDescription.lo: tnlConfigDescription.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_0_1_la-tnlConfigDescription.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescription.Tpo -c -o libtnlconfig_mpi_0_1_la-tnlConfigDescription.lo `test -f 'tnlConfigDescription.cpp' || echo '$(srcdir)/'`tnlConfigDescription.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescription.Tpo $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescription.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescription.cpp' object='libtnlconfig_mpi_0_1_la-tnlConfigDescription.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_0_1_la-tnlConfigDescription.lo `test -f 'tnlConfigDescription.cpp' || echo '$(srcdir)/'`tnlConfigDescription.cpp - -libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.lo: tnlConfigDescriptionScanner.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.Tpo -c -o libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.lo `test -f 'tnlConfigDescriptionScanner.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionScanner.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.Tpo $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescriptionScanner.cpp' object='libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_0_1_la-tnlConfigDescriptionScanner.lo `test -f 'tnlConfigDescriptionScanner.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionScanner.cpp - -libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.lo: tnlConfigDescriptionParser.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.Tpo -c -o libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.lo `test -f 'tnlConfigDescriptionParser.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionParser.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.Tpo $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescriptionParser.cpp' object='libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_0_1_la-tnlConfigDescriptionParser.lo `test -f 'tnlConfigDescriptionParser.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionParser.cpp - -libtnlconfig_mpi_0_1_la-tnlParameterContainer.lo: tnlParameterContainer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_0_1_la-tnlParameterContainer.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlParameterContainer.Tpo -c -o libtnlconfig_mpi_0_1_la-tnlParameterContainer.lo `test -f 'tnlParameterContainer.cpp' || echo '$(srcdir)/'`tnlParameterContainer.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlParameterContainer.Tpo $(DEPDIR)/libtnlconfig_mpi_0_1_la-tnlParameterContainer.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlParameterContainer.cpp' object='libtnlconfig_mpi_0_1_la-tnlParameterContainer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_0_1_la-tnlParameterContainer.lo `test -f 'tnlParameterContainer.cpp' || echo '$(srcdir)/'`tnlParameterContainer.cpp - -libtnlconfig_mpi_0_1_la-parse.lo: parse.cc -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_0_1_la-parse.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_0_1_la-parse.Tpo -c -o libtnlconfig_mpi_0_1_la-parse.lo `test -f 'parse.cc' || echo '$(srcdir)/'`parse.cc -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_0_1_la-parse.Tpo $(DEPDIR)/libtnlconfig_mpi_0_1_la-parse.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='parse.cc' object='libtnlconfig_mpi_0_1_la-parse.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_0_1_la-parse.lo `test -f 'parse.cc' || echo '$(srcdir)/'`parse.cc - -libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.lo: tnlConfigDescription.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.Tpo -c -o libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.lo `test -f 'tnlConfigDescription.cpp' || echo '$(srcdir)/'`tnlConfigDescription.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.Tpo $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescription.cpp' object='libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescription.lo `test -f 'tnlConfigDescription.cpp' || echo '$(srcdir)/'`tnlConfigDescription.cpp - -libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.lo: tnlConfigDescriptionScanner.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.Tpo -c -o libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.lo `test -f 'tnlConfigDescriptionScanner.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionScanner.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.Tpo $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescriptionScanner.cpp' object='libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionScanner.lo `test -f 'tnlConfigDescriptionScanner.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionScanner.cpp - -libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.lo: tnlConfigDescriptionParser.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.Tpo -c -o libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.lo `test -f 'tnlConfigDescriptionParser.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionParser.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.Tpo $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlConfigDescriptionParser.cpp' object='libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_dbg_0_1_la-tnlConfigDescriptionParser.lo `test -f 'tnlConfigDescriptionParser.cpp' || echo '$(srcdir)/'`tnlConfigDescriptionParser.cpp - -libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.lo: tnlParameterContainer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.Tpo -c -o libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.lo `test -f 'tnlParameterContainer.cpp' || echo '$(srcdir)/'`tnlParameterContainer.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.Tpo $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnlParameterContainer.cpp' object='libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_dbg_0_1_la-tnlParameterContainer.lo `test -f 'tnlParameterContainer.cpp' || echo '$(srcdir)/'`tnlParameterContainer.cpp - -libtnlconfig_mpi_dbg_0_1_la-parse.lo: parse.cc -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -MT libtnlconfig_mpi_dbg_0_1_la-parse.lo -MD -MP -MF $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-parse.Tpo -c -o libtnlconfig_mpi_dbg_0_1_la-parse.lo `test -f 'parse.cc' || echo '$(srcdir)/'`parse.cc -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-parse.Tpo $(DEPDIR)/libtnlconfig_mpi_dbg_0_1_la-parse.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='parse.cc' object='libtnlconfig_mpi_dbg_0_1_la-parse.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtnlconfig_mpi_dbg_0_1_la_CXXFLAGS) $(CXXFLAGS) -c -o libtnlconfig_mpi_dbg_0_1_la-parse.lo `test -f 'parse.cc' || echo '$(srcdir)/'`parse.cc - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-libtnlconfigincludeHEADERS: $(libtnlconfiginclude_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(libtnlconfigincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libtnlconfigincludedir)" - @list='$(libtnlconfiginclude_HEADERS)'; test -n "$(libtnlconfigincludedir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libtnlconfigincludedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(libtnlconfigincludedir)" || exit $$?; \ - done - -uninstall-libtnlconfigincludeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(libtnlconfiginclude_HEADERS)'; test -n "$(libtnlconfigincludedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(libtnlconfigincludedir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(libtnlconfigincludedir)" && rm -f $$files - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(libtnlconfigincludedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-libtnlconfigincludeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libtnlconfigincludeHEADERS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libtnlconfigincludeHEADERS install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am \ - uninstall-libtnlconfigincludeHEADERS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/src/core/Makefile b/src/core/Makefile deleted file mode 100644 index 3782132ca3..0000000000 --- a/src/core/Makefile +++ /dev/null @@ -1,527 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/src/core/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/rule -.PHONY : src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/rule - -# Convenience name for target. -libtnlcore-dbg-0.1: src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/rule -.PHONY : libtnlcore-dbg-0.1 - -# fast build rule for target. -libtnlcore-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build -.PHONY : libtnlcore-dbg-0.1/fast - -# Convenience name for target. -src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/rule -.PHONY : src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/rule - -# Convenience name for target. -libtnlcore-mpi-dbg-0.1: src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/rule -.PHONY : libtnlcore-mpi-dbg-0.1 - -# fast build rule for target. -libtnlcore-mpi-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build -.PHONY : libtnlcore-mpi-dbg-0.1/fast - -mfilename.o: mfilename.cpp.o -.PHONY : mfilename.o - -# target to build an object file -mfilename.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/mfilename.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/mfilename.cpp.o -.PHONY : mfilename.cpp.o - -mfilename.i: mfilename.cpp.i -.PHONY : mfilename.i - -# target to preprocess a source file -mfilename.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/mfilename.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/mfilename.cpp.i -.PHONY : mfilename.cpp.i - -mfilename.s: mfilename.cpp.s -.PHONY : mfilename.s - -# target to generate assembly for a file -mfilename.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/mfilename.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/mfilename.cpp.s -.PHONY : mfilename.cpp.s - -mpi-supp.o: mpi-supp.cpp.o -.PHONY : mpi-supp.o - -# target to build an object file -mpi-supp.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/mpi-supp.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/mpi-supp.cpp.o -.PHONY : mpi-supp.cpp.o - -mpi-supp.i: mpi-supp.cpp.i -.PHONY : mpi-supp.i - -# target to preprocess a source file -mpi-supp.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/mpi-supp.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/mpi-supp.cpp.i -.PHONY : mpi-supp.cpp.i - -mpi-supp.s: mpi-supp.cpp.s -.PHONY : mpi-supp.s - -# target to generate assembly for a file -mpi-supp.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/mpi-supp.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/mpi-supp.cpp.s -.PHONY : mpi-supp.cpp.s - -tnlCudaSupport.o: tnlCudaSupport.cpp.o -.PHONY : tnlCudaSupport.o - -# target to build an object file -tnlCudaSupport.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlCudaSupport.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlCudaSupport.cpp.o -.PHONY : tnlCudaSupport.cpp.o - -tnlCudaSupport.i: tnlCudaSupport.cpp.i -.PHONY : tnlCudaSupport.i - -# target to preprocess a source file -tnlCudaSupport.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlCudaSupport.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlCudaSupport.cpp.i -.PHONY : tnlCudaSupport.cpp.i - -tnlCudaSupport.s: tnlCudaSupport.cpp.s -.PHONY : tnlCudaSupport.s - -# target to generate assembly for a file -tnlCudaSupport.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlCudaSupport.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlCudaSupport.cpp.s -.PHONY : tnlCudaSupport.cpp.s - -tnlFile.o: tnlFile.cpp.o -.PHONY : tnlFile.o - -# target to build an object file -tnlFile.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlFile.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlFile.cpp.o -.PHONY : tnlFile.cpp.o - -tnlFile.i: tnlFile.cpp.i -.PHONY : tnlFile.i - -# target to preprocess a source file -tnlFile.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlFile.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlFile.cpp.i -.PHONY : tnlFile.cpp.i - -tnlFile.s: tnlFile.cpp.s -.PHONY : tnlFile.s - -# target to generate assembly for a file -tnlFile.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlFile.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlFile.cpp.s -.PHONY : tnlFile.cpp.s - -tnlFlopsCounter.o: tnlFlopsCounter.cpp.o -.PHONY : tnlFlopsCounter.o - -# target to build an object file -tnlFlopsCounter.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlFlopsCounter.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlFlopsCounter.cpp.o -.PHONY : tnlFlopsCounter.cpp.o - -tnlFlopsCounter.i: tnlFlopsCounter.cpp.i -.PHONY : tnlFlopsCounter.i - -# target to preprocess a source file -tnlFlopsCounter.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlFlopsCounter.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlFlopsCounter.cpp.i -.PHONY : tnlFlopsCounter.cpp.i - -tnlFlopsCounter.s: tnlFlopsCounter.cpp.s -.PHONY : tnlFlopsCounter.s - -# target to generate assembly for a file -tnlFlopsCounter.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlFlopsCounter.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlFlopsCounter.cpp.s -.PHONY : tnlFlopsCounter.cpp.s - -tnlLogger.o: tnlLogger.cpp.o -.PHONY : tnlLogger.o - -# target to build an object file -tnlLogger.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlLogger.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlLogger.cpp.o -.PHONY : tnlLogger.cpp.o - -tnlLogger.i: tnlLogger.cpp.i -.PHONY : tnlLogger.i - -# target to preprocess a source file -tnlLogger.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlLogger.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlLogger.cpp.i -.PHONY : tnlLogger.cpp.i - -tnlLogger.s: tnlLogger.cpp.s -.PHONY : tnlLogger.s - -# target to generate assembly for a file -tnlLogger.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlLogger.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlLogger.cpp.s -.PHONY : tnlLogger.cpp.s - -tnlObject.o: tnlObject.cpp.o -.PHONY : tnlObject.o - -# target to build an object file -tnlObject.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlObject.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlObject.cpp.o -.PHONY : tnlObject.cpp.o - -tnlObject.i: tnlObject.cpp.i -.PHONY : tnlObject.i - -# target to preprocess a source file -tnlObject.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlObject.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlObject.cpp.i -.PHONY : tnlObject.cpp.i - -tnlObject.s: tnlObject.cpp.s -.PHONY : tnlObject.s - -# target to generate assembly for a file -tnlObject.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlObject.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlObject.cpp.s -.PHONY : tnlObject.cpp.s - -tnlString.o: tnlString.cpp.o -.PHONY : tnlString.o - -# target to build an object file -tnlString.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlString.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlString.cpp.o -.PHONY : tnlString.cpp.o - -tnlString.i: tnlString.cpp.i -.PHONY : tnlString.i - -# target to preprocess a source file -tnlString.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlString.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlString.cpp.i -.PHONY : tnlString.cpp.i - -tnlString.s: tnlString.cpp.s -.PHONY : tnlString.s - -# target to generate assembly for a file -tnlString.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlString.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlString.cpp.s -.PHONY : tnlString.cpp.s - -tnlTimerCPU.o: tnlTimerCPU.cpp.o -.PHONY : tnlTimerCPU.o - -# target to build an object file -tnlTimerCPU.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlTimerCPU.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlTimerCPU.cpp.o -.PHONY : tnlTimerCPU.cpp.o - -tnlTimerCPU.i: tnlTimerCPU.cpp.i -.PHONY : tnlTimerCPU.i - -# target to preprocess a source file -tnlTimerCPU.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlTimerCPU.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlTimerCPU.cpp.i -.PHONY : tnlTimerCPU.cpp.i - -tnlTimerCPU.s: tnlTimerCPU.cpp.s -.PHONY : tnlTimerCPU.s - -# target to generate assembly for a file -tnlTimerCPU.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlTimerCPU.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlTimerCPU.cpp.s -.PHONY : tnlTimerCPU.cpp.s - -tnlTimerRT.o: tnlTimerRT.cpp.o -.PHONY : tnlTimerRT.o - -# target to build an object file -tnlTimerRT.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlTimerRT.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlTimerRT.cpp.o -.PHONY : tnlTimerRT.cpp.o - -tnlTimerRT.i: tnlTimerRT.cpp.i -.PHONY : tnlTimerRT.i - -# target to preprocess a source file -tnlTimerRT.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlTimerRT.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlTimerRT.cpp.i -.PHONY : tnlTimerRT.cpp.i - -tnlTimerRT.s: tnlTimerRT.cpp.s -.PHONY : tnlTimerRT.s - -# target to generate assembly for a file -tnlTimerRT.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-dbg-0.1.dir/tnlTimerRT.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/build.make src/core/CMakeFiles/libtnlcore-mpi-dbg-0.1.dir/tnlTimerRT.cpp.s -.PHONY : tnlTimerRT.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 "... libtnlcore-dbg-0.1" - @echo "... libtnlcore-mpi-dbg-0.1" - @echo "... list_install_components" - @echo "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" - @echo "... mfilename.o" - @echo "... mfilename.i" - @echo "... mfilename.s" - @echo "... mpi-supp.o" - @echo "... mpi-supp.i" - @echo "... mpi-supp.s" - @echo "... tnlCudaSupport.o" - @echo "... tnlCudaSupport.i" - @echo "... tnlCudaSupport.s" - @echo "... tnlFile.o" - @echo "... tnlFile.i" - @echo "... tnlFile.s" - @echo "... tnlFlopsCounter.o" - @echo "... tnlFlopsCounter.i" - @echo "... tnlFlopsCounter.s" - @echo "... tnlLogger.o" - @echo "... tnlLogger.i" - @echo "... tnlLogger.s" - @echo "... tnlObject.o" - @echo "... tnlObject.i" - @echo "... tnlObject.s" - @echo "... tnlString.o" - @echo "... tnlString.i" - @echo "... tnlString.s" - @echo "... tnlTimerCPU.o" - @echo "... tnlTimerCPU.i" - @echo "... tnlTimerCPU.s" - @echo "... tnlTimerRT.o" - @echo "... tnlTimerRT.i" - @echo "... tnlTimerRT.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/core/Makefile.am b/src/core/Makefile.am deleted file mode 100644 index b60b59595b..0000000000 --- a/src/core/Makefile.am +++ /dev/null @@ -1,96 +0,0 @@ -## Process this file with automake to produce Makefile.in - -#if BUILDMPI -#SUBDIRS = mpi -#else -#SUBDIRS = -#endif - -SUBDIRS = low-level - -headers = tnlAssert.h \ - tnlArray.h \ - tnlCommunicator.h \ - tnlCoordinates.h \ - tnlCriticalSection.h \ - tnlCurve.h \ - tnlCudaSupport.h \ - tnlDataElement.h \ - tnlFieldSystem1D.h \ - tnlFile.h \ - tnlFlopsCounter.h \ - tnlList.h \ - tnlLongVector.h \ - tnlLongVectorBase.h \ - tnlLongVectorHost.h \ - tnlLongVectorCUDA.h \ - tnlLogger.h \ - tnlObject.h \ - tnlSharedMemory.h \ - tnlStack.h \ - tnlStatistics.h \ - tnlString.h \ - tnlReal.h \ - tnlTimerCPU.h \ - tnlTimerRT.h \ - tnlVector.h \ - mfilename.h \ - mfuncs.h \ - mpi-supp.h \ - param-types.h - -sources = tnlCriticalSection.cpp \ - tnlCudaSupport.cpp \ - tnlFile.cpp \ - tnlFlopsCounter.cpp \ - tnlLogger.cpp \ - tnlObject.cpp \ - tnlStatistics.cpp \ - tnlString.cpp \ - tnlTimerCPU.cpp \ - tnlTimerRT.cpp \ - mfilename.cpp \ - mpi-supp.cpp - - - -if BUILD_CUDA -sources += -endif - -libtnlcoreincludedir = $(TNL_INCLUDE_DIR)/core -libtnlcoreinclude_HEADERS = $(headers) - - -noinst_LTLIBRARIES = libtnlcore-0.1.la -libtnlcore_0_1_la_SOURCES = $(sources) $(headers) -libtnlcore_0_1_la_CXXFLAGS = $(OPTIMSECXXFLAGS) - -if BUILD_MPI -noinst_LTLIBRARIES += libtnlcore-mpi-0.1.la -libtnlcore_mpi_0_1_la_SOURCES = $(sources) $(headers) -libtnlcore_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMSECXXFLAGS) -libtnlcore_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -endif - -if BUILD_DBG -noinst_LTLIBRARIES += libtnlcore-dbg-0.1.la -libtnlcore_dbg_0_1_la_SOURCES = $(sources) $(headers) -libtnlcore_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) -libtnlcore_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) -endif - -if BUILD_MPI_DBG -noinst_LTLIBRARIES += libtnlcore-mpi-dbg-0.1.la -libtnlcore_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) -libtnlcore_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) -libtnlcore_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPICXXFLAGS) $(DBGLDFLAGS) -endif - -check_LTLIBRARIES = libcore-tests.la -libcore_tests_la_SOURCES = $(libcore_tests_sources) - -if BUILD_DBG -noinst_LTLIBRARIES += libcore-tests-dbg.la -libcore_tests_dbg_la_SOURCES = $(libcore_tests_sources) -endif diff --git a/src/core/low-level/Makefile b/src/core/low-level/Makefile deleted file mode 100644 index 0ca187297f..0000000000 --- a/src/core/low-level/Makefile +++ /dev/null @@ -1,197 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/src/core/low-level/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/low-level/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/low-level/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/low-level/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/core/low-level/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# 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 "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" -.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/core/low-level/Makefile.am b/src/core/low-level/Makefile.am deleted file mode 100644 index 44dec1cc77..0000000000 --- a/src/core/low-level/Makefile.am +++ /dev/null @@ -1,6 +0,0 @@ -## Process this file with automake to produce Makefile.in - -headers = cuda-long-vector-kernels.h - -libtnlcore_low_level_includedir = $(TNL_INCLUDE_DIR)/core/low-level -libtnlcore_low_level_include_HEADERS = $(headers) diff --git a/src/core/low-level/Makefile.in b/src/core/low-level/Makefile.in deleted file mode 100644 index ef59e887d7..0000000000 --- a/src/core/low-level/Makefile.in +++ /dev/null @@ -1,466 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/core/low-level -DIST_COMMON = $(libtnlcore_low_level_include_HEADERS) \ - $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libtnlcore_low_level_includedir)" -HEADERS = $(libtnlcore_low_level_include_HEADERS) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CUDA_HEADERS = @CUDA_HEADERS@ -CUDA_LIBS = @CUDA_LIBS@ -CUSP_CXXFLAGS = @CUSP_CXXFLAGS@ -CUSP_DIR = @CUSP_DIR@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DBGCXXFLAGS = @DBGCXXFLAGS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -MPICC = @MPICC@ -MPICXX = @MPICXX@ -MPICXXFLAGS = @MPICXXFLAGS@ -MPILDFLAGS = @MPILDFLAGS@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NVCC = @NVCC@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OPTIMISECXXFLAGS = @OPTIMISECXXFLAGS@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TNL_INCLUDE_DIR = @TNL_INCLUDE_DIR@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -cuda = @cuda@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -headers = cuda-long-vector-kernels.h -libtnlcore_low_level_includedir = $(TNL_INCLUDE_DIR)/core/low-level -libtnlcore_low_level_include_HEADERS = $(headers) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/core/low-level/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/core/low-level/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-libtnlcore_low_level_includeHEADERS: $(libtnlcore_low_level_include_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(libtnlcore_low_level_includedir)" || $(MKDIR_P) "$(DESTDIR)$(libtnlcore_low_level_includedir)" - @list='$(libtnlcore_low_level_include_HEADERS)'; test -n "$(libtnlcore_low_level_includedir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libtnlcore_low_level_includedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(libtnlcore_low_level_includedir)" || exit $$?; \ - done - -uninstall-libtnlcore_low_level_includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(libtnlcore_low_level_include_HEADERS)'; test -n "$(libtnlcore_low_level_includedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(libtnlcore_low_level_includedir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(libtnlcore_low_level_includedir)" && rm -f $$files - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(libtnlcore_low_level_includedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-libtnlcore_low_level_includeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libtnlcore_low_level_includeHEADERS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool ctags distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-libtnlcore_low_level_includeHEADERS \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags uninstall uninstall-am \ - uninstall-libtnlcore_low_level_includeHEADERS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/src/debug/Makefile b/src/debug/Makefile deleted file mode 100644 index 0e7c077200..0000000000 --- a/src/debug/Makefile +++ /dev/null @@ -1,467 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/src/debug/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/debug/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/debug/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/debug/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/debug/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/rule -.PHONY : src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/rule - -# Convenience name for target. -libtnldebug-dbg-0.1: src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/rule -.PHONY : libtnldebug-dbg-0.1 - -# fast build rule for target. -libtnldebug-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build -.PHONY : libtnldebug-dbg-0.1/fast - -# Convenience name for target. -src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/rule -.PHONY : src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/rule - -# Convenience name for target. -libtnldebug-mpi-dbg-0.1: src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/rule -.PHONY : libtnldebug-mpi-dbg-0.1 - -# fast build rule for target. -libtnldebug-mpi-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build -.PHONY : libtnldebug-mpi-dbg-0.1/fast - -# Convenience name for target. -src/debug/CMakeFiles/tnl-debug-test.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/debug/CMakeFiles/tnl-debug-test.dir/rule -.PHONY : src/debug/CMakeFiles/tnl-debug-test.dir/rule - -# Convenience name for target. -tnl-debug-test: src/debug/CMakeFiles/tnl-debug-test.dir/rule -.PHONY : tnl-debug-test - -# fast build rule for target. -tnl-debug-test/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/tnl-debug-test.dir/build.make src/debug/CMakeFiles/tnl-debug-test.dir/build -.PHONY : tnl-debug-test/fast - -# Convenience name for target. -src/debug/CMakeFiles/tnl-debug-test-mpi.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/debug/CMakeFiles/tnl-debug-test-mpi.dir/rule -.PHONY : src/debug/CMakeFiles/tnl-debug-test-mpi.dir/rule - -# Convenience name for target. -tnl-debug-test-mpi: src/debug/CMakeFiles/tnl-debug-test-mpi.dir/rule -.PHONY : tnl-debug-test-mpi - -# fast build rule for target. -tnl-debug-test-mpi/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/tnl-debug-test-mpi.dir/build.make src/debug/CMakeFiles/tnl-debug-test-mpi.dir/build -.PHONY : tnl-debug-test-mpi/fast - -parse.o: parse.cc.o -.PHONY : parse.o - -# target to build an object file -parse.cc.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/parse.cc.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/parse.cc.o -.PHONY : parse.cc.o - -parse.i: parse.cc.i -.PHONY : parse.i - -# target to preprocess a source file -parse.cc.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/parse.cc.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/parse.cc.i -.PHONY : parse.cc.i - -parse.s: parse.cc.s -.PHONY : parse.s - -# target to generate assembly for a file -parse.cc.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/parse.cc.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/parse.cc.s -.PHONY : parse.cc.s - -tnl-debug-test.o: tnl-debug-test.cpp.o -.PHONY : tnl-debug-test.o - -# target to build an object file -tnl-debug-test.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/tnl-debug-test.dir/build.make src/debug/CMakeFiles/tnl-debug-test.dir/tnl-debug-test.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/tnl-debug-test-mpi.dir/build.make src/debug/CMakeFiles/tnl-debug-test-mpi.dir/tnl-debug-test.cpp.o -.PHONY : tnl-debug-test.cpp.o - -tnl-debug-test.i: tnl-debug-test.cpp.i -.PHONY : tnl-debug-test.i - -# target to preprocess a source file -tnl-debug-test.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/tnl-debug-test.dir/build.make src/debug/CMakeFiles/tnl-debug-test.dir/tnl-debug-test.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/tnl-debug-test-mpi.dir/build.make src/debug/CMakeFiles/tnl-debug-test-mpi.dir/tnl-debug-test.cpp.i -.PHONY : tnl-debug-test.cpp.i - -tnl-debug-test.s: tnl-debug-test.cpp.s -.PHONY : tnl-debug-test.s - -# target to generate assembly for a file -tnl-debug-test.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/tnl-debug-test.dir/build.make src/debug/CMakeFiles/tnl-debug-test.dir/tnl-debug-test.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/tnl-debug-test-mpi.dir/build.make src/debug/CMakeFiles/tnl-debug-test-mpi.dir/tnl-debug-test.cpp.s -.PHONY : tnl-debug-test.cpp.s - -tnlDebug.o: tnlDebug.cpp.o -.PHONY : tnlDebug.o - -# target to build an object file -tnlDebug.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebug.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebug.cpp.o -.PHONY : tnlDebug.cpp.o - -tnlDebug.i: tnlDebug.cpp.i -.PHONY : tnlDebug.i - -# target to preprocess a source file -tnlDebug.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebug.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebug.cpp.i -.PHONY : tnlDebug.cpp.i - -tnlDebug.s: tnlDebug.cpp.s -.PHONY : tnlDebug.s - -# target to generate assembly for a file -tnlDebug.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebug.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebug.cpp.s -.PHONY : tnlDebug.cpp.s - -tnlDebugGroup.o: tnlDebugGroup.cpp.o -.PHONY : tnlDebugGroup.o - -# target to build an object file -tnlDebugGroup.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugGroup.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugGroup.cpp.o -.PHONY : tnlDebugGroup.cpp.o - -tnlDebugGroup.i: tnlDebugGroup.cpp.i -.PHONY : tnlDebugGroup.i - -# target to preprocess a source file -tnlDebugGroup.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugGroup.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugGroup.cpp.i -.PHONY : tnlDebugGroup.cpp.i - -tnlDebugGroup.s: tnlDebugGroup.cpp.s -.PHONY : tnlDebugGroup.s - -# target to generate assembly for a file -tnlDebugGroup.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugGroup.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugGroup.cpp.s -.PHONY : tnlDebugGroup.cpp.s - -tnlDebugParser.o: tnlDebugParser.cpp.o -.PHONY : tnlDebugParser.o - -# target to build an object file -tnlDebugParser.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugParser.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugParser.cpp.o -.PHONY : tnlDebugParser.cpp.o - -tnlDebugParser.i: tnlDebugParser.cpp.i -.PHONY : tnlDebugParser.i - -# target to preprocess a source file -tnlDebugParser.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugParser.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugParser.cpp.i -.PHONY : tnlDebugParser.cpp.i - -tnlDebugParser.s: tnlDebugParser.cpp.s -.PHONY : tnlDebugParser.s - -# target to generate assembly for a file -tnlDebugParser.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugParser.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugParser.cpp.s -.PHONY : tnlDebugParser.cpp.s - -tnlDebugScanner.o: tnlDebugScanner.cpp.o -.PHONY : tnlDebugScanner.o - -# target to build an object file -tnlDebugScanner.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugScanner.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugScanner.cpp.o -.PHONY : tnlDebugScanner.cpp.o - -tnlDebugScanner.i: tnlDebugScanner.cpp.i -.PHONY : tnlDebugScanner.i - -# target to preprocess a source file -tnlDebugScanner.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugScanner.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugScanner.cpp.i -.PHONY : tnlDebugScanner.cpp.i - -tnlDebugScanner.s: tnlDebugScanner.cpp.s -.PHONY : tnlDebugScanner.s - -# target to generate assembly for a file -tnlDebugScanner.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugScanner.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugScanner.cpp.s -.PHONY : tnlDebugScanner.cpp.s - -tnlDebugStructure.o: tnlDebugStructure.cpp.o -.PHONY : tnlDebugStructure.o - -# target to build an object file -tnlDebugStructure.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugStructure.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugStructure.cpp.o -.PHONY : tnlDebugStructure.cpp.o - -tnlDebugStructure.i: tnlDebugStructure.cpp.i -.PHONY : tnlDebugStructure.i - -# target to preprocess a source file -tnlDebugStructure.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugStructure.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugStructure.cpp.i -.PHONY : tnlDebugStructure.cpp.i - -tnlDebugStructure.s: tnlDebugStructure.cpp.s -.PHONY : tnlDebugStructure.s - -# target to generate assembly for a file -tnlDebugStructure.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-dbg-0.1.dir/tnlDebugStructure.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/build.make src/debug/CMakeFiles/libtnldebug-mpi-dbg-0.1.dir/tnlDebugStructure.cpp.s -.PHONY : tnlDebugStructure.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 "... libtnldebug-dbg-0.1" - @echo "... libtnldebug-mpi-dbg-0.1" - @echo "... list_install_components" - @echo "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" - @echo "... tnl-debug-test" - @echo "... tnl-debug-test-mpi" - @echo "... parse.o" - @echo "... parse.i" - @echo "... parse.s" - @echo "... tnl-debug-test.o" - @echo "... tnl-debug-test.i" - @echo "... tnl-debug-test.s" - @echo "... tnlDebug.o" - @echo "... tnlDebug.i" - @echo "... tnlDebug.s" - @echo "... tnlDebugGroup.o" - @echo "... tnlDebugGroup.i" - @echo "... tnlDebugGroup.s" - @echo "... tnlDebugParser.o" - @echo "... tnlDebugParser.i" - @echo "... tnlDebugParser.s" - @echo "... tnlDebugScanner.o" - @echo "... tnlDebugScanner.i" - @echo "... tnlDebugScanner.s" - @echo "... tnlDebugStructure.o" - @echo "... tnlDebugStructure.i" - @echo "... tnlDebugStructure.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/debug/Makefile.am b/src/debug/Makefile.am deleted file mode 100644 index 163998def4..0000000000 --- a/src/debug/Makefile.am +++ /dev/null @@ -1,56 +0,0 @@ -## Process this file with automake to produce Makefile.in - -EXTRA_DIST = tnlDebugParser.y \ - tnlDebugScanner.l \ - create-tnl-debug-parser - -sources = tnlDebug.cpp \ - tnlDebugGroup.cpp \ - tnlDebugStructure.cpp \ - tnlDebugParser.cpp \ - tnlDebugScanner.cpp \ - parse.cc - -headers = tnlDbgDataElement.h \ - tnlDebugEntry.h \ - tnlDebugGroup.h \ - tnlDebugParserbase.h \ - tnlDebugParser.ih \ - tnlDebugParser.h \ - tnlDebug.h \ - tnlDebugScanner.h \ - tnlDebugStructure.h - -libtnldebug_0_1_la_includedir = $(TNL_INCLUDE_DIR)/debug -libtnldebug_0_1_la_include_HEADERS = $(headers) - -bin_PROGRAMS = tnl-debug-test -tnl_debug_test_SOURCES = tnl-debug-test.cpp -tnl_debug_test_LDADD = libtnldebug-0.1.la - -noinst_LTLIBRARIES = libtnldebug-0.1.la -libtnldebug_0_1_la_SOURCES = $(sources) -libtnldebug_0_1_la_CXXFLAGS = $(OPTIMISECXXFLAGS) - -if BUILD_MPI -noinst_LTLIBRARIES += libtnldebug-mpi-0.1.la -libtnldebug_mpi_0_1_la_SOURCES = $(sources) -libtnldebug_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) -libtnldebug_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -endif - -if BUILD_DBG -noinst_LTLIBRARIES += libtnldebug-dbg-0.1.la -libtnldebug_dbg_0_1_la_SOURCES = $(sources) -libtnldebug_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) -endif - -if BUILD_MPI_DBG -noinst_LTLIBRARIES += libtnldebug-mpi-dbg-0.1.la -libtnldebug_mpi_dbg_0_1_la_SOURCES = $(sources) -libtnldebug_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) -libtnldebug_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -endif - - - diff --git a/src/diff/Makefile b/src/diff/Makefile deleted file mode 100644 index 6a944b6bdf..0000000000 --- a/src/diff/Makefile +++ /dev/null @@ -1,257 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/src/diff/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/diff/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/diff/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/diff/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/diff/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/rule -.PHONY : src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/rule - -# Convenience name for target. -libtnldiff-dbg-0.1: src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/rule -.PHONY : libtnldiff-dbg-0.1 - -# fast build rule for target. -libtnldiff-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/build.make src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/build -.PHONY : libtnldiff-dbg-0.1/fast - -# Convenience name for target. -src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/rule -.PHONY : src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/rule - -# Convenience name for target. -libtnldiff-mpi-dbg-0.1: src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/rule -.PHONY : libtnldiff-mpi-dbg-0.1 - -# fast build rule for target. -libtnldiff-mpi-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/build.make src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/build -.PHONY : libtnldiff-mpi-dbg-0.1/fast - -__/dummy.o: __/dummy.cpp.o -.PHONY : __/dummy.o - -# target to build an object file -__/dummy.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/build.make src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/__/dummy.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/build.make src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/__/dummy.cpp.o -.PHONY : __/dummy.cpp.o - -__/dummy.i: __/dummy.cpp.i -.PHONY : __/dummy.i - -# target to preprocess a source file -__/dummy.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/build.make src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/__/dummy.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/build.make src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/__/dummy.cpp.i -.PHONY : __/dummy.cpp.i - -__/dummy.s: __/dummy.cpp.s -.PHONY : __/dummy.s - -# target to generate assembly for a file -__/dummy.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/build.make src/diff/CMakeFiles/libtnldiff-dbg-0.1.dir/__/dummy.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/build.make src/diff/CMakeFiles/libtnldiff-mpi-dbg-0.1.dir/__/dummy.cpp.s -.PHONY : __/dummy.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 "... libtnldiff-dbg-0.1" - @echo "... libtnldiff-mpi-dbg-0.1" - @echo "... list_install_components" - @echo "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" - @echo "... __/dummy.o" - @echo "... __/dummy.i" - @echo "... __/dummy.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/diff/Makefile.am b/src/diff/Makefile.am deleted file mode 100644 index 5024524426..0000000000 --- a/src/diff/Makefile.am +++ /dev/null @@ -1,59 +0,0 @@ -## Process this file with automake to produce Makefile.in - -#if BUILDMPI -#SUBDIRS = mpi -#else -#SUBDIRS = -#endif - -headers = \ - tnlMPIMesh.h \ - tnlMPIMesh2D.h \ - tnlMPIMesh3D.h \ - curve-ident.h - -sources = - -libtnldiffincludedir = $(TNL_INCLUDE_DIR)/diff -libtnldiffinclude_HEADERS = $(headers) - -noinst_LTLIBRARIES = libtnldiff-0.1.la -libtnldiff_0_1_la_SOURCES = $(sources) $(headers) -libtnldiff_0_1_la_CXXFLAGS = $(OPTIMISECXXFLAGS) - -if BUILD_DBG - noinst_LTLIBRARIES += libtnldiff-dbg-0.1.la - libtnldiff_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) - libtnldiff_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) - libtnldiff_dbg_0_1_la_SOURCES = $(sources) $(headers) -endif - -if BUILD_MPI - noinst_LTLIBRARIES += libtnldiff-mpi-0.1.la - libtnldiff_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMISECXXFLAGS) - libtnldiff_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) - libtnldiff_mpi_0_1_la_SOURCES = $(sources) $(headers) -endif - - -if BUILD_MPI_DBG - - noinst_LTLIBRARIES += libtnldiff-mpi-dbg-0.1.la - libtnldiff_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) - libtnldiff_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) $(DBGLDFLAGS) - libtnldiff_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) -endif - -libdiff_tests_sources = - -if BUILD_CUDA -libdiff_tests_sources += -endif - -check_LTLIBRARIES = libdiff-tests.la -libdiff_tests_la_SOURCES = $(libdiff_tests_sources) - -if BUILD_DBG -noinst_LTLIBRARIES += libdiff-tests-dbg.la -libdiff_tests_dbg_la_SOURCES = $(libdiff_tests_sources) -endif diff --git a/src/matrix/Makefile.am b/src/matrix/Makefile.am deleted file mode 100644 index 79e67b4c0f..0000000000 --- a/src/matrix/Makefile.am +++ /dev/null @@ -1,45 +0,0 @@ -## Process this file with automake to produce Makefile.in - -headers = \ - tnlAdaptiveRgCSRMatrix.h \ - tnlMatrix.h \ - tnlRgCSRMatrix.h \ - tnlFastRgCSRMatrix.h \ - tnlFastRgCSRMatrixCUDA.h \ - tnlEllpackMatrix.h \ - tnlEllpackMatrixCUDA.h \ - tnlCSRMatrix.h \ - tnlFastCSRMatrix.h \ - tnlFullMatrix.h \ - tnlPETSCMatrix.h - -sources = tnlMatrix.cpp - -libtnlmatrixincludedir = $(TNL_INCLUDE_DIR)/matrix -libtnlmatrixinclude_HEADERS = $(headers) - -noinst_LTLIBRARIES = libtnlmatrix-0.1.la -libtnlmatrix_0_1_la_SOURCES = $(sources) $(headers) -libtnlmatrix_0_1_la_CXXFLAGS = $(OPTIMISECXXFLAGS) - -if BUILD_DBG - noinst_LTLIBRARIES += libtnlmatrix-dbg-0.1.la - libtnlmatrix_dbg_0_1_la_SOURCES = $(sources) $(headers) - libtnlmatrix_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) - libtnlmatrix_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) -endif - -if BUILD_MPI - noinst_LTLIBRARIES += libtnlmatrix-mpi-0.1.la - libtnlmatrix_mpi_0_1_la_SOURCES = $(sources) $(headers) - libtnlmatrix_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMISECXXFLAGS) - libtnlmatrix_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -endif - -if BUILD_MPI_DBG - noinst_LTLIBRARIES += libtnlmatrix-mpi-dbg-0.1.la - libtnlmatrix_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) - libtnlmatrix_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) - libtnlmatrix_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) $(DBGLDFLAGS) -endif - diff --git a/src/mesh/CMakeLists.txt b/src/mesh/CMakeLists.txt index 1d6a5c9c01..39d3df84ea 100755 --- a/src/mesh/CMakeLists.txt +++ b/src/mesh/CMakeLists.txt @@ -7,7 +7,7 @@ SET( libtnlmeshincludedir ${TNL_INCLUDE_DIR}/mesh ) SET( libtnlmeshinclude_HEADERS ${headers} ) ADD_LIBRARY( tnlmesh${debugExt}-${tnlVersion} SHARED ${sources} ${headers} ) -TARGET_LINK_LIBRARIES( libtnlmesh${debugExt}-${tnlVersion} ) +TARGET_LINK_LIBRARIES( tnlmesh${debugExt}-${tnlVersion} ) INSTALL( TARGETS tnlmesh${debugExt}-${tnlVersion} LIBRARY DESTINATION lib ) IF( BUILD_MPI ) diff --git a/src/mesh/Makefile b/src/mesh/Makefile deleted file mode 100644 index db99c5d28e..0000000000 --- a/src/mesh/Makefile +++ /dev/null @@ -1,257 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/src/mesh/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/mesh/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/mesh/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/mesh/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/mesh/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/rule -.PHONY : src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/rule - -# Convenience name for target. -libtnlmesh-dbg-0.1: src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/rule -.PHONY : libtnlmesh-dbg-0.1 - -# fast build rule for target. -libtnlmesh-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/build.make src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/build -.PHONY : libtnlmesh-dbg-0.1/fast - -# Convenience name for target. -src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/rule -.PHONY : src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/rule - -# Convenience name for target. -libtnlmesh-mpi-dbg-0.1: src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/rule -.PHONY : libtnlmesh-mpi-dbg-0.1 - -# fast build rule for target. -libtnlmesh-mpi-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/build.make src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/build -.PHONY : libtnlmesh-mpi-dbg-0.1/fast - -__/dummy.o: __/dummy.cpp.o -.PHONY : __/dummy.o - -# target to build an object file -__/dummy.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/build.make src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/__/dummy.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/build.make src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/__/dummy.cpp.o -.PHONY : __/dummy.cpp.o - -__/dummy.i: __/dummy.cpp.i -.PHONY : __/dummy.i - -# target to preprocess a source file -__/dummy.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/build.make src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/__/dummy.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/build.make src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/__/dummy.cpp.i -.PHONY : __/dummy.cpp.i - -__/dummy.s: __/dummy.cpp.s -.PHONY : __/dummy.s - -# target to generate assembly for a file -__/dummy.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/build.make src/mesh/CMakeFiles/libtnlmesh-dbg-0.1.dir/__/dummy.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/build.make src/mesh/CMakeFiles/libtnlmesh-mpi-dbg-0.1.dir/__/dummy.cpp.s -.PHONY : __/dummy.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 "... libtnlmesh-dbg-0.1" - @echo "... libtnlmesh-mpi-dbg-0.1" - @echo "... list_install_components" - @echo "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" - @echo "... __/dummy.o" - @echo "... __/dummy.i" - @echo "... __/dummy.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/mesh/Makefile.am b/src/mesh/Makefile.am deleted file mode 100644 index ed00d5079e..0000000000 --- a/src/mesh/Makefile.am +++ /dev/null @@ -1,41 +0,0 @@ -## Process this file with automake to produce Makefile.in - -headers = \ - tnlDistributedGrid.h \ - tnlGrid.h - -sources = - -if BUILD_CUDA -sources += -headers += -endif - -libtnlmeshincludedir = $(TNL_INCLUDE_DIR)/mesh -libtnlmeshinclude_HEADERS = $(headers) - -noinst_LTLIBRARIES = libtnlmesh-0.1.la -libtnlmesh_0_1_la_SOURCES = $(sources) $(headers) -libtnlmesh_0_1_la_CXXFLAGS = $(OPTIMISECXXFLAGS) - -if BUILD_DBG - noinst_LTLIBRARIES += libtnlmesh-dbg-0.1.la - libtnlmesh_dbg_0_1_la_SOURCES = $(sources) $(headers) - libtnlmesh_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) - libtnlmesh_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) -endif - -if BUILD_MPI - noinst_LTLIBRARIES += libtnlmesh-mpi-0.1.la - libtnlmesh_mpi_0_1_la_SOURCES = $(sources) $(headers) - libtnlmesh_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMISECXXFLAGS) - libtnlmesh_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -endif - -if BUILD_MPI_DBG - noinst_LTLIBRARIES += libtnlmesh-mpi-dbg-0.1.la - libtnlmesh_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) - libtnlmesh_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) - libtnlmesh_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) $(DBGLDFLAGS) -endif - diff --git a/src/mesh/Makefile.in b/src/mesh/Makefile.in deleted file mode 100644 index 9c482441b8..0000000000 --- a/src/mesh/Makefile.in +++ /dev/null @@ -1,566 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -@BUILD_CUDA_TRUE@am__append_1 = -@BUILD_CUDA_TRUE@am__append_2 = -@BUILD_DBG_TRUE@am__append_3 = libtnlmesh-dbg-0.1.la -@BUILD_MPI_TRUE@am__append_4 = libtnlmesh-mpi-0.1.la -@BUILD_MPI_DBG_TRUE@am__append_5 = libtnlmesh-mpi-dbg-0.1.la -subdir = src/mesh -DIST_COMMON = $(libtnlmeshinclude_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) -libtnlmesh_0_1_la_LIBADD = -am__objects_1 = -am__objects_2 = $(am__objects_1) -am_libtnlmesh_0_1_la_OBJECTS = $(am__objects_2) $(am__objects_2) -libtnlmesh_0_1_la_OBJECTS = $(am_libtnlmesh_0_1_la_OBJECTS) -libtnlmesh_dbg_0_1_la_LIBADD = -am__libtnlmesh_dbg_0_1_la_SOURCES_DIST = tnlDistributedGrid.h \ - tnlGrid.h -@BUILD_DBG_TRUE@am_libtnlmesh_dbg_0_1_la_OBJECTS = $(am__objects_2) \ -@BUILD_DBG_TRUE@ $(am__objects_2) -libtnlmesh_dbg_0_1_la_OBJECTS = $(am_libtnlmesh_dbg_0_1_la_OBJECTS) -libtnlmesh_dbg_0_1_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libtnlmesh_dbg_0_1_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_DBG_TRUE@am_libtnlmesh_dbg_0_1_la_rpath = -libtnlmesh_mpi_0_1_la_LIBADD = -am__libtnlmesh_mpi_0_1_la_SOURCES_DIST = tnlDistributedGrid.h \ - tnlGrid.h -@BUILD_MPI_TRUE@am_libtnlmesh_mpi_0_1_la_OBJECTS = $(am__objects_2) \ -@BUILD_MPI_TRUE@ $(am__objects_2) -libtnlmesh_mpi_0_1_la_OBJECTS = $(am_libtnlmesh_mpi_0_1_la_OBJECTS) -libtnlmesh_mpi_0_1_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libtnlmesh_mpi_0_1_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_MPI_TRUE@am_libtnlmesh_mpi_0_1_la_rpath = -libtnlmesh_mpi_dbg_0_1_la_LIBADD = -am__libtnlmesh_mpi_dbg_0_1_la_SOURCES_DIST = tnlDistributedGrid.h \ - tnlGrid.h -@BUILD_MPI_DBG_TRUE@am_libtnlmesh_mpi_dbg_0_1_la_OBJECTS = \ -@BUILD_MPI_DBG_TRUE@ $(am__objects_2) $(am__objects_2) -libtnlmesh_mpi_dbg_0_1_la_OBJECTS = \ - $(am_libtnlmesh_mpi_dbg_0_1_la_OBJECTS) -libtnlmesh_mpi_dbg_0_1_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libtnlmesh_mpi_dbg_0_1_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@BUILD_MPI_DBG_TRUE@am_libtnlmesh_mpi_dbg_0_1_la_rpath = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(libtnlmesh_0_1_la_SOURCES) \ - $(libtnlmesh_dbg_0_1_la_SOURCES) \ - $(libtnlmesh_mpi_0_1_la_SOURCES) \ - $(libtnlmesh_mpi_dbg_0_1_la_SOURCES) -DIST_SOURCES = $(libtnlmesh_0_1_la_SOURCES) \ - $(am__libtnlmesh_dbg_0_1_la_SOURCES_DIST) \ - $(am__libtnlmesh_mpi_0_1_la_SOURCES_DIST) \ - $(am__libtnlmesh_mpi_dbg_0_1_la_SOURCES_DIST) -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libtnlmeshincludedir)" -HEADERS = $(libtnlmeshinclude_HEADERS) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CUDA_HEADERS = @CUDA_HEADERS@ -CUDA_LIBS = @CUDA_LIBS@ -CUSP_CXXFLAGS = @CUSP_CXXFLAGS@ -CUSP_DIR = @CUSP_DIR@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DBGCXXFLAGS = @DBGCXXFLAGS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -MPICC = @MPICC@ -MPICXX = @MPICXX@ -MPICXXFLAGS = @MPICXXFLAGS@ -MPILDFLAGS = @MPILDFLAGS@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NVCC = @NVCC@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OPTIMISECXXFLAGS = @OPTIMISECXXFLAGS@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TNL_INCLUDE_DIR = @TNL_INCLUDE_DIR@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -cuda = @cuda@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -headers = tnlDistributedGrid.h tnlGrid.h $(am__append_2) -sources = $(am__append_1) -libtnlmeshincludedir = $(TNL_INCLUDE_DIR)/mesh -libtnlmeshinclude_HEADERS = $(headers) -noinst_LTLIBRARIES = libtnlmesh-0.1.la $(am__append_3) $(am__append_4) \ - $(am__append_5) -libtnlmesh_0_1_la_SOURCES = $(sources) $(headers) -libtnlmesh_0_1_la_CXXFLAGS = $(OPTIMISECXXFLAGS) -@BUILD_DBG_TRUE@libtnlmesh_dbg_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_DBG_TRUE@libtnlmesh_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) -@BUILD_DBG_TRUE@libtnlmesh_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) -@BUILD_MPI_TRUE@libtnlmesh_mpi_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_MPI_TRUE@libtnlmesh_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMISECXXFLAGS) -@BUILD_MPI_TRUE@libtnlmesh_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -@BUILD_MPI_DBG_TRUE@libtnlmesh_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_MPI_DBG_TRUE@libtnlmesh_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) -@BUILD_MPI_DBG_TRUE@libtnlmesh_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) $(DBGLDFLAGS) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/mesh/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/mesh/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) - @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libtnlmesh-0.1.la: $(libtnlmesh_0_1_la_OBJECTS) $(libtnlmesh_0_1_la_DEPENDENCIES) - $(LINK) $(libtnlmesh_0_1_la_OBJECTS) $(libtnlmesh_0_1_la_LIBADD) $(LIBS) -libtnlmesh-dbg-0.1.la: $(libtnlmesh_dbg_0_1_la_OBJECTS) $(libtnlmesh_dbg_0_1_la_DEPENDENCIES) - $(libtnlmesh_dbg_0_1_la_LINK) $(am_libtnlmesh_dbg_0_1_la_rpath) $(libtnlmesh_dbg_0_1_la_OBJECTS) $(libtnlmesh_dbg_0_1_la_LIBADD) $(LIBS) -libtnlmesh-mpi-0.1.la: $(libtnlmesh_mpi_0_1_la_OBJECTS) $(libtnlmesh_mpi_0_1_la_DEPENDENCIES) - $(libtnlmesh_mpi_0_1_la_LINK) $(am_libtnlmesh_mpi_0_1_la_rpath) $(libtnlmesh_mpi_0_1_la_OBJECTS) $(libtnlmesh_mpi_0_1_la_LIBADD) $(LIBS) -libtnlmesh-mpi-dbg-0.1.la: $(libtnlmesh_mpi_dbg_0_1_la_OBJECTS) $(libtnlmesh_mpi_dbg_0_1_la_DEPENDENCIES) - $(libtnlmesh_mpi_dbg_0_1_la_LINK) $(am_libtnlmesh_mpi_dbg_0_1_la_rpath) $(libtnlmesh_mpi_dbg_0_1_la_OBJECTS) $(libtnlmesh_mpi_dbg_0_1_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-libtnlmeshincludeHEADERS: $(libtnlmeshinclude_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(libtnlmeshincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libtnlmeshincludedir)" - @list='$(libtnlmeshinclude_HEADERS)'; test -n "$(libtnlmeshincludedir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libtnlmeshincludedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(libtnlmeshincludedir)" || exit $$?; \ - done - -uninstall-libtnlmeshincludeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(libtnlmeshinclude_HEADERS)'; test -n "$(libtnlmeshincludedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(libtnlmeshincludedir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(libtnlmeshincludedir)" && rm -f $$files - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(libtnlmeshincludedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-libtnlmeshincludeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libtnlmeshincludeHEADERS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libtnlmeshincludeHEADERS install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-libtnlmeshincludeHEADERS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/src/solver/Makefile b/src/solver/Makefile deleted file mode 100644 index 36954dffa4..0000000000 --- a/src/solver/Makefile +++ /dev/null @@ -1,257 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/src/solver/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/solver/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/solver/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/solver/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/solver/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/rule -.PHONY : src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/rule - -# Convenience name for target. -libtnlsolver-dbg-0.1: src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/rule -.PHONY : libtnlsolver-dbg-0.1 - -# fast build rule for target. -libtnlsolver-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/build.make src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/build -.PHONY : libtnlsolver-dbg-0.1/fast - -# Convenience name for target. -src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/rule -.PHONY : src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/rule - -# Convenience name for target. -libtnlsolver-mpi-dbg-0.1: src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/rule -.PHONY : libtnlsolver-mpi-dbg-0.1 - -# fast build rule for target. -libtnlsolver-mpi-dbg-0.1/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/build.make src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/build -.PHONY : libtnlsolver-mpi-dbg-0.1/fast - -__/dummy.o: __/dummy.cpp.o -.PHONY : __/dummy.o - -# target to build an object file -__/dummy.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/build.make src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/__/dummy.cpp.o - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/build.make src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/__/dummy.cpp.o -.PHONY : __/dummy.cpp.o - -__/dummy.i: __/dummy.cpp.i -.PHONY : __/dummy.i - -# target to preprocess a source file -__/dummy.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/build.make src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/__/dummy.cpp.i - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/build.make src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/__/dummy.cpp.i -.PHONY : __/dummy.cpp.i - -__/dummy.s: __/dummy.cpp.s -.PHONY : __/dummy.s - -# target to generate assembly for a file -__/dummy.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/build.make src/solver/CMakeFiles/libtnlsolver-dbg-0.1.dir/__/dummy.cpp.s - cd /home/oberhuber/workspace/tnl && $(MAKE) -f src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/build.make src/solver/CMakeFiles/libtnlsolver-mpi-dbg-0.1.dir/__/dummy.cpp.s -.PHONY : __/dummy.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 "... libtnlsolver-dbg-0.1" - @echo "... libtnlsolver-mpi-dbg-0.1" - @echo "... list_install_components" - @echo "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" - @echo "... __/dummy.o" - @echo "... __/dummy.i" - @echo "... __/dummy.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/solver/Makefile.am b/src/solver/Makefile.am deleted file mode 100644 index ded070acc7..0000000000 --- a/src/solver/Makefile.am +++ /dev/null @@ -1,51 +0,0 @@ -## Process this file with automake to produce Makefile.in - -headers = tnlExplicitSolver.h \ - tnlEulerSolver.h \ - tnlMersonSolver.h \ - tnlMatrixSolver.h \ - tnlPETSCSolver.h \ - tnlSORSolver.h \ - tnlCGSolver.h \ - tnlBICGSolver.h \ - tnlBICGStabSolver.h \ - tnlGMRESSolver.h \ - tnlPreconditioner.h \ - tnlILUPreconditioner.h \ - tnlPETSCPreconditioner.h - - -sources = - -if BUILD_CUDA -sources += -headers += -endif - -libtnlsolverincludedir = $(TNL_INCLUDE_DIR)/solver -libtnlsolverinclude_HEADERS = $(headers) - -noinst_LTLIBRARIES = libtnlsolver-0.1.la -libtnlsolver_0_1_la_SOURCES = $(sources) $(headers) -libtnlsolver_0_1_la_CXXFLAGS = $(OPTIMISECXXFLAGS) - -if BUILD_DBG - noinst_LTLIBRARIES += libtnlsolver-dbg-0.1.la - libtnlsolver_dbg_0_1_la_SOURCES = $(sources) $(headers) - libtnlsolver_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) - libtnlsolver_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) -endif - -if BUILD_MPI - noinst_LTLIBRARIES += libtnlsolver-mpi-0.1.la - libtnlsolver_mpi_0_1_la_SOURCES = $(sources) $(headers) - libtnlsolver_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMISECXXFLAGS) - libtnlsolver_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -endif - -if BUILD_MPI_DBG - noinst_LTLIBRARIES += libtnlsolver-mpi-dbg-0.1.la - libtnlsolver_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) - libtnlsolver_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) - libtnlsolver_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) $(DBGLDFLAGS) -endif \ No newline at end of file diff --git a/src/solver/Makefile.in b/src/solver/Makefile.in deleted file mode 100644 index ef9a08ad80..0000000000 --- a/src/solver/Makefile.in +++ /dev/null @@ -1,582 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -@BUILD_CUDA_TRUE@am__append_1 = -@BUILD_CUDA_TRUE@am__append_2 = -@BUILD_DBG_TRUE@am__append_3 = libtnlsolver-dbg-0.1.la -@BUILD_MPI_TRUE@am__append_4 = libtnlsolver-mpi-0.1.la -@BUILD_MPI_DBG_TRUE@am__append_5 = libtnlsolver-mpi-dbg-0.1.la -subdir = src/solver -DIST_COMMON = $(libtnlsolverinclude_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) -libtnlsolver_0_1_la_LIBADD = -am__objects_1 = -am__objects_2 = $(am__objects_1) -am_libtnlsolver_0_1_la_OBJECTS = $(am__objects_2) $(am__objects_2) -libtnlsolver_0_1_la_OBJECTS = $(am_libtnlsolver_0_1_la_OBJECTS) -libtnlsolver_dbg_0_1_la_LIBADD = -am__libtnlsolver_dbg_0_1_la_SOURCES_DIST = tnlExplicitSolver.h \ - tnlEulerSolver.h tnlMersonSolver.h tnlMatrixSolver.h \ - tnlPETSCSolver.h tnlSORSolver.h tnlCGSolver.h tnlBICGSolver.h \ - tnlBICGStabSolver.h tnlGMRESSolver.h tnlPreconditioner.h \ - tnlILUPreconditioner.h tnlPETSCPreconditioner.h -@BUILD_DBG_TRUE@am_libtnlsolver_dbg_0_1_la_OBJECTS = $(am__objects_2) \ -@BUILD_DBG_TRUE@ $(am__objects_2) -libtnlsolver_dbg_0_1_la_OBJECTS = \ - $(am_libtnlsolver_dbg_0_1_la_OBJECTS) -libtnlsolver_dbg_0_1_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libtnlsolver_dbg_0_1_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_DBG_TRUE@am_libtnlsolver_dbg_0_1_la_rpath = -libtnlsolver_mpi_0_1_la_LIBADD = -am__libtnlsolver_mpi_0_1_la_SOURCES_DIST = tnlExplicitSolver.h \ - tnlEulerSolver.h tnlMersonSolver.h tnlMatrixSolver.h \ - tnlPETSCSolver.h tnlSORSolver.h tnlCGSolver.h tnlBICGSolver.h \ - tnlBICGStabSolver.h tnlGMRESSolver.h tnlPreconditioner.h \ - tnlILUPreconditioner.h tnlPETSCPreconditioner.h -@BUILD_MPI_TRUE@am_libtnlsolver_mpi_0_1_la_OBJECTS = $(am__objects_2) \ -@BUILD_MPI_TRUE@ $(am__objects_2) -libtnlsolver_mpi_0_1_la_OBJECTS = \ - $(am_libtnlsolver_mpi_0_1_la_OBJECTS) -libtnlsolver_mpi_0_1_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libtnlsolver_mpi_0_1_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_MPI_TRUE@am_libtnlsolver_mpi_0_1_la_rpath = -libtnlsolver_mpi_dbg_0_1_la_LIBADD = -am__libtnlsolver_mpi_dbg_0_1_la_SOURCES_DIST = tnlExplicitSolver.h \ - tnlEulerSolver.h tnlMersonSolver.h tnlMatrixSolver.h \ - tnlPETSCSolver.h tnlSORSolver.h tnlCGSolver.h tnlBICGSolver.h \ - tnlBICGStabSolver.h tnlGMRESSolver.h tnlPreconditioner.h \ - tnlILUPreconditioner.h tnlPETSCPreconditioner.h -@BUILD_MPI_DBG_TRUE@am_libtnlsolver_mpi_dbg_0_1_la_OBJECTS = \ -@BUILD_MPI_DBG_TRUE@ $(am__objects_2) $(am__objects_2) -libtnlsolver_mpi_dbg_0_1_la_OBJECTS = \ - $(am_libtnlsolver_mpi_dbg_0_1_la_OBJECTS) -libtnlsolver_mpi_dbg_0_1_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libtnlsolver_mpi_dbg_0_1_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@BUILD_MPI_DBG_TRUE@am_libtnlsolver_mpi_dbg_0_1_la_rpath = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(libtnlsolver_0_1_la_SOURCES) \ - $(libtnlsolver_dbg_0_1_la_SOURCES) \ - $(libtnlsolver_mpi_0_1_la_SOURCES) \ - $(libtnlsolver_mpi_dbg_0_1_la_SOURCES) -DIST_SOURCES = $(libtnlsolver_0_1_la_SOURCES) \ - $(am__libtnlsolver_dbg_0_1_la_SOURCES_DIST) \ - $(am__libtnlsolver_mpi_0_1_la_SOURCES_DIST) \ - $(am__libtnlsolver_mpi_dbg_0_1_la_SOURCES_DIST) -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libtnlsolverincludedir)" -HEADERS = $(libtnlsolverinclude_HEADERS) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CUDA_HEADERS = @CUDA_HEADERS@ -CUDA_LIBS = @CUDA_LIBS@ -CUSP_CXXFLAGS = @CUSP_CXXFLAGS@ -CUSP_DIR = @CUSP_DIR@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DBGCXXFLAGS = @DBGCXXFLAGS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -MPICC = @MPICC@ -MPICXX = @MPICXX@ -MPICXXFLAGS = @MPICXXFLAGS@ -MPILDFLAGS = @MPILDFLAGS@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NVCC = @NVCC@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OPTIMISECXXFLAGS = @OPTIMISECXXFLAGS@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TNL_INCLUDE_DIR = @TNL_INCLUDE_DIR@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -cuda = @cuda@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -headers = tnlExplicitSolver.h tnlEulerSolver.h tnlMersonSolver.h \ - tnlMatrixSolver.h tnlPETSCSolver.h tnlSORSolver.h \ - tnlCGSolver.h tnlBICGSolver.h tnlBICGStabSolver.h \ - tnlGMRESSolver.h tnlPreconditioner.h tnlILUPreconditioner.h \ - tnlPETSCPreconditioner.h $(am__append_2) -sources = $(am__append_1) -libtnlsolverincludedir = $(TNL_INCLUDE_DIR)/solver -libtnlsolverinclude_HEADERS = $(headers) -noinst_LTLIBRARIES = libtnlsolver-0.1.la $(am__append_3) \ - $(am__append_4) $(am__append_5) -libtnlsolver_0_1_la_SOURCES = $(sources) $(headers) -libtnlsolver_0_1_la_CXXFLAGS = $(OPTIMISECXXFLAGS) -@BUILD_DBG_TRUE@libtnlsolver_dbg_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_DBG_TRUE@libtnlsolver_dbg_0_1_la_CXXFLAGS = $(DBGCXXFLAGS) -@BUILD_DBG_TRUE@libtnlsolver_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(DBGLDFLAGS) -@BUILD_MPI_TRUE@libtnlsolver_mpi_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_MPI_TRUE@libtnlsolver_mpi_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(OPTIMISECXXFLAGS) -@BUILD_MPI_TRUE@libtnlsolver_mpi_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) -@BUILD_MPI_DBG_TRUE@libtnlsolver_mpi_dbg_0_1_la_SOURCES = $(sources) $(headers) -@BUILD_MPI_DBG_TRUE@libtnlsolver_mpi_dbg_0_1_la_CXXFLAGS = $(MPICXXFLAGS) $(DBGCXXFLAGS) -@BUILD_MPI_DBG_TRUE@libtnlsolver_mpi_dbg_0_1_la_LDFLAGS = $(LDFLAGS) $(MPILDFLAGS) $(DBGLDFLAGS) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/solver/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/solver/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) - @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libtnlsolver-0.1.la: $(libtnlsolver_0_1_la_OBJECTS) $(libtnlsolver_0_1_la_DEPENDENCIES) - $(LINK) $(libtnlsolver_0_1_la_OBJECTS) $(libtnlsolver_0_1_la_LIBADD) $(LIBS) -libtnlsolver-dbg-0.1.la: $(libtnlsolver_dbg_0_1_la_OBJECTS) $(libtnlsolver_dbg_0_1_la_DEPENDENCIES) - $(libtnlsolver_dbg_0_1_la_LINK) $(am_libtnlsolver_dbg_0_1_la_rpath) $(libtnlsolver_dbg_0_1_la_OBJECTS) $(libtnlsolver_dbg_0_1_la_LIBADD) $(LIBS) -libtnlsolver-mpi-0.1.la: $(libtnlsolver_mpi_0_1_la_OBJECTS) $(libtnlsolver_mpi_0_1_la_DEPENDENCIES) - $(libtnlsolver_mpi_0_1_la_LINK) $(am_libtnlsolver_mpi_0_1_la_rpath) $(libtnlsolver_mpi_0_1_la_OBJECTS) $(libtnlsolver_mpi_0_1_la_LIBADD) $(LIBS) -libtnlsolver-mpi-dbg-0.1.la: $(libtnlsolver_mpi_dbg_0_1_la_OBJECTS) $(libtnlsolver_mpi_dbg_0_1_la_DEPENDENCIES) - $(libtnlsolver_mpi_dbg_0_1_la_LINK) $(am_libtnlsolver_mpi_dbg_0_1_la_rpath) $(libtnlsolver_mpi_dbg_0_1_la_OBJECTS) $(libtnlsolver_mpi_dbg_0_1_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-libtnlsolverincludeHEADERS: $(libtnlsolverinclude_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(libtnlsolverincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libtnlsolverincludedir)" - @list='$(libtnlsolverinclude_HEADERS)'; test -n "$(libtnlsolverincludedir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libtnlsolverincludedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(libtnlsolverincludedir)" || exit $$?; \ - done - -uninstall-libtnlsolverincludeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(libtnlsolverinclude_HEADERS)'; test -n "$(libtnlsolverincludedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(libtnlsolverincludedir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(libtnlsolverincludedir)" && rm -f $$files - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(libtnlsolverincludedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-libtnlsolverincludeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libtnlsolverincludeHEADERS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libtnlsolverincludeHEADERS install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am \ - uninstall-libtnlsolverincludeHEADERS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/tests/Makefile b/tests/Makefile deleted file mode 100644 index 69b9e5fa60..0000000000 --- a/tests/Makefile +++ /dev/null @@ -1,197 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/tests/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# 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 "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" -.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/tests/Makefile.am b/tests/Makefile.am deleted file mode 100644 index f7fed45c51..0000000000 --- a/tests/Makefile.am +++ /dev/null @@ -1,87 +0,0 @@ -## Process this file with automake to produce Makefile.in - -SUBDIRS = unit-tests - -check_PROGRAMS = sparse-matrix-benchmark \ - matrix-solvers-benchmark \ - tnl-benchmarks \ - reorder-csr - -sparse_matrix_benchmark_sources = sparse-matrix-benchmark.h \ - tnlSpmvBenchmark.h \ - tnlSpmvBenchmarkCSRMatrix.h \ - tnlSpmvBenchmarkHybridMatrix.h \ - tnlSpmvBenchmarkRgCSRMatrix.h -matrix_solvers_benchmark_sources = matrix-solvers-benchmark.h -tnl_benchmarks_sources = tnl-benchmarks.h - -#if BUILD_CUDA -sparse_matrix_benchmark_sources += sparse-matrix-benchmark-cuda.cu -matrix_solvers_benchmark_sources += matrix-solvers-benchmark-cuda.cu -tnl_benchmarks_sources += tnl-benchmarks-cuda.cu -#else -#sparse_matrix_benchmark_sources += sparse-matrix-benchmark.cpp -#matrix_solvers_benchmark_sources += matrix-solvers-benchmark.cpp -#tnl_benchmarks_sources += tnl-benchmarks.cpp -#endif - -sparse_matrix_benchmark_CXXFLAGS = $(OPTIMISECXXFLAGS) $(CUSP_CXXFLAGS) -sparse_matrix_benchmark_SOURCES = $(sparse_matrix_benchmark_sources) -sparse_matrix_benchmark_LDADD = ../src/libtnl-0.1.la \ - ../src/core/libtnlcore-0.1.la \ - ../src/matrix/libtnlmatrix-0.1.la - -matrix_solvers_benchmark_CXXFLAGS = $(OPTIMISECXXFLAGS) $(CUSP_CXXFLAGS) -matrix_solvers_benchmark_SOURCES = $(matrix_solvers_benchmark_sources) -matrix_solvers_benchmark_LDADD = ../src/libtnl-0.1.la \ - ../src/core/libtnlcore-0.1.la \ - ../src/matrix/libtnlmatrix-0.1.la - -tnl_benchmarks_SOURCES = $(tnl_benchmarks_sources) -tnl_benchmarks_LDADD = ../src/libtnl-0.1.la - -reorder_csr_SOURCES = ReorderCSR.cpp - -if BUILD_DBG -check_PROGRAMS += matrix-solvers-benchmark-dbg \ - sparse-matrix-benchmark-dbg - -sparse_matrix_benchmark_dbg_SOURCES = $(sparse_matrix_benchmark_sources) -sparse_matrix_benchmark_dbg_CXXFLAGS = $(DBGCXXFLAGS) $(CUSP_CXXFLAGS) -sparse_matrix_benchmark_dbg_LDADD = ../src/libtnl-0.1.la \ - ../src/core/libtnlcore-0.1.la \ - ../src/matrix/libtnlmatrix-0.1.la - -matrix_solvers_benchmark_dbg_SOURCES = $(matrix_solvers_benchmark_sources) -matrix_solvers_benchmark_dbg_CXXFLAGS = $(DBGCXXFLAGS) $(CUSP_CXXFLAGS) -matrix_solvers_benchmark_dbg_LDADD = ../src/libtnl-0.1.la \ - ../src/core/libtnlcore-0.1.la \ - ../src/matrix/libtnlmatrix-0.1.la - -endif - -#if BUILD_CUDA -sparse_matrix_benchmark_CXXFLAGS += -DHAVE_CUDA -tnl_benchmarks_CXXFLAGS = -DHAVE_CUDA -#endif - - -check_SCRIPTS = get-matrices \ - convert-matrices \ - run-sparse-matrix-benchmark \ - tnl-sparse-matrix-test - -check_DATA = tnl-sparse-matrix-check.cfg.desc \ - sparse-matrix-benchmark.cfg.desc \ - matrix-solvers-benchmark.cfg.desc \ - florida-matrix-market \ - matrix-market - -EXTRADIST = get-matrices \ - convert-matrices \ - run-sparse-matrix-benchmark \ - tnl-sparse-matrix-test - - - -#TESTS = get-matrices diff --git a/tests/Makefile.in b/tests/Makefile.in deleted file mode 100644 index e976a8ef8b..0000000000 --- a/tests/Makefile.in +++ /dev/null @@ -1,895 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -check_PROGRAMS = sparse-matrix-benchmark$(EXEEXT) \ - matrix-solvers-benchmark$(EXEEXT) tnl-benchmarks$(EXEEXT) \ - reorder-csr$(EXEEXT) $(am__EXEEXT_1) -@BUILD_DBG_TRUE@am__append_1 = matrix-solvers-benchmark-dbg \ -@BUILD_DBG_TRUE@ sparse-matrix-benchmark-dbg - -subdir = tests -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -@BUILD_DBG_TRUE@am__EXEEXT_1 = matrix-solvers-benchmark-dbg$(EXEEXT) \ -@BUILD_DBG_TRUE@ sparse-matrix-benchmark-dbg$(EXEEXT) -am__objects_1 = matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.$(OBJEXT) -am_matrix_solvers_benchmark_OBJECTS = $(am__objects_1) -matrix_solvers_benchmark_OBJECTS = \ - $(am_matrix_solvers_benchmark_OBJECTS) -matrix_solvers_benchmark_DEPENDENCIES = ../src/libtnl-0.1.la \ - ../src/core/libtnlcore-0.1.la \ - ../src/matrix/libtnlmatrix-0.1.la -matrix_solvers_benchmark_LINK = $(LIBTOOL) --tag=CXX \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(matrix_solvers_benchmark_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -am__matrix_solvers_benchmark_dbg_SOURCES_DIST = \ - matrix-solvers-benchmark.h matrix-solvers-benchmark-cuda.cu -am__objects_2 = matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.$(OBJEXT) -@BUILD_DBG_TRUE@am_matrix_solvers_benchmark_dbg_OBJECTS = \ -@BUILD_DBG_TRUE@ $(am__objects_2) -matrix_solvers_benchmark_dbg_OBJECTS = \ - $(am_matrix_solvers_benchmark_dbg_OBJECTS) -@BUILD_DBG_TRUE@matrix_solvers_benchmark_dbg_DEPENDENCIES = \ -@BUILD_DBG_TRUE@ ../src/libtnl-0.1.la \ -@BUILD_DBG_TRUE@ ../src/core/libtnlcore-0.1.la \ -@BUILD_DBG_TRUE@ ../src/matrix/libtnlmatrix-0.1.la -matrix_solvers_benchmark_dbg_LINK = $(LIBTOOL) --tag=CXX \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(matrix_solvers_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -am_reorder_csr_OBJECTS = ReorderCSR.$(OBJEXT) -reorder_csr_OBJECTS = $(am_reorder_csr_OBJECTS) -reorder_csr_LDADD = $(LDADD) -am__objects_3 = sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.$(OBJEXT) -am_sparse_matrix_benchmark_OBJECTS = $(am__objects_3) -sparse_matrix_benchmark_OBJECTS = \ - $(am_sparse_matrix_benchmark_OBJECTS) -sparse_matrix_benchmark_DEPENDENCIES = ../src/libtnl-0.1.la \ - ../src/core/libtnlcore-0.1.la \ - ../src/matrix/libtnlmatrix-0.1.la -sparse_matrix_benchmark_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(sparse_matrix_benchmark_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -am__sparse_matrix_benchmark_dbg_SOURCES_DIST = \ - sparse-matrix-benchmark.h tnlSpmvBenchmark.h \ - tnlSpmvBenchmarkCSRMatrix.h tnlSpmvBenchmarkHybridMatrix.h \ - tnlSpmvBenchmarkRgCSRMatrix.h sparse-matrix-benchmark-cuda.cu -am__objects_4 = sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.$(OBJEXT) -@BUILD_DBG_TRUE@am_sparse_matrix_benchmark_dbg_OBJECTS = \ -@BUILD_DBG_TRUE@ $(am__objects_4) -sparse_matrix_benchmark_dbg_OBJECTS = \ - $(am_sparse_matrix_benchmark_dbg_OBJECTS) -@BUILD_DBG_TRUE@sparse_matrix_benchmark_dbg_DEPENDENCIES = \ -@BUILD_DBG_TRUE@ ../src/libtnl-0.1.la \ -@BUILD_DBG_TRUE@ ../src/core/libtnlcore-0.1.la \ -@BUILD_DBG_TRUE@ ../src/matrix/libtnlmatrix-0.1.la -sparse_matrix_benchmark_dbg_LINK = $(LIBTOOL) --tag=CXX \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(sparse_matrix_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -am__objects_5 = tnl_benchmarks-tnl-benchmarks-cuda.$(OBJEXT) -am_tnl_benchmarks_OBJECTS = $(am__objects_5) -tnl_benchmarks_OBJECTS = $(am_tnl_benchmarks_OBJECTS) -tnl_benchmarks_DEPENDENCIES = ../src/libtnl-0.1.la -tnl_benchmarks_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(tnl_benchmarks_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(matrix_solvers_benchmark_SOURCES) \ - $(matrix_solvers_benchmark_dbg_SOURCES) $(reorder_csr_SOURCES) \ - $(sparse_matrix_benchmark_SOURCES) \ - $(sparse_matrix_benchmark_dbg_SOURCES) \ - $(tnl_benchmarks_SOURCES) -DIST_SOURCES = $(matrix_solvers_benchmark_SOURCES) \ - $(am__matrix_solvers_benchmark_dbg_SOURCES_DIST) \ - $(reorder_csr_SOURCES) $(sparse_matrix_benchmark_SOURCES) \ - $(am__sparse_matrix_benchmark_dbg_SOURCES_DIST) \ - $(tnl_benchmarks_SOURCES) -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CUDA_HEADERS = @CUDA_HEADERS@ -CUDA_LIBS = @CUDA_LIBS@ -CUSP_CXXFLAGS = @CUSP_CXXFLAGS@ -CUSP_DIR = @CUSP_DIR@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DBGCXXFLAGS = @DBGCXXFLAGS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -MPICC = @MPICC@ -MPICXX = @MPICXX@ -MPICXXFLAGS = @MPICXXFLAGS@ -MPILDFLAGS = @MPILDFLAGS@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NVCC = @NVCC@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OPTIMISECXXFLAGS = @OPTIMISECXXFLAGS@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TNL_INCLUDE_DIR = @TNL_INCLUDE_DIR@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -cuda = @cuda@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -SUBDIRS = unit-tests - -#if BUILD_CUDA -sparse_matrix_benchmark_sources = sparse-matrix-benchmark.h \ - tnlSpmvBenchmark.h tnlSpmvBenchmarkCSRMatrix.h \ - tnlSpmvBenchmarkHybridMatrix.h tnlSpmvBenchmarkRgCSRMatrix.h \ - sparse-matrix-benchmark-cuda.cu -matrix_solvers_benchmark_sources = matrix-solvers-benchmark.h \ - matrix-solvers-benchmark-cuda.cu -tnl_benchmarks_sources = tnl-benchmarks.h tnl-benchmarks-cuda.cu -#else -#sparse_matrix_benchmark_sources += sparse-matrix-benchmark.cpp -#matrix_solvers_benchmark_sources += matrix-solvers-benchmark.cpp -#tnl_benchmarks_sources += tnl-benchmarks.cpp -#endif - -#if BUILD_CUDA -sparse_matrix_benchmark_CXXFLAGS = $(OPTIMISECXXFLAGS) \ - $(CUSP_CXXFLAGS) -DHAVE_CUDA -sparse_matrix_benchmark_SOURCES = $(sparse_matrix_benchmark_sources) -sparse_matrix_benchmark_LDADD = ../src/libtnl-0.1.la \ - ../src/core/libtnlcore-0.1.la \ - ../src/matrix/libtnlmatrix-0.1.la - -matrix_solvers_benchmark_CXXFLAGS = $(OPTIMISECXXFLAGS) $(CUSP_CXXFLAGS) -matrix_solvers_benchmark_SOURCES = $(matrix_solvers_benchmark_sources) -matrix_solvers_benchmark_LDADD = ../src/libtnl-0.1.la \ - ../src/core/libtnlcore-0.1.la \ - ../src/matrix/libtnlmatrix-0.1.la - -tnl_benchmarks_SOURCES = $(tnl_benchmarks_sources) -tnl_benchmarks_LDADD = ../src/libtnl-0.1.la -reorder_csr_SOURCES = ReorderCSR.cpp -@BUILD_DBG_TRUE@sparse_matrix_benchmark_dbg_SOURCES = $(sparse_matrix_benchmark_sources) -@BUILD_DBG_TRUE@sparse_matrix_benchmark_dbg_CXXFLAGS = $(DBGCXXFLAGS) $(CUSP_CXXFLAGS) -@BUILD_DBG_TRUE@sparse_matrix_benchmark_dbg_LDADD = ../src/libtnl-0.1.la \ -@BUILD_DBG_TRUE@ ../src/core/libtnlcore-0.1.la \ -@BUILD_DBG_TRUE@ ../src/matrix/libtnlmatrix-0.1.la - -@BUILD_DBG_TRUE@matrix_solvers_benchmark_dbg_SOURCES = $(matrix_solvers_benchmark_sources) -@BUILD_DBG_TRUE@matrix_solvers_benchmark_dbg_CXXFLAGS = $(DBGCXXFLAGS) $(CUSP_CXXFLAGS) -@BUILD_DBG_TRUE@matrix_solvers_benchmark_dbg_LDADD = ../src/libtnl-0.1.la \ -@BUILD_DBG_TRUE@ ../src/core/libtnlcore-0.1.la \ -@BUILD_DBG_TRUE@ ../src/matrix/libtnlmatrix-0.1.la - -tnl_benchmarks_CXXFLAGS = -DHAVE_CUDA -#endif -check_SCRIPTS = get-matrices \ - convert-matrices \ - run-sparse-matrix-benchmark \ - tnl-sparse-matrix-test - -check_DATA = tnl-sparse-matrix-check.cfg.desc \ - sparse-matrix-benchmark.cfg.desc \ - matrix-solvers-benchmark.cfg.desc \ - florida-matrix-market \ - matrix-market - -EXTRADIST = get-matrices \ - convert-matrices \ - run-sparse-matrix-benchmark \ - tnl-sparse-matrix-test - -all: all-recursive - -.SUFFIXES: -.SUFFIXES: .cpp .cu .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu tests/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -matrix-solvers-benchmark$(EXEEXT): $(matrix_solvers_benchmark_OBJECTS) $(matrix_solvers_benchmark_DEPENDENCIES) - @rm -f matrix-solvers-benchmark$(EXEEXT) - $(matrix_solvers_benchmark_LINK) $(matrix_solvers_benchmark_OBJECTS) $(matrix_solvers_benchmark_LDADD) $(LIBS) -matrix-solvers-benchmark-dbg$(EXEEXT): $(matrix_solvers_benchmark_dbg_OBJECTS) $(matrix_solvers_benchmark_dbg_DEPENDENCIES) - @rm -f matrix-solvers-benchmark-dbg$(EXEEXT) - $(matrix_solvers_benchmark_dbg_LINK) $(matrix_solvers_benchmark_dbg_OBJECTS) $(matrix_solvers_benchmark_dbg_LDADD) $(LIBS) -reorder-csr$(EXEEXT): $(reorder_csr_OBJECTS) $(reorder_csr_DEPENDENCIES) - @rm -f reorder-csr$(EXEEXT) - $(CXXLINK) $(reorder_csr_OBJECTS) $(reorder_csr_LDADD) $(LIBS) -sparse-matrix-benchmark$(EXEEXT): $(sparse_matrix_benchmark_OBJECTS) $(sparse_matrix_benchmark_DEPENDENCIES) - @rm -f sparse-matrix-benchmark$(EXEEXT) - $(sparse_matrix_benchmark_LINK) $(sparse_matrix_benchmark_OBJECTS) $(sparse_matrix_benchmark_LDADD) $(LIBS) -sparse-matrix-benchmark-dbg$(EXEEXT): $(sparse_matrix_benchmark_dbg_OBJECTS) $(sparse_matrix_benchmark_dbg_DEPENDENCIES) - @rm -f sparse-matrix-benchmark-dbg$(EXEEXT) - $(sparse_matrix_benchmark_dbg_LINK) $(sparse_matrix_benchmark_dbg_OBJECTS) $(sparse_matrix_benchmark_dbg_LDADD) $(LIBS) -tnl-benchmarks$(EXEEXT): $(tnl_benchmarks_OBJECTS) $(tnl_benchmarks_DEPENDENCIES) - @rm -f tnl-benchmarks$(EXEEXT) - $(tnl_benchmarks_LINK) $(tnl_benchmarks_OBJECTS) $(tnl_benchmarks_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ReorderCSR.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tnl_benchmarks-tnl-benchmarks-cuda.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.o: matrix-solvers-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(matrix_solvers_benchmark_CXXFLAGS) $(CXXFLAGS) -MT matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.o -MD -MP -MF $(DEPDIR)/matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.Tpo -c -o matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.o `test -f 'matrix-solvers-benchmark-cuda.cu' || echo '$(srcdir)/'`matrix-solvers-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.Tpo $(DEPDIR)/matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='matrix-solvers-benchmark-cuda.cu' object='matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(matrix_solvers_benchmark_CXXFLAGS) $(CXXFLAGS) -c -o matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.o `test -f 'matrix-solvers-benchmark-cuda.cu' || echo '$(srcdir)/'`matrix-solvers-benchmark-cuda.cu - -matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.obj: matrix-solvers-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(matrix_solvers_benchmark_CXXFLAGS) $(CXXFLAGS) -MT matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.obj -MD -MP -MF $(DEPDIR)/matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.Tpo -c -o matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.obj `if test -f 'matrix-solvers-benchmark-cuda.cu'; then $(CYGPATH_W) 'matrix-solvers-benchmark-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/matrix-solvers-benchmark-cuda.cu'; fi` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.Tpo $(DEPDIR)/matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='matrix-solvers-benchmark-cuda.cu' object='matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(matrix_solvers_benchmark_CXXFLAGS) $(CXXFLAGS) -c -o matrix_solvers_benchmark-matrix-solvers-benchmark-cuda.obj `if test -f 'matrix-solvers-benchmark-cuda.cu'; then $(CYGPATH_W) 'matrix-solvers-benchmark-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/matrix-solvers-benchmark-cuda.cu'; fi` - -matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.o: matrix-solvers-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(matrix_solvers_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) -MT matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.o -MD -MP -MF $(DEPDIR)/matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.Tpo -c -o matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.o `test -f 'matrix-solvers-benchmark-cuda.cu' || echo '$(srcdir)/'`matrix-solvers-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.Tpo $(DEPDIR)/matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='matrix-solvers-benchmark-cuda.cu' object='matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(matrix_solvers_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) -c -o matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.o `test -f 'matrix-solvers-benchmark-cuda.cu' || echo '$(srcdir)/'`matrix-solvers-benchmark-cuda.cu - -matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.obj: matrix-solvers-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(matrix_solvers_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) -MT matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.obj -MD -MP -MF $(DEPDIR)/matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.Tpo -c -o matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.obj `if test -f 'matrix-solvers-benchmark-cuda.cu'; then $(CYGPATH_W) 'matrix-solvers-benchmark-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/matrix-solvers-benchmark-cuda.cu'; fi` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.Tpo $(DEPDIR)/matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='matrix-solvers-benchmark-cuda.cu' object='matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(matrix_solvers_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) -c -o matrix_solvers_benchmark_dbg-matrix-solvers-benchmark-cuda.obj `if test -f 'matrix-solvers-benchmark-cuda.cu'; then $(CYGPATH_W) 'matrix-solvers-benchmark-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/matrix-solvers-benchmark-cuda.cu'; fi` - -sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.o: sparse-matrix-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sparse_matrix_benchmark_CXXFLAGS) $(CXXFLAGS) -MT sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.o -MD -MP -MF $(DEPDIR)/sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.Tpo -c -o sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.o `test -f 'sparse-matrix-benchmark-cuda.cu' || echo '$(srcdir)/'`sparse-matrix-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.Tpo $(DEPDIR)/sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='sparse-matrix-benchmark-cuda.cu' object='sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sparse_matrix_benchmark_CXXFLAGS) $(CXXFLAGS) -c -o sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.o `test -f 'sparse-matrix-benchmark-cuda.cu' || echo '$(srcdir)/'`sparse-matrix-benchmark-cuda.cu - -sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.obj: sparse-matrix-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sparse_matrix_benchmark_CXXFLAGS) $(CXXFLAGS) -MT sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.obj -MD -MP -MF $(DEPDIR)/sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.Tpo -c -o sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.obj `if test -f 'sparse-matrix-benchmark-cuda.cu'; then $(CYGPATH_W) 'sparse-matrix-benchmark-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/sparse-matrix-benchmark-cuda.cu'; fi` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.Tpo $(DEPDIR)/sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='sparse-matrix-benchmark-cuda.cu' object='sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sparse_matrix_benchmark_CXXFLAGS) $(CXXFLAGS) -c -o sparse_matrix_benchmark-sparse-matrix-benchmark-cuda.obj `if test -f 'sparse-matrix-benchmark-cuda.cu'; then $(CYGPATH_W) 'sparse-matrix-benchmark-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/sparse-matrix-benchmark-cuda.cu'; fi` - -sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.o: sparse-matrix-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sparse_matrix_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) -MT sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.o -MD -MP -MF $(DEPDIR)/sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.Tpo -c -o sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.o `test -f 'sparse-matrix-benchmark-cuda.cu' || echo '$(srcdir)/'`sparse-matrix-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.Tpo $(DEPDIR)/sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='sparse-matrix-benchmark-cuda.cu' object='sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sparse_matrix_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) -c -o sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.o `test -f 'sparse-matrix-benchmark-cuda.cu' || echo '$(srcdir)/'`sparse-matrix-benchmark-cuda.cu - -sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.obj: sparse-matrix-benchmark-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sparse_matrix_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) -MT sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.obj -MD -MP -MF $(DEPDIR)/sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.Tpo -c -o sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.obj `if test -f 'sparse-matrix-benchmark-cuda.cu'; then $(CYGPATH_W) 'sparse-matrix-benchmark-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/sparse-matrix-benchmark-cuda.cu'; fi` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.Tpo $(DEPDIR)/sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='sparse-matrix-benchmark-cuda.cu' object='sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sparse_matrix_benchmark_dbg_CXXFLAGS) $(CXXFLAGS) -c -o sparse_matrix_benchmark_dbg-sparse-matrix-benchmark-cuda.obj `if test -f 'sparse-matrix-benchmark-cuda.cu'; then $(CYGPATH_W) 'sparse-matrix-benchmark-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/sparse-matrix-benchmark-cuda.cu'; fi` - -tnl_benchmarks-tnl-benchmarks-cuda.o: tnl-benchmarks-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tnl_benchmarks_CXXFLAGS) $(CXXFLAGS) -MT tnl_benchmarks-tnl-benchmarks-cuda.o -MD -MP -MF $(DEPDIR)/tnl_benchmarks-tnl-benchmarks-cuda.Tpo -c -o tnl_benchmarks-tnl-benchmarks-cuda.o `test -f 'tnl-benchmarks-cuda.cu' || echo '$(srcdir)/'`tnl-benchmarks-cuda.cu -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/tnl_benchmarks-tnl-benchmarks-cuda.Tpo $(DEPDIR)/tnl_benchmarks-tnl-benchmarks-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnl-benchmarks-cuda.cu' object='tnl_benchmarks-tnl-benchmarks-cuda.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tnl_benchmarks_CXXFLAGS) $(CXXFLAGS) -c -o tnl_benchmarks-tnl-benchmarks-cuda.o `test -f 'tnl-benchmarks-cuda.cu' || echo '$(srcdir)/'`tnl-benchmarks-cuda.cu - -tnl_benchmarks-tnl-benchmarks-cuda.obj: tnl-benchmarks-cuda.cu -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tnl_benchmarks_CXXFLAGS) $(CXXFLAGS) -MT tnl_benchmarks-tnl-benchmarks-cuda.obj -MD -MP -MF $(DEPDIR)/tnl_benchmarks-tnl-benchmarks-cuda.Tpo -c -o tnl_benchmarks-tnl-benchmarks-cuda.obj `if test -f 'tnl-benchmarks-cuda.cu'; then $(CYGPATH_W) 'tnl-benchmarks-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/tnl-benchmarks-cuda.cu'; fi` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/tnl_benchmarks-tnl-benchmarks-cuda.Tpo $(DEPDIR)/tnl_benchmarks-tnl-benchmarks-cuda.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnl-benchmarks-cuda.cu' object='tnl_benchmarks-tnl-benchmarks-cuda.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tnl_benchmarks_CXXFLAGS) $(CXXFLAGS) -c -o tnl_benchmarks-tnl-benchmarks-cuda.obj `if test -f 'tnl-benchmarks-cuda.cu'; then $(CYGPATH_W) 'tnl-benchmarks-cuda.cu'; else $(CYGPATH_W) '$(srcdir)/tnl-benchmarks-cuda.cu'; fi` - -.cu.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cu.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cu.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS) \ - $(check_DATA) -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ - mostlyclean-am - -distclean: distclean-recursive - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ - ctags-recursive install-am install-strip tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-checkPROGRAMS \ - clean-generic clean-libtool ctags ctags-recursive distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ - uninstall uninstall-am - - -#TESTS = get-matrices - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/tests/benchmarks/CMakeLists.txt b/tests/benchmarks/CMakeLists.txt index c33712d1b7..a15ae8cb6a 100755 --- a/tests/benchmarks/CMakeLists.txt +++ b/tests/benchmarks/CMakeLists.txt @@ -10,15 +10,15 @@ SET( tnlSpmvBenchmark_headers sparse-matrix-benchmark.h IF( BUILD_CUDA ) CUDA_ADD_EXECUTABLE( tnl-sparse-matrix-benchmark${debugExt} sparse-matrix-benchmark.cu ) - TARGET_LINK_LIBRARIES( tnl-sparse-matrix-benchmark${debugExt} tnl${mpiExt}${debugExt}-0.1 - tnlcore${mpiExt}${debugExt}-0.1 - tnlconfig${mpiExt}${debugExt}-0.1 ) + TARGET_LINK_LIBRARIES( tnl-sparse-matrix-benchmark${debugExt} tnl${debugExt}-${tnlVersion} + tnlcore${debugExt}-${tnlVersion} + tnlconfig${debugExt}-${tnlVersion} ) ELSE() ADD_EXECUTABLE( tnl-sparse-matrix-benchmark${debugExt} sparse-matrix-benchmark.cpp ) - TARGET_LINK_LIBRARIES( tnl-sparse-matrix-benchmark${debugExt} tnl${mpiExt}${debugExt}-0.1 - tnlcore${mpiExt}${debugExt}-0.1 - tnlconfig${mpiExt}${debugExt}-0.1 ) + TARGET_LINK_LIBRARIES( tnl-sparse-matrix-benchmark${debugExt} tnl${debugExt}-${tnlVersion} + tnlcore${debugExt}-${tnlVersion} + tnlconfig${debugExt}-${tnlVersion} ) ENDIF() INSTALL( TARGETS tnl-sparse-matrix-benchmark${debugExt} diff --git a/tests/unit-tests/Makefile b/tests/unit-tests/Makefile deleted file mode 100644 index 085fbef7e8..0000000000 --- a/tests/unit-tests/Makefile +++ /dev/null @@ -1,212 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/tests/unit-tests/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/unit-tests/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/unit-tests/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/unit-tests/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/unit-tests/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -tests/unit-tests/CMakeFiles/tnl-unit-tests-dbg.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tests/unit-tests/CMakeFiles/tnl-unit-tests-dbg.dir/rule -.PHONY : tests/unit-tests/CMakeFiles/tnl-unit-tests-dbg.dir/rule - -# Convenience name for target. -tnl-unit-tests-dbg: tests/unit-tests/CMakeFiles/tnl-unit-tests-dbg.dir/rule -.PHONY : tnl-unit-tests-dbg - -# fast build rule for target. -tnl-unit-tests-dbg/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tests/unit-tests/CMakeFiles/tnl-unit-tests-dbg.dir/build.make tests/unit-tests/CMakeFiles/tnl-unit-tests-dbg.dir/build -.PHONY : tnl-unit-tests-dbg/fast - -# 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 "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" - @echo "... tnl-unit-tests-dbg" -.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/tests/unit-tests/Makefile.am b/tests/unit-tests/Makefile.am deleted file mode 100644 index d424b3cc89..0000000000 --- a/tests/unit-tests/Makefile.am +++ /dev/null @@ -1,63 +0,0 @@ -## Process this file with automake to produce Makefile.in - -#SUBDIRS = core \ -# diff \ -# matrix \ -# solver - -headers = core/tnl-cuda-kernels.h \ - core/tnlArrayTester.h \ - core/tnlCUDAKernelsTester.h \ - core/tnlCommunicatorTester.h \ - core/tnlFileTester.h \ - core/tnlGridTester.h \ - core/tnlLongVectorCUDATester.h \ - core/tnlLongVectorHostTester.h \ - core/tnlRealTester.h \ - core/tnlSharedMemoryTester.h \ - core/tnlVectorTester.h \ - diff/tnlMPIMeshTester.h \ - diff/tnlMersonSolverCUDATester.cu.h \ - matrix/tnlMatrixTester.h \ - matrix/tnlCSRMatrixTester.h \ - matrix/tnlEllpackMatrixTester.h \ - matrix/tnlRgCSRMatrixTester.h \ - matrix/tnlAdaptiveRgCSRMatrixTester.h \ - solver/tnlMersonSolverTester.h - - -check_PROGRAMS = tnl-unit-tests - -tnl_unit_tests_SOURCES = $(headers) tnl-unit-tests.cpp -tnl_unit_tests_LDADD = ../../src/libtnl-0.1.la \ - ../../src/core/libcore-tests.la \ - ../../src/diff/libdiff-tests.la \ - ../../src/debug/libtnldebug-0.1.la - -#if BUILD_CUDA -#tnl_unit_tests_SOURCES = $(headers) tnl-unit-tests-cuda.cu -#tnl_unit_tests_CXXFLAGS = "-DHAVE_CUDA" -#tnl_unit_tests_LDADD = ../../src/libtnl-0.1.la \ -# ../../src/core/libcore-tests.la \ -# ../../src/diff/libdiff-tests.la \ -# ../../src/debug/libtnldebug-0.1.la -#endif - - -if BUILD_DBG -check_PROGRAMS += tnl-unit-tests-dbg -tnl_unit_tests_dbg_SOURCES = $(headers) tnl-unit-tests.cpp -tnl_unit_tests_dbg_CXXFLAGS = $(DBGCXXFLAGS) -tnl_unit_tests_dbg_LDADD = ../../src/libtnl-dbg-0.1.la \ - ../../src/core/libcore-tests-dbg.la \ - ../../src/diff/libdiff-tests-dbg.la \ - ../../src/debug/libtnldebug-dbg-0.1.la -endif - -TESTS = tnl-unit-tests - - -# tnl-benchmarks - -##tnl-unit-tests \ -## tnl-benchmarks diff --git a/tests/unit-tests/Makefile.in b/tests/unit-tests/Makefile.in deleted file mode 100644 index 236f0d6f42..0000000000 --- a/tests/unit-tests/Makefile.in +++ /dev/null @@ -1,682 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -#SUBDIRS = core \ -# diff \ -# matrix \ -# solver -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -check_PROGRAMS = tnl-unit-tests$(EXEEXT) $(am__EXEEXT_1) - -#if BUILD_CUDA -#tnl_unit_tests_SOURCES = $(headers) tnl-unit-tests-cuda.cu -#tnl_unit_tests_CXXFLAGS = "-DHAVE_CUDA" -#tnl_unit_tests_LDADD = ../../src/libtnl-0.1.la \ -# ../../src/core/libcore-tests.la \ -# ../../src/diff/libdiff-tests.la \ -# ../../src/debug/libtnldebug-0.1.la -#endif -@BUILD_DBG_TRUE@am__append_1 = tnl-unit-tests-dbg -TESTS = tnl-unit-tests$(EXEEXT) -subdir = tests/unit-tests -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -@BUILD_DBG_TRUE@am__EXEEXT_1 = tnl-unit-tests-dbg$(EXEEXT) -am__objects_1 = -am_tnl_unit_tests_OBJECTS = $(am__objects_1) tnl-unit-tests.$(OBJEXT) -tnl_unit_tests_OBJECTS = $(am_tnl_unit_tests_OBJECTS) -tnl_unit_tests_DEPENDENCIES = ../../src/libtnl-0.1.la \ - ../../src/core/libcore-tests.la \ - ../../src/diff/libdiff-tests.la \ - ../../src/debug/libtnldebug-0.1.la -am__tnl_unit_tests_dbg_SOURCES_DIST = core/tnl-cuda-kernels.h \ - core/tnlArrayTester.h core/tnlCUDAKernelsTester.h \ - core/tnlCommunicatorTester.h core/tnlFileTester.h \ - core/tnlGridTester.h core/tnlLongVectorCUDATester.h \ - core/tnlLongVectorHostTester.h core/tnlRealTester.h \ - core/tnlSharedMemoryTester.h core/tnlVectorTester.h \ - diff/tnlMPIMeshTester.h diff/tnlMersonSolverCUDATester.cu.h \ - matrix/tnlMatrixTester.h matrix/tnlCSRMatrixTester.h \ - matrix/tnlEllpackMatrixTester.h matrix/tnlRgCSRMatrixTester.h \ - matrix/tnlAdaptiveRgCSRMatrixTester.h \ - solver/tnlMersonSolverTester.h tnl-unit-tests.cpp -@BUILD_DBG_TRUE@am_tnl_unit_tests_dbg_OBJECTS = $(am__objects_1) \ -@BUILD_DBG_TRUE@ tnl_unit_tests_dbg-tnl-unit-tests.$(OBJEXT) -tnl_unit_tests_dbg_OBJECTS = $(am_tnl_unit_tests_dbg_OBJECTS) -@BUILD_DBG_TRUE@tnl_unit_tests_dbg_DEPENDENCIES = \ -@BUILD_DBG_TRUE@ ../../src/libtnl-dbg-0.1.la \ -@BUILD_DBG_TRUE@ ../../src/core/libcore-tests-dbg.la \ -@BUILD_DBG_TRUE@ ../../src/diff/libdiff-tests-dbg.la \ -@BUILD_DBG_TRUE@ ../../src/debug/libtnldebug-dbg-0.1.la -tnl_unit_tests_dbg_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(tnl_unit_tests_dbg_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(tnl_unit_tests_SOURCES) $(tnl_unit_tests_dbg_SOURCES) -DIST_SOURCES = $(tnl_unit_tests_SOURCES) \ - $(am__tnl_unit_tests_dbg_SOURCES_DIST) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CUDA_HEADERS = @CUDA_HEADERS@ -CUDA_LIBS = @CUDA_LIBS@ -CUSP_CXXFLAGS = @CUSP_CXXFLAGS@ -CUSP_DIR = @CUSP_DIR@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DBGCXXFLAGS = @DBGCXXFLAGS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -MPICC = @MPICC@ -MPICXX = @MPICXX@ -MPICXXFLAGS = @MPICXXFLAGS@ -MPILDFLAGS = @MPILDFLAGS@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NVCC = @NVCC@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OPTIMISECXXFLAGS = @OPTIMISECXXFLAGS@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TNL_INCLUDE_DIR = @TNL_INCLUDE_DIR@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -cuda = @cuda@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -headers = core/tnl-cuda-kernels.h \ - core/tnlArrayTester.h \ - core/tnlCUDAKernelsTester.h \ - core/tnlCommunicatorTester.h \ - core/tnlFileTester.h \ - core/tnlGridTester.h \ - core/tnlLongVectorCUDATester.h \ - core/tnlLongVectorHostTester.h \ - core/tnlRealTester.h \ - core/tnlSharedMemoryTester.h \ - core/tnlVectorTester.h \ - diff/tnlMPIMeshTester.h \ - diff/tnlMersonSolverCUDATester.cu.h \ - matrix/tnlMatrixTester.h \ - matrix/tnlCSRMatrixTester.h \ - matrix/tnlEllpackMatrixTester.h \ - matrix/tnlRgCSRMatrixTester.h \ - matrix/tnlAdaptiveRgCSRMatrixTester.h \ - solver/tnlMersonSolverTester.h - -tnl_unit_tests_SOURCES = $(headers) tnl-unit-tests.cpp -tnl_unit_tests_LDADD = ../../src/libtnl-0.1.la \ - ../../src/core/libcore-tests.la \ - ../../src/diff/libdiff-tests.la \ - ../../src/debug/libtnldebug-0.1.la - -@BUILD_DBG_TRUE@tnl_unit_tests_dbg_SOURCES = $(headers) tnl-unit-tests.cpp -@BUILD_DBG_TRUE@tnl_unit_tests_dbg_CXXFLAGS = $(DBGCXXFLAGS) -@BUILD_DBG_TRUE@tnl_unit_tests_dbg_LDADD = ../../src/libtnl-dbg-0.1.la \ -@BUILD_DBG_TRUE@ ../../src/core/libcore-tests-dbg.la \ -@BUILD_DBG_TRUE@ ../../src/diff/libdiff-tests-dbg.la \ -@BUILD_DBG_TRUE@ ../../src/debug/libtnldebug-dbg-0.1.la - -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/unit-tests/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu tests/unit-tests/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -tnl-unit-tests$(EXEEXT): $(tnl_unit_tests_OBJECTS) $(tnl_unit_tests_DEPENDENCIES) - @rm -f tnl-unit-tests$(EXEEXT) - $(CXXLINK) $(tnl_unit_tests_OBJECTS) $(tnl_unit_tests_LDADD) $(LIBS) -tnl-unit-tests-dbg$(EXEEXT): $(tnl_unit_tests_dbg_OBJECTS) $(tnl_unit_tests_dbg_DEPENDENCIES) - @rm -f tnl-unit-tests-dbg$(EXEEXT) - $(tnl_unit_tests_dbg_LINK) $(tnl_unit_tests_dbg_OBJECTS) $(tnl_unit_tests_dbg_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tnl-unit-tests.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tnl_unit_tests_dbg-tnl-unit-tests.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -tnl_unit_tests_dbg-tnl-unit-tests.o: tnl-unit-tests.cpp -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tnl_unit_tests_dbg_CXXFLAGS) $(CXXFLAGS) -MT tnl_unit_tests_dbg-tnl-unit-tests.o -MD -MP -MF $(DEPDIR)/tnl_unit_tests_dbg-tnl-unit-tests.Tpo -c -o tnl_unit_tests_dbg-tnl-unit-tests.o `test -f 'tnl-unit-tests.cpp' || echo '$(srcdir)/'`tnl-unit-tests.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/tnl_unit_tests_dbg-tnl-unit-tests.Tpo $(DEPDIR)/tnl_unit_tests_dbg-tnl-unit-tests.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnl-unit-tests.cpp' object='tnl_unit_tests_dbg-tnl-unit-tests.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tnl_unit_tests_dbg_CXXFLAGS) $(CXXFLAGS) -c -o tnl_unit_tests_dbg-tnl-unit-tests.o `test -f 'tnl-unit-tests.cpp' || echo '$(srcdir)/'`tnl-unit-tests.cpp - -tnl_unit_tests_dbg-tnl-unit-tests.obj: tnl-unit-tests.cpp -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tnl_unit_tests_dbg_CXXFLAGS) $(CXXFLAGS) -MT tnl_unit_tests_dbg-tnl-unit-tests.obj -MD -MP -MF $(DEPDIR)/tnl_unit_tests_dbg-tnl-unit-tests.Tpo -c -o tnl_unit_tests_dbg-tnl-unit-tests.obj `if test -f 'tnl-unit-tests.cpp'; then $(CYGPATH_W) 'tnl-unit-tests.cpp'; else $(CYGPATH_W) '$(srcdir)/tnl-unit-tests.cpp'; fi` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/tnl_unit_tests_dbg-tnl-unit-tests.Tpo $(DEPDIR)/tnl_unit_tests_dbg-tnl-unit-tests.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tnl-unit-tests.cpp' object='tnl_unit_tests_dbg-tnl-unit-tests.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tnl_unit_tests_dbg_CXXFLAGS) $(CXXFLAGS) -c -o tnl_unit_tests_dbg-tnl-unit-tests.obj `if test -f 'tnl-unit-tests.cpp'; then $(CYGPATH_W) 'tnl-unit-tests.cpp'; else $(CYGPATH_W) '$(srcdir)/tnl-unit-tests.cpp'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-checkPROGRAMS clean-generic clean-libtool ctags \ - distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am - - -# tnl-benchmarks - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/tools/Makefile.am b/tools/Makefile.am deleted file mode 100644 index 88e910114a..0000000000 --- a/tools/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -## Process this file witj automake to produce Makefile.in - -SUBDIRS = src share diff --git a/tools/share/Makefile b/tools/share/Makefile deleted file mode 100644 index f95d59bb53..0000000000 --- a/tools/share/Makefile +++ /dev/null @@ -1,197 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/tools/share/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/share/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/share/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/share/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/share/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# 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 "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" -.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/tools/share/Makefile.am b/tools/share/Makefile.am deleted file mode 100644 index cb69f6a8b7..0000000000 --- a/tools/share/Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ -## Process this file with automake to produce Makefile.in - -tnltools_datadir = $(datadir)/tnl-tools -tnltools_data_DATA = tnlcurve2gnuplot.cfg.desc \ - mdiff-err-norms.cfg.desc \ - mgrid-view.cfg.desc \ - tnl-matrix-convert.cfg.desc - -EXTRA_DIST = tnlcurve2gnuplot.cfg.desc \ - mdiff-err-norms.cfg.desc \ - tnl-grid-view.cfg.desc \ - tnl-matrix-convert.cfg.desc diff --git a/tools/src/Makefile b/tools/src/Makefile deleted file mode 100644 index 4c4016d06f..0000000000 --- a/tools/src/Makefile +++ /dev/null @@ -1,407 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.8 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oberhuber/workspace/tnl - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oberhuber/workspace/tnl - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." - /usr/bin/cmake -i . -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# 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 - -# 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 - -# 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 - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# 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 - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target package -package: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackConfig.cmake -.PHONY : package - -# Special rule for the target package -package/fast: package -.PHONY : package/fast - -# Special rule for the target package_source -package_source: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." - cd /home/oberhuber/workspace/tnl && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/oberhuber/workspace/tnl/CPackSourceConfig.cmake -.PHONY : package_source - -# Special rule for the target package_source -package_source/fast: package_source -.PHONY : package_source/fast - -# 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 - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target test -test: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." - /usr/bin/ctest --force-new-ctest-process $(ARGS) -.PHONY : test - -# Special rule for the target test -test/fast: test -.PHONY : test/fast - -# The main all target -all: cmake_check_build_system - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles /home/oberhuber/workspace/tnl/tools/src/CMakeFiles/progress.marks - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oberhuber/workspace/tnl/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /home/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -tools/src/CMakeFiles/tnl-err-norms.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/CMakeFiles/tnl-err-norms.dir/rule -.PHONY : tools/src/CMakeFiles/tnl-err-norms.dir/rule - -# Convenience name for target. -tnl-err-norms: tools/src/CMakeFiles/tnl-err-norms.dir/rule -.PHONY : tnl-err-norms - -# fast build rule for target. -tnl-err-norms/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-err-norms.dir/build.make tools/src/CMakeFiles/tnl-err-norms.dir/build -.PHONY : tnl-err-norms/fast - -# Convenience name for target. -tools/src/CMakeFiles/tnl-functions-benchmark.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/CMakeFiles/tnl-functions-benchmark.dir/rule -.PHONY : tools/src/CMakeFiles/tnl-functions-benchmark.dir/rule - -# Convenience name for target. -tnl-functions-benchmark: tools/src/CMakeFiles/tnl-functions-benchmark.dir/rule -.PHONY : tnl-functions-benchmark - -# fast build rule for target. -tnl-functions-benchmark/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-functions-benchmark.dir/build.make tools/src/CMakeFiles/tnl-functions-benchmark.dir/build -.PHONY : tnl-functions-benchmark/fast - -# Convenience name for target. -tools/src/CMakeFiles/tnl-matrix-convert.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/CMakeFiles/tnl-matrix-convert.dir/rule -.PHONY : tools/src/CMakeFiles/tnl-matrix-convert.dir/rule - -# Convenience name for target. -tnl-matrix-convert: tools/src/CMakeFiles/tnl-matrix-convert.dir/rule -.PHONY : tnl-matrix-convert - -# fast build rule for target. -tnl-matrix-convert/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-matrix-convert.dir/build.make tools/src/CMakeFiles/tnl-matrix-convert.dir/build -.PHONY : tnl-matrix-convert/fast - -# Convenience name for target. -tools/src/CMakeFiles/tnlcurve2gnuplot.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/CMakeFiles/tnlcurve2gnuplot.dir/rule -.PHONY : tools/src/CMakeFiles/tnlcurve2gnuplot.dir/rule - -# Convenience name for target. -tnlcurve2gnuplot: tools/src/CMakeFiles/tnlcurve2gnuplot.dir/rule -.PHONY : tnlcurve2gnuplot - -# fast build rule for target. -tnlcurve2gnuplot/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnlcurve2gnuplot.dir/build.make tools/src/CMakeFiles/tnlcurve2gnuplot.dir/build -.PHONY : tnlcurve2gnuplot/fast - -# Convenience name for target. -tools/src/CMakeFiles/tnlgrid-view.dir/rule: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f CMakeFiles/Makefile2 tools/src/CMakeFiles/tnlgrid-view.dir/rule -.PHONY : tools/src/CMakeFiles/tnlgrid-view.dir/rule - -# Convenience name for target. -tnlgrid-view: tools/src/CMakeFiles/tnlgrid-view.dir/rule -.PHONY : tnlgrid-view - -# fast build rule for target. -tnlgrid-view/fast: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnlgrid-view.dir/build.make tools/src/CMakeFiles/tnlgrid-view.dir/build -.PHONY : tnlgrid-view/fast - -functions-benchmark.o: functions-benchmark.cpp.o -.PHONY : functions-benchmark.o - -# target to build an object file -functions-benchmark.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-functions-benchmark.dir/build.make tools/src/CMakeFiles/tnl-functions-benchmark.dir/functions-benchmark.cpp.o -.PHONY : functions-benchmark.cpp.o - -functions-benchmark.i: functions-benchmark.cpp.i -.PHONY : functions-benchmark.i - -# target to preprocess a source file -functions-benchmark.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-functions-benchmark.dir/build.make tools/src/CMakeFiles/tnl-functions-benchmark.dir/functions-benchmark.cpp.i -.PHONY : functions-benchmark.cpp.i - -functions-benchmark.s: functions-benchmark.cpp.s -.PHONY : functions-benchmark.s - -# target to generate assembly for a file -functions-benchmark.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-functions-benchmark.dir/build.make tools/src/CMakeFiles/tnl-functions-benchmark.dir/functions-benchmark.cpp.s -.PHONY : functions-benchmark.cpp.s - -tnl-err-norms.o: tnl-err-norms.cpp.o -.PHONY : tnl-err-norms.o - -# target to build an object file -tnl-err-norms.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-err-norms.dir/build.make tools/src/CMakeFiles/tnl-err-norms.dir/tnl-err-norms.cpp.o -.PHONY : tnl-err-norms.cpp.o - -tnl-err-norms.i: tnl-err-norms.cpp.i -.PHONY : tnl-err-norms.i - -# target to preprocess a source file -tnl-err-norms.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-err-norms.dir/build.make tools/src/CMakeFiles/tnl-err-norms.dir/tnl-err-norms.cpp.i -.PHONY : tnl-err-norms.cpp.i - -tnl-err-norms.s: tnl-err-norms.cpp.s -.PHONY : tnl-err-norms.s - -# target to generate assembly for a file -tnl-err-norms.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-err-norms.dir/build.make tools/src/CMakeFiles/tnl-err-norms.dir/tnl-err-norms.cpp.s -.PHONY : tnl-err-norms.cpp.s - -tnl-grid-view.o: tnl-grid-view.cpp.o -.PHONY : tnl-grid-view.o - -# target to build an object file -tnl-grid-view.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnlgrid-view.dir/build.make tools/src/CMakeFiles/tnlgrid-view.dir/tnl-grid-view.cpp.o -.PHONY : tnl-grid-view.cpp.o - -tnl-grid-view.i: tnl-grid-view.cpp.i -.PHONY : tnl-grid-view.i - -# target to preprocess a source file -tnl-grid-view.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnlgrid-view.dir/build.make tools/src/CMakeFiles/tnlgrid-view.dir/tnl-grid-view.cpp.i -.PHONY : tnl-grid-view.cpp.i - -tnl-grid-view.s: tnl-grid-view.cpp.s -.PHONY : tnl-grid-view.s - -# target to generate assembly for a file -tnl-grid-view.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnlgrid-view.dir/build.make tools/src/CMakeFiles/tnlgrid-view.dir/tnl-grid-view.cpp.s -.PHONY : tnl-grid-view.cpp.s - -tnl-matrix-convert.o: tnl-matrix-convert.cpp.o -.PHONY : tnl-matrix-convert.o - -# target to build an object file -tnl-matrix-convert.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-matrix-convert.dir/build.make tools/src/CMakeFiles/tnl-matrix-convert.dir/tnl-matrix-convert.cpp.o -.PHONY : tnl-matrix-convert.cpp.o - -tnl-matrix-convert.i: tnl-matrix-convert.cpp.i -.PHONY : tnl-matrix-convert.i - -# target to preprocess a source file -tnl-matrix-convert.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-matrix-convert.dir/build.make tools/src/CMakeFiles/tnl-matrix-convert.dir/tnl-matrix-convert.cpp.i -.PHONY : tnl-matrix-convert.cpp.i - -tnl-matrix-convert.s: tnl-matrix-convert.cpp.s -.PHONY : tnl-matrix-convert.s - -# target to generate assembly for a file -tnl-matrix-convert.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnl-matrix-convert.dir/build.make tools/src/CMakeFiles/tnl-matrix-convert.dir/tnl-matrix-convert.cpp.s -.PHONY : tnl-matrix-convert.cpp.s - -tnlcurve2gnuplot.o: tnlcurve2gnuplot.cpp.o -.PHONY : tnlcurve2gnuplot.o - -# target to build an object file -tnlcurve2gnuplot.cpp.o: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnlcurve2gnuplot.dir/build.make tools/src/CMakeFiles/tnlcurve2gnuplot.dir/tnlcurve2gnuplot.cpp.o -.PHONY : tnlcurve2gnuplot.cpp.o - -tnlcurve2gnuplot.i: tnlcurve2gnuplot.cpp.i -.PHONY : tnlcurve2gnuplot.i - -# target to preprocess a source file -tnlcurve2gnuplot.cpp.i: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnlcurve2gnuplot.dir/build.make tools/src/CMakeFiles/tnlcurve2gnuplot.dir/tnlcurve2gnuplot.cpp.i -.PHONY : tnlcurve2gnuplot.cpp.i - -tnlcurve2gnuplot.s: tnlcurve2gnuplot.cpp.s -.PHONY : tnlcurve2gnuplot.s - -# target to generate assembly for a file -tnlcurve2gnuplot.cpp.s: - cd /home/oberhuber/workspace/tnl && $(MAKE) -f tools/src/CMakeFiles/tnlcurve2gnuplot.dir/build.make tools/src/CMakeFiles/tnlcurve2gnuplot.dir/tnlcurve2gnuplot.cpp.s -.PHONY : tnlcurve2gnuplot.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 "... package" - @echo "... package_source" - @echo "... rebuild_cache" - @echo "... test" - @echo "... tnl-err-norms" - @echo "... tnl-functions-benchmark" - @echo "... tnl-matrix-convert" - @echo "... tnlcurve2gnuplot" - @echo "... tnlgrid-view" - @echo "... functions-benchmark.o" - @echo "... functions-benchmark.i" - @echo "... functions-benchmark.s" - @echo "... tnl-err-norms.o" - @echo "... tnl-err-norms.i" - @echo "... tnl-err-norms.s" - @echo "... tnl-grid-view.o" - @echo "... tnl-grid-view.i" - @echo "... tnl-grid-view.s" - @echo "... tnl-matrix-convert.o" - @echo "... tnl-matrix-convert.i" - @echo "... tnl-matrix-convert.s" - @echo "... tnlcurve2gnuplot.o" - @echo "... tnlcurve2gnuplot.i" - @echo "... tnlcurve2gnuplot.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/oberhuber/workspace/tnl && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/tools/src/Makefile.am b/tools/src/Makefile.am deleted file mode 100644 index af19f62c73..0000000000 --- a/tools/src/Makefile.am +++ /dev/null @@ -1,87 +0,0 @@ -## Process this file with automake to produce Makefile.in - -common = - -tnlerrnormssources = tnl-err-norms.h \ - compare-objects.h \ - $(common) -if BUILD_CUDA -tnlerrnormssources += tnl-err-norms-cuda.cu -else -tnlerrnormssources += tnl-err-norms.cpp -endif - -tnlgridviewsources = tnl-grid-view.h \ - $(common) - -#if BUILD_CUDA -#tnlgridviewsources += tnl-grid-view-cuda.cu -#else -tnlgridviewsources += tnl-grid-view.cpp -#endif - -tnlcurve2gnuplotsources = tnlcurve2gnuplot.cpp \ - $(common) - -tnlfunctionsbenchmarksources = functions-benchmark.cpp \ - functions-benchmark.h - -tnlmatrixconvertsources = tnl-matrix-convert.cpp \ - tnl-matrix-convert.h - -#if BUILD_CUDA -#tnlfunctionsbenchmarksources += functions-benchmark-cuda.cu \ -# functions-benchmark-cuda.cu.h -#endif - -bin_PROGRAMS = tnl-err-norms \ - tnlgrid-view \ - tnlcurve2gnuplot \ - tnl-functions-benchmark \ - tnl-matrix-convert - -tnl_err_norms_SOURCES = $(tnlerrnormssources) -tnl_err_norms_LDADD = ../../src/libtnl-0.1.la - -tnlgrid_view_SOURCES = $(tnlgridviewsources) -tnlgrid_view_LDADD = ../../src/libtnl-0.1.la - -tnlcurve2gnuplot_SOURCES = $(tnlcurve2gnuplotsources) -tnlcurve2gnuplot_LDADD = ../../src/libtnl-0.1.la - -tnl_functions_benchmark_SOURCES = $(tnlfunctionsbenchmarksources) -tnl_functions_benchmark_LDADD = ../../src/libtnl-0.1.la -tnl_functions_benchmark_CXXFLAGS = "-O2" - -tnl_matrix_convert_SOURCES = $(tnlmatrixconvertsources) -tnl_matrix_convert_CXXFLAGS = $(OPTIMISECXXFLAGS) -tnl_matrix_convert_LDADD = ../../src/libtnl-0.1.la - -if BUILD_DBG -bin_PROGRAMS += tnl-err-norms-dbg \ - tnlgrid-view-dbg \ - tnlcurve2gnuplot-dbg \ - tnl-matrix-convert-dbg - -tnl_err_norms_dbg_SOURCES = $(tnlerrnormssources) -tnl_err_norms_dbg_CXXFLAGS = $(DBGCXXFLAGS) -tnl_err_norms_dbg_LDADD = ../../src/libtnl-dbg-0.1.la - -tnlgrid_view_dbg_SOURCES = $(tnlgridviewsources) -tnlgrid_view_dbg_CXXFLAGS = $(DBGCXXFLAGS) -tnlgrid_view_dbg_LDADD = ../../src/libtnl-dbg-0.1.la - -tnlcurve2gnuplot_dbg_SOURCES = $(tnlcurve2gnuplotsources) -tnlcurve2gnuplot_dbg_CXXFLAGS = $(DBGCXXFLAGS) -tnlcurve2gnuplot_dbg_LDADD = ../../src/libtnl-dbg-0.1.la - -tnl_matrix_convert_dbg_SOURCES = $(tnlmatrixconvertsources) -tnl_matrix_convert_dbg_CXXFLAGS = $(DBGCXXFLAGS) -tnl_matrix_convert_dbg_LDADD = ../../src/libtnl-0.1.la -endif - -bin_SCRIPTS = tnl-diff-err2eoc.py \ - tnl-create-debug-file - -EXTRA_DIST = tnl-diff-err2eoc.py \ - tnl-create-debug-file -- GitLab