diff --git a/.gitignore b/.gitignore index 080718f9..fd10888c 100644 --- a/.gitignore +++ b/.gitignore @@ -10,5 +10,7 @@ build.log *.egg-info/ .coverage *~ +.#* +.*~ setup.cfg _skbuild diff --git a/.gitmodules b/.gitmodules index 19b9d23c..47568157 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,4 @@ [submodule "slycot/src/SLICOT-Reference"] path = slycot/src/SLICOT-Reference url = https://github.com/python-control/SLICOT-Reference + branch = balancers diff --git a/CMakeLists.txt b/CMakeLists.txt index 3cfa425f..a7f90a4c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,6 +6,10 @@ cmake_policy(SET CMP0074 NEW) project(slycot LANGUAGES NONE) +#set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fcheck=all -Og -g -Wall") +set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -fcheck=bounds -Og -g") # -Wall -fbacktrace +set(CMAKE_C_FLAGS_DEBUG "${CMAKE_c_FLAGS_DEBUG} -Og -g -Wall") # -fsanitize=address + enable_language(C) enable_language(Fortran) diff --git a/pyproject.toml b/pyproject.toml index c984562f..2ca2537c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,3 +51,7 @@ write_to = "slycot/version.py" [tool.pytest.ini_options] # run the tests with compiled and installed package addopts = "--pyargs slycot" + +[tool.scikit-build] +cmake.verbose = true +logging.level = "INFO" \ No newline at end of file diff --git a/setup.py b/setup.py index e832d146..59c45b0a 100644 --- a/setup.py +++ b/setup.py @@ -62,5 +62,6 @@ def run(self): packages=['slycot', 'slycot.tests'], cmdclass={'sdist': sdist_checked}, cmake_languages=('C', 'Fortran'), + cmake_args=['-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON', '-DCMAKE_BUILD_TYPE=Debug'], include_package_data = False, ) diff --git a/slycot/CMakeLists.txt b/slycot/CMakeLists.txt index dc2c59b1..aaeeba98 100644 --- a/slycot/CMakeLists.txt +++ b/slycot/CMakeLists.txt @@ -634,13 +634,18 @@ src/SLICOT-Reference/src/SLCT_ZLATZM.f ) -set(SLYCOT_FSOURCE src/ftruefalse.f src/XERBLA.f) +set(SLYCOT_FSOURCE src/ftruefalse.f src/XERBLA.f src/dggbal.f src/zggbal.f) +# set(SLYCOT_FSOURCE src/ftruefalse.f src/XERBLA.f) set(F2PYSOURCE src/_wrapper.pyf) set(F2PYSOURCE_DEPS - src/analysis.pyf src/math.pyf - src/transform.pyf src/synthesis.pyf - src/_helper.pyf) + src/lapack_bal.pyf + src/analysis.pyf + src/math.pyf + src/transform.pyf + src/synthesis.pyf + src/_helper.pyf + ) set(SLYCOT_MODULE "_wrapper") @@ -648,9 +653,14 @@ set(GENERATED_MODULE ${CMAKE_CURRENT_BINARY_DIR}/${SLYCOT_MODULE}${PYTHON_EXTENSION_MODULE_SUFFIX}) -set(CMAKE_Fortran_FLAGS ) - add_custom_target(wrapper ALL DEPENDS ${SLICOT_FSOURCE} ${SLYCOT_FSOURCE}) + +# add_custom_command( +# OUTPUT _wrappermodule.c _wrapper-f2pywrappers.f +# COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/src/generate_f2pymod.py -o ${CMAKE_CURRENT_BINARY_DIR}/ ${CMAKE_CURRENT_SOURCE_DIR}/src/_wrapper.pyf.src +# DEPENDS ${F2PYSOURCE_DEPS} ${F2PYSOURCE} src/lapack_bal.pyf.src src/_wrapper.pyf.src +# ) + add_custom_command( OUTPUT _wrappermodule.c _wrapper-f2pywrappers.f COMMAND ${F2PY_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/${F2PYSOURCE} @@ -665,7 +675,8 @@ add_library( ${SLICOT_FSOURCE} ${SLYCOT_FSOURCE}) target_link_libraries(${SLYCOT_MODULE} - ${LAPACK_LIBRARIES}) + ${LAPACK_LIBRARIES} +) target_include_directories( ${SLYCOT_MODULE} PUBLIC @@ -674,6 +685,9 @@ target_include_directories( ${F2PY_INCLUDE_DIRS} ) +# set_target_properties(${SLYCOT_MODULE} PROPERTIES +# LINK_FLAGS_DEBUG "-fsanitize=address") + if (UNIX) if (APPLE) set_target_properties(${SLYCOT_MODULE} PROPERTIES @@ -686,4 +700,5 @@ endif() python_extension_module(${SLYCOT_MODULE}) + install(TARGETS ${SLYCOT_MODULE} LIBRARY DESTINATION slycot) diff --git a/slycot/Makefile b/slycot/Makefile new file mode 100644 index 00000000..7b3d5596 --- /dev/null +++ b/slycot/Makefile @@ -0,0 +1,17175 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#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 = /opt/conda/user_conda/mcculler/py312/bin/cmake + +# The command to remove a file. +RM = /opt/conda/user_conda/mcculler/py312/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/mcculler/local/projects_sync/Slycot + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/mcculler/local/projects_sync/Slycot + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/conda/user_conda/mcculler/py312/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/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..." + /opt/conda/user_conda/mcculler/py312/bin/cmake --regenerate-during-build -S$(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 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 install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/conda/user_conda/mcculler/py312/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..." + /opt/conda/user_conda/mcculler/py312/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..." + /opt/conda/user_conda/mcculler/py312/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/conda/user_conda/mcculler/py312/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.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..." + /opt/conda/user_conda/mcculler/py312/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/conda/user_conda/mcculler/py312/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /home/mcculler/local/projects_sync/Slycot && $(CMAKE_COMMAND) -E cmake_progress_start /home/mcculler/local/projects_sync/Slycot/CMakeFiles /home/mcculler/local/projects_sync/Slycot/slycot//CMakeFiles/progress.marks + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 slycot/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/mcculler/local/projects_sync/Slycot/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 slycot/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 slycot/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 slycot/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/mcculler/local/projects_sync/Slycot && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +slycot/CMakeFiles/wrapper.dir/rule: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 slycot/CMakeFiles/wrapper.dir/rule +.PHONY : slycot/CMakeFiles/wrapper.dir/rule + +# Convenience name for target. +wrapper: slycot/CMakeFiles/wrapper.dir/rule +.PHONY : wrapper + +# fast build rule for target. +wrapper/fast: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/wrapper.dir/build.make slycot/CMakeFiles/wrapper.dir/build +.PHONY : wrapper/fast + +# Convenience name for target. +slycot/CMakeFiles/_wrapper.dir/rule: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 slycot/CMakeFiles/_wrapper.dir/rule +.PHONY : slycot/CMakeFiles/_wrapper.dir/rule + +# Convenience name for target. +_wrapper: slycot/CMakeFiles/_wrapper.dir/rule +.PHONY : _wrapper + +# fast build rule for target. +_wrapper/fast: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/build +.PHONY : _wrapper/fast + +_wrapper-f2pywrappers.o: _wrapper-f2pywrappers.f.o +.PHONY : _wrapper-f2pywrappers.o + +# target to build an object file +_wrapper-f2pywrappers.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/_wrapper-f2pywrappers.f.o +.PHONY : _wrapper-f2pywrappers.f.o + +_wrapper-f2pywrappers.i: _wrapper-f2pywrappers.f.i +.PHONY : _wrapper-f2pywrappers.i + +# target to preprocess a source file +_wrapper-f2pywrappers.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/_wrapper-f2pywrappers.f.i +.PHONY : _wrapper-f2pywrappers.f.i + +_wrapper-f2pywrappers.s: _wrapper-f2pywrappers.f.s +.PHONY : _wrapper-f2pywrappers.s + +# target to generate assembly for a file +_wrapper-f2pywrappers.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/_wrapper-f2pywrappers.f.s +.PHONY : _wrapper-f2pywrappers.f.s + +_wrappermodule.o: _wrappermodule.c.o +.PHONY : _wrappermodule.o + +# target to build an object file +_wrappermodule.c.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/_wrappermodule.c.o +.PHONY : _wrappermodule.c.o + +_wrappermodule.i: _wrappermodule.c.i +.PHONY : _wrappermodule.i + +# target to preprocess a source file +_wrappermodule.c.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/_wrappermodule.c.i +.PHONY : _wrappermodule.c.i + +_wrappermodule.s: _wrappermodule.c.s +.PHONY : _wrappermodule.s + +# target to generate assembly for a file +_wrappermodule.c.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/_wrappermodule.c.s +.PHONY : _wrappermodule.c.s + +opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.o: opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.o +.PHONY : opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.o + +# target to build an object file +opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.o +.PHONY : opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.o + +opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.i: opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.i +.PHONY : opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.i + +# target to preprocess a source file +opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.i +.PHONY : opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.i + +opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.s: opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.s +.PHONY : opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.s + +# target to generate assembly for a file +opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.s +.PHONY : opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.c.s + +src/SLICOT-Reference/src/AB01MD.o: src/SLICOT-Reference/src/AB01MD.f.o +.PHONY : src/SLICOT-Reference/src/AB01MD.o + +# target to build an object file +src/SLICOT-Reference/src/AB01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01MD.f.o +.PHONY : src/SLICOT-Reference/src/AB01MD.f.o + +src/SLICOT-Reference/src/AB01MD.i: src/SLICOT-Reference/src/AB01MD.f.i +.PHONY : src/SLICOT-Reference/src/AB01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01MD.f.i +.PHONY : src/SLICOT-Reference/src/AB01MD.f.i + +src/SLICOT-Reference/src/AB01MD.s: src/SLICOT-Reference/src/AB01MD.f.s +.PHONY : src/SLICOT-Reference/src/AB01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01MD.f.s +.PHONY : src/SLICOT-Reference/src/AB01MD.f.s + +src/SLICOT-Reference/src/AB01ND.o: src/SLICOT-Reference/src/AB01ND.f.o +.PHONY : src/SLICOT-Reference/src/AB01ND.o + +# target to build an object file +src/SLICOT-Reference/src/AB01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01ND.f.o +.PHONY : src/SLICOT-Reference/src/AB01ND.f.o + +src/SLICOT-Reference/src/AB01ND.i: src/SLICOT-Reference/src/AB01ND.f.i +.PHONY : src/SLICOT-Reference/src/AB01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01ND.f.i +.PHONY : src/SLICOT-Reference/src/AB01ND.f.i + +src/SLICOT-Reference/src/AB01ND.s: src/SLICOT-Reference/src/AB01ND.f.s +.PHONY : src/SLICOT-Reference/src/AB01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01ND.f.s +.PHONY : src/SLICOT-Reference/src/AB01ND.f.s + +src/SLICOT-Reference/src/AB01OD.o: src/SLICOT-Reference/src/AB01OD.f.o +.PHONY : src/SLICOT-Reference/src/AB01OD.o + +# target to build an object file +src/SLICOT-Reference/src/AB01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01OD.f.o +.PHONY : src/SLICOT-Reference/src/AB01OD.f.o + +src/SLICOT-Reference/src/AB01OD.i: src/SLICOT-Reference/src/AB01OD.f.i +.PHONY : src/SLICOT-Reference/src/AB01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01OD.f.i +.PHONY : src/SLICOT-Reference/src/AB01OD.f.i + +src/SLICOT-Reference/src/AB01OD.s: src/SLICOT-Reference/src/AB01OD.f.s +.PHONY : src/SLICOT-Reference/src/AB01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01OD.f.s +.PHONY : src/SLICOT-Reference/src/AB01OD.f.s + +src/SLICOT-Reference/src/AB04MD.o: src/SLICOT-Reference/src/AB04MD.f.o +.PHONY : src/SLICOT-Reference/src/AB04MD.o + +# target to build an object file +src/SLICOT-Reference/src/AB04MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB04MD.f.o +.PHONY : src/SLICOT-Reference/src/AB04MD.f.o + +src/SLICOT-Reference/src/AB04MD.i: src/SLICOT-Reference/src/AB04MD.f.i +.PHONY : src/SLICOT-Reference/src/AB04MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB04MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB04MD.f.i +.PHONY : src/SLICOT-Reference/src/AB04MD.f.i + +src/SLICOT-Reference/src/AB04MD.s: src/SLICOT-Reference/src/AB04MD.f.s +.PHONY : src/SLICOT-Reference/src/AB04MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB04MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB04MD.f.s +.PHONY : src/SLICOT-Reference/src/AB04MD.f.s + +src/SLICOT-Reference/src/AB05MD.o: src/SLICOT-Reference/src/AB05MD.f.o +.PHONY : src/SLICOT-Reference/src/AB05MD.o + +# target to build an object file +src/SLICOT-Reference/src/AB05MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05MD.f.o +.PHONY : src/SLICOT-Reference/src/AB05MD.f.o + +src/SLICOT-Reference/src/AB05MD.i: src/SLICOT-Reference/src/AB05MD.f.i +.PHONY : src/SLICOT-Reference/src/AB05MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB05MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05MD.f.i +.PHONY : src/SLICOT-Reference/src/AB05MD.f.i + +src/SLICOT-Reference/src/AB05MD.s: src/SLICOT-Reference/src/AB05MD.f.s +.PHONY : src/SLICOT-Reference/src/AB05MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB05MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05MD.f.s +.PHONY : src/SLICOT-Reference/src/AB05MD.f.s + +src/SLICOT-Reference/src/AB05ND.o: src/SLICOT-Reference/src/AB05ND.f.o +.PHONY : src/SLICOT-Reference/src/AB05ND.o + +# target to build an object file +src/SLICOT-Reference/src/AB05ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05ND.f.o +.PHONY : src/SLICOT-Reference/src/AB05ND.f.o + +src/SLICOT-Reference/src/AB05ND.i: src/SLICOT-Reference/src/AB05ND.f.i +.PHONY : src/SLICOT-Reference/src/AB05ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB05ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05ND.f.i +.PHONY : src/SLICOT-Reference/src/AB05ND.f.i + +src/SLICOT-Reference/src/AB05ND.s: src/SLICOT-Reference/src/AB05ND.f.s +.PHONY : src/SLICOT-Reference/src/AB05ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB05ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05ND.f.s +.PHONY : src/SLICOT-Reference/src/AB05ND.f.s + +src/SLICOT-Reference/src/AB05OD.o: src/SLICOT-Reference/src/AB05OD.f.o +.PHONY : src/SLICOT-Reference/src/AB05OD.o + +# target to build an object file +src/SLICOT-Reference/src/AB05OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05OD.f.o +.PHONY : src/SLICOT-Reference/src/AB05OD.f.o + +src/SLICOT-Reference/src/AB05OD.i: src/SLICOT-Reference/src/AB05OD.f.i +.PHONY : src/SLICOT-Reference/src/AB05OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB05OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05OD.f.i +.PHONY : src/SLICOT-Reference/src/AB05OD.f.i + +src/SLICOT-Reference/src/AB05OD.s: src/SLICOT-Reference/src/AB05OD.f.s +.PHONY : src/SLICOT-Reference/src/AB05OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB05OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05OD.f.s +.PHONY : src/SLICOT-Reference/src/AB05OD.f.s + +src/SLICOT-Reference/src/AB05PD.o: src/SLICOT-Reference/src/AB05PD.f.o +.PHONY : src/SLICOT-Reference/src/AB05PD.o + +# target to build an object file +src/SLICOT-Reference/src/AB05PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05PD.f.o +.PHONY : src/SLICOT-Reference/src/AB05PD.f.o + +src/SLICOT-Reference/src/AB05PD.i: src/SLICOT-Reference/src/AB05PD.f.i +.PHONY : src/SLICOT-Reference/src/AB05PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB05PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05PD.f.i +.PHONY : src/SLICOT-Reference/src/AB05PD.f.i + +src/SLICOT-Reference/src/AB05PD.s: src/SLICOT-Reference/src/AB05PD.f.s +.PHONY : src/SLICOT-Reference/src/AB05PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB05PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05PD.f.s +.PHONY : src/SLICOT-Reference/src/AB05PD.f.s + +src/SLICOT-Reference/src/AB05QD.o: src/SLICOT-Reference/src/AB05QD.f.o +.PHONY : src/SLICOT-Reference/src/AB05QD.o + +# target to build an object file +src/SLICOT-Reference/src/AB05QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05QD.f.o +.PHONY : src/SLICOT-Reference/src/AB05QD.f.o + +src/SLICOT-Reference/src/AB05QD.i: src/SLICOT-Reference/src/AB05QD.f.i +.PHONY : src/SLICOT-Reference/src/AB05QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB05QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05QD.f.i +.PHONY : src/SLICOT-Reference/src/AB05QD.f.i + +src/SLICOT-Reference/src/AB05QD.s: src/SLICOT-Reference/src/AB05QD.f.s +.PHONY : src/SLICOT-Reference/src/AB05QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB05QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05QD.f.s +.PHONY : src/SLICOT-Reference/src/AB05QD.f.s + +src/SLICOT-Reference/src/AB05RD.o: src/SLICOT-Reference/src/AB05RD.f.o +.PHONY : src/SLICOT-Reference/src/AB05RD.o + +# target to build an object file +src/SLICOT-Reference/src/AB05RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05RD.f.o +.PHONY : src/SLICOT-Reference/src/AB05RD.f.o + +src/SLICOT-Reference/src/AB05RD.i: src/SLICOT-Reference/src/AB05RD.f.i +.PHONY : src/SLICOT-Reference/src/AB05RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB05RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05RD.f.i +.PHONY : src/SLICOT-Reference/src/AB05RD.f.i + +src/SLICOT-Reference/src/AB05RD.s: src/SLICOT-Reference/src/AB05RD.f.s +.PHONY : src/SLICOT-Reference/src/AB05RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB05RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05RD.f.s +.PHONY : src/SLICOT-Reference/src/AB05RD.f.s + +src/SLICOT-Reference/src/AB05SD.o: src/SLICOT-Reference/src/AB05SD.f.o +.PHONY : src/SLICOT-Reference/src/AB05SD.o + +# target to build an object file +src/SLICOT-Reference/src/AB05SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05SD.f.o +.PHONY : src/SLICOT-Reference/src/AB05SD.f.o + +src/SLICOT-Reference/src/AB05SD.i: src/SLICOT-Reference/src/AB05SD.f.i +.PHONY : src/SLICOT-Reference/src/AB05SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB05SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05SD.f.i +.PHONY : src/SLICOT-Reference/src/AB05SD.f.i + +src/SLICOT-Reference/src/AB05SD.s: src/SLICOT-Reference/src/AB05SD.f.s +.PHONY : src/SLICOT-Reference/src/AB05SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB05SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05SD.f.s +.PHONY : src/SLICOT-Reference/src/AB05SD.f.s + +src/SLICOT-Reference/src/AB07MD.o: src/SLICOT-Reference/src/AB07MD.f.o +.PHONY : src/SLICOT-Reference/src/AB07MD.o + +# target to build an object file +src/SLICOT-Reference/src/AB07MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB07MD.f.o +.PHONY : src/SLICOT-Reference/src/AB07MD.f.o + +src/SLICOT-Reference/src/AB07MD.i: src/SLICOT-Reference/src/AB07MD.f.i +.PHONY : src/SLICOT-Reference/src/AB07MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB07MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB07MD.f.i +.PHONY : src/SLICOT-Reference/src/AB07MD.f.i + +src/SLICOT-Reference/src/AB07MD.s: src/SLICOT-Reference/src/AB07MD.f.s +.PHONY : src/SLICOT-Reference/src/AB07MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB07MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB07MD.f.s +.PHONY : src/SLICOT-Reference/src/AB07MD.f.s + +src/SLICOT-Reference/src/AB07ND.o: src/SLICOT-Reference/src/AB07ND.f.o +.PHONY : src/SLICOT-Reference/src/AB07ND.o + +# target to build an object file +src/SLICOT-Reference/src/AB07ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB07ND.f.o +.PHONY : src/SLICOT-Reference/src/AB07ND.f.o + +src/SLICOT-Reference/src/AB07ND.i: src/SLICOT-Reference/src/AB07ND.f.i +.PHONY : src/SLICOT-Reference/src/AB07ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB07ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB07ND.f.i +.PHONY : src/SLICOT-Reference/src/AB07ND.f.i + +src/SLICOT-Reference/src/AB07ND.s: src/SLICOT-Reference/src/AB07ND.f.s +.PHONY : src/SLICOT-Reference/src/AB07ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB07ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB07ND.f.s +.PHONY : src/SLICOT-Reference/src/AB07ND.f.s + +src/SLICOT-Reference/src/AB08MD.o: src/SLICOT-Reference/src/AB08MD.f.o +.PHONY : src/SLICOT-Reference/src/AB08MD.o + +# target to build an object file +src/SLICOT-Reference/src/AB08MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08MD.f.o +.PHONY : src/SLICOT-Reference/src/AB08MD.f.o + +src/SLICOT-Reference/src/AB08MD.i: src/SLICOT-Reference/src/AB08MD.f.i +.PHONY : src/SLICOT-Reference/src/AB08MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB08MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08MD.f.i +.PHONY : src/SLICOT-Reference/src/AB08MD.f.i + +src/SLICOT-Reference/src/AB08MD.s: src/SLICOT-Reference/src/AB08MD.f.s +.PHONY : src/SLICOT-Reference/src/AB08MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB08MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08MD.f.s +.PHONY : src/SLICOT-Reference/src/AB08MD.f.s + +src/SLICOT-Reference/src/AB08MZ.o: src/SLICOT-Reference/src/AB08MZ.f.o +.PHONY : src/SLICOT-Reference/src/AB08MZ.o + +# target to build an object file +src/SLICOT-Reference/src/AB08MZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08MZ.f.o +.PHONY : src/SLICOT-Reference/src/AB08MZ.f.o + +src/SLICOT-Reference/src/AB08MZ.i: src/SLICOT-Reference/src/AB08MZ.f.i +.PHONY : src/SLICOT-Reference/src/AB08MZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB08MZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08MZ.f.i +.PHONY : src/SLICOT-Reference/src/AB08MZ.f.i + +src/SLICOT-Reference/src/AB08MZ.s: src/SLICOT-Reference/src/AB08MZ.f.s +.PHONY : src/SLICOT-Reference/src/AB08MZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB08MZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08MZ.f.s +.PHONY : src/SLICOT-Reference/src/AB08MZ.f.s + +src/SLICOT-Reference/src/AB08ND.o: src/SLICOT-Reference/src/AB08ND.f.o +.PHONY : src/SLICOT-Reference/src/AB08ND.o + +# target to build an object file +src/SLICOT-Reference/src/AB08ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08ND.f.o +.PHONY : src/SLICOT-Reference/src/AB08ND.f.o + +src/SLICOT-Reference/src/AB08ND.i: src/SLICOT-Reference/src/AB08ND.f.i +.PHONY : src/SLICOT-Reference/src/AB08ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB08ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08ND.f.i +.PHONY : src/SLICOT-Reference/src/AB08ND.f.i + +src/SLICOT-Reference/src/AB08ND.s: src/SLICOT-Reference/src/AB08ND.f.s +.PHONY : src/SLICOT-Reference/src/AB08ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB08ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08ND.f.s +.PHONY : src/SLICOT-Reference/src/AB08ND.f.s + +src/SLICOT-Reference/src/AB08NW.o: src/SLICOT-Reference/src/AB08NW.f.o +.PHONY : src/SLICOT-Reference/src/AB08NW.o + +# target to build an object file +src/SLICOT-Reference/src/AB08NW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NW.f.o +.PHONY : src/SLICOT-Reference/src/AB08NW.f.o + +src/SLICOT-Reference/src/AB08NW.i: src/SLICOT-Reference/src/AB08NW.f.i +.PHONY : src/SLICOT-Reference/src/AB08NW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB08NW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NW.f.i +.PHONY : src/SLICOT-Reference/src/AB08NW.f.i + +src/SLICOT-Reference/src/AB08NW.s: src/SLICOT-Reference/src/AB08NW.f.s +.PHONY : src/SLICOT-Reference/src/AB08NW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB08NW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NW.f.s +.PHONY : src/SLICOT-Reference/src/AB08NW.f.s + +src/SLICOT-Reference/src/AB08NX.o: src/SLICOT-Reference/src/AB08NX.f.o +.PHONY : src/SLICOT-Reference/src/AB08NX.o + +# target to build an object file +src/SLICOT-Reference/src/AB08NX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NX.f.o +.PHONY : src/SLICOT-Reference/src/AB08NX.f.o + +src/SLICOT-Reference/src/AB08NX.i: src/SLICOT-Reference/src/AB08NX.f.i +.PHONY : src/SLICOT-Reference/src/AB08NX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB08NX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NX.f.i +.PHONY : src/SLICOT-Reference/src/AB08NX.f.i + +src/SLICOT-Reference/src/AB08NX.s: src/SLICOT-Reference/src/AB08NX.f.s +.PHONY : src/SLICOT-Reference/src/AB08NX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB08NX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NX.f.s +.PHONY : src/SLICOT-Reference/src/AB08NX.f.s + +src/SLICOT-Reference/src/AB08NY.o: src/SLICOT-Reference/src/AB08NY.f.o +.PHONY : src/SLICOT-Reference/src/AB08NY.o + +# target to build an object file +src/SLICOT-Reference/src/AB08NY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NY.f.o +.PHONY : src/SLICOT-Reference/src/AB08NY.f.o + +src/SLICOT-Reference/src/AB08NY.i: src/SLICOT-Reference/src/AB08NY.f.i +.PHONY : src/SLICOT-Reference/src/AB08NY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB08NY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NY.f.i +.PHONY : src/SLICOT-Reference/src/AB08NY.f.i + +src/SLICOT-Reference/src/AB08NY.s: src/SLICOT-Reference/src/AB08NY.f.s +.PHONY : src/SLICOT-Reference/src/AB08NY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB08NY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NY.f.s +.PHONY : src/SLICOT-Reference/src/AB08NY.f.s + +src/SLICOT-Reference/src/AB08NZ.o: src/SLICOT-Reference/src/AB08NZ.f.o +.PHONY : src/SLICOT-Reference/src/AB08NZ.o + +# target to build an object file +src/SLICOT-Reference/src/AB08NZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NZ.f.o +.PHONY : src/SLICOT-Reference/src/AB08NZ.f.o + +src/SLICOT-Reference/src/AB08NZ.i: src/SLICOT-Reference/src/AB08NZ.f.i +.PHONY : src/SLICOT-Reference/src/AB08NZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB08NZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NZ.f.i +.PHONY : src/SLICOT-Reference/src/AB08NZ.f.i + +src/SLICOT-Reference/src/AB08NZ.s: src/SLICOT-Reference/src/AB08NZ.f.s +.PHONY : src/SLICOT-Reference/src/AB08NZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB08NZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NZ.f.s +.PHONY : src/SLICOT-Reference/src/AB08NZ.f.s + +src/SLICOT-Reference/src/AB09AD.o: src/SLICOT-Reference/src/AB09AD.f.o +.PHONY : src/SLICOT-Reference/src/AB09AD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09AD.f.o +.PHONY : src/SLICOT-Reference/src/AB09AD.f.o + +src/SLICOT-Reference/src/AB09AD.i: src/SLICOT-Reference/src/AB09AD.f.i +.PHONY : src/SLICOT-Reference/src/AB09AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09AD.f.i +.PHONY : src/SLICOT-Reference/src/AB09AD.f.i + +src/SLICOT-Reference/src/AB09AD.s: src/SLICOT-Reference/src/AB09AD.f.s +.PHONY : src/SLICOT-Reference/src/AB09AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09AD.f.s +.PHONY : src/SLICOT-Reference/src/AB09AD.f.s + +src/SLICOT-Reference/src/AB09AX.o: src/SLICOT-Reference/src/AB09AX.f.o +.PHONY : src/SLICOT-Reference/src/AB09AX.o + +# target to build an object file +src/SLICOT-Reference/src/AB09AX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09AX.f.o +.PHONY : src/SLICOT-Reference/src/AB09AX.f.o + +src/SLICOT-Reference/src/AB09AX.i: src/SLICOT-Reference/src/AB09AX.f.i +.PHONY : src/SLICOT-Reference/src/AB09AX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09AX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09AX.f.i +.PHONY : src/SLICOT-Reference/src/AB09AX.f.i + +src/SLICOT-Reference/src/AB09AX.s: src/SLICOT-Reference/src/AB09AX.f.s +.PHONY : src/SLICOT-Reference/src/AB09AX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09AX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09AX.f.s +.PHONY : src/SLICOT-Reference/src/AB09AX.f.s + +src/SLICOT-Reference/src/AB09BD.o: src/SLICOT-Reference/src/AB09BD.f.o +.PHONY : src/SLICOT-Reference/src/AB09BD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09BD.f.o +.PHONY : src/SLICOT-Reference/src/AB09BD.f.o + +src/SLICOT-Reference/src/AB09BD.i: src/SLICOT-Reference/src/AB09BD.f.i +.PHONY : src/SLICOT-Reference/src/AB09BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09BD.f.i +.PHONY : src/SLICOT-Reference/src/AB09BD.f.i + +src/SLICOT-Reference/src/AB09BD.s: src/SLICOT-Reference/src/AB09BD.f.s +.PHONY : src/SLICOT-Reference/src/AB09BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09BD.f.s +.PHONY : src/SLICOT-Reference/src/AB09BD.f.s + +src/SLICOT-Reference/src/AB09BX.o: src/SLICOT-Reference/src/AB09BX.f.o +.PHONY : src/SLICOT-Reference/src/AB09BX.o + +# target to build an object file +src/SLICOT-Reference/src/AB09BX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09BX.f.o +.PHONY : src/SLICOT-Reference/src/AB09BX.f.o + +src/SLICOT-Reference/src/AB09BX.i: src/SLICOT-Reference/src/AB09BX.f.i +.PHONY : src/SLICOT-Reference/src/AB09BX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09BX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09BX.f.i +.PHONY : src/SLICOT-Reference/src/AB09BX.f.i + +src/SLICOT-Reference/src/AB09BX.s: src/SLICOT-Reference/src/AB09BX.f.s +.PHONY : src/SLICOT-Reference/src/AB09BX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09BX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09BX.f.s +.PHONY : src/SLICOT-Reference/src/AB09BX.f.s + +src/SLICOT-Reference/src/AB09CD.o: src/SLICOT-Reference/src/AB09CD.f.o +.PHONY : src/SLICOT-Reference/src/AB09CD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09CD.f.o +.PHONY : src/SLICOT-Reference/src/AB09CD.f.o + +src/SLICOT-Reference/src/AB09CD.i: src/SLICOT-Reference/src/AB09CD.f.i +.PHONY : src/SLICOT-Reference/src/AB09CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09CD.f.i +.PHONY : src/SLICOT-Reference/src/AB09CD.f.i + +src/SLICOT-Reference/src/AB09CD.s: src/SLICOT-Reference/src/AB09CD.f.s +.PHONY : src/SLICOT-Reference/src/AB09CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09CD.f.s +.PHONY : src/SLICOT-Reference/src/AB09CD.f.s + +src/SLICOT-Reference/src/AB09CX.o: src/SLICOT-Reference/src/AB09CX.f.o +.PHONY : src/SLICOT-Reference/src/AB09CX.o + +# target to build an object file +src/SLICOT-Reference/src/AB09CX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09CX.f.o +.PHONY : src/SLICOT-Reference/src/AB09CX.f.o + +src/SLICOT-Reference/src/AB09CX.i: src/SLICOT-Reference/src/AB09CX.f.i +.PHONY : src/SLICOT-Reference/src/AB09CX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09CX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09CX.f.i +.PHONY : src/SLICOT-Reference/src/AB09CX.f.i + +src/SLICOT-Reference/src/AB09CX.s: src/SLICOT-Reference/src/AB09CX.f.s +.PHONY : src/SLICOT-Reference/src/AB09CX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09CX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09CX.f.s +.PHONY : src/SLICOT-Reference/src/AB09CX.f.s + +src/SLICOT-Reference/src/AB09DD.o: src/SLICOT-Reference/src/AB09DD.f.o +.PHONY : src/SLICOT-Reference/src/AB09DD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09DD.f.o +.PHONY : src/SLICOT-Reference/src/AB09DD.f.o + +src/SLICOT-Reference/src/AB09DD.i: src/SLICOT-Reference/src/AB09DD.f.i +.PHONY : src/SLICOT-Reference/src/AB09DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09DD.f.i +.PHONY : src/SLICOT-Reference/src/AB09DD.f.i + +src/SLICOT-Reference/src/AB09DD.s: src/SLICOT-Reference/src/AB09DD.f.s +.PHONY : src/SLICOT-Reference/src/AB09DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09DD.f.s +.PHONY : src/SLICOT-Reference/src/AB09DD.f.s + +src/SLICOT-Reference/src/AB09ED.o: src/SLICOT-Reference/src/AB09ED.f.o +.PHONY : src/SLICOT-Reference/src/AB09ED.o + +# target to build an object file +src/SLICOT-Reference/src/AB09ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ED.f.o +.PHONY : src/SLICOT-Reference/src/AB09ED.f.o + +src/SLICOT-Reference/src/AB09ED.i: src/SLICOT-Reference/src/AB09ED.f.i +.PHONY : src/SLICOT-Reference/src/AB09ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ED.f.i +.PHONY : src/SLICOT-Reference/src/AB09ED.f.i + +src/SLICOT-Reference/src/AB09ED.s: src/SLICOT-Reference/src/AB09ED.f.s +.PHONY : src/SLICOT-Reference/src/AB09ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ED.f.s +.PHONY : src/SLICOT-Reference/src/AB09ED.f.s + +src/SLICOT-Reference/src/AB09FD.o: src/SLICOT-Reference/src/AB09FD.f.o +.PHONY : src/SLICOT-Reference/src/AB09FD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09FD.f.o +.PHONY : src/SLICOT-Reference/src/AB09FD.f.o + +src/SLICOT-Reference/src/AB09FD.i: src/SLICOT-Reference/src/AB09FD.f.i +.PHONY : src/SLICOT-Reference/src/AB09FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09FD.f.i +.PHONY : src/SLICOT-Reference/src/AB09FD.f.i + +src/SLICOT-Reference/src/AB09FD.s: src/SLICOT-Reference/src/AB09FD.f.s +.PHONY : src/SLICOT-Reference/src/AB09FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09FD.f.s +.PHONY : src/SLICOT-Reference/src/AB09FD.f.s + +src/SLICOT-Reference/src/AB09GD.o: src/SLICOT-Reference/src/AB09GD.f.o +.PHONY : src/SLICOT-Reference/src/AB09GD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09GD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09GD.f.o +.PHONY : src/SLICOT-Reference/src/AB09GD.f.o + +src/SLICOT-Reference/src/AB09GD.i: src/SLICOT-Reference/src/AB09GD.f.i +.PHONY : src/SLICOT-Reference/src/AB09GD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09GD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09GD.f.i +.PHONY : src/SLICOT-Reference/src/AB09GD.f.i + +src/SLICOT-Reference/src/AB09GD.s: src/SLICOT-Reference/src/AB09GD.f.s +.PHONY : src/SLICOT-Reference/src/AB09GD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09GD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09GD.f.s +.PHONY : src/SLICOT-Reference/src/AB09GD.f.s + +src/SLICOT-Reference/src/AB09HD.o: src/SLICOT-Reference/src/AB09HD.f.o +.PHONY : src/SLICOT-Reference/src/AB09HD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HD.f.o +.PHONY : src/SLICOT-Reference/src/AB09HD.f.o + +src/SLICOT-Reference/src/AB09HD.i: src/SLICOT-Reference/src/AB09HD.f.i +.PHONY : src/SLICOT-Reference/src/AB09HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HD.f.i +.PHONY : src/SLICOT-Reference/src/AB09HD.f.i + +src/SLICOT-Reference/src/AB09HD.s: src/SLICOT-Reference/src/AB09HD.f.s +.PHONY : src/SLICOT-Reference/src/AB09HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HD.f.s +.PHONY : src/SLICOT-Reference/src/AB09HD.f.s + +src/SLICOT-Reference/src/AB09HX.o: src/SLICOT-Reference/src/AB09HX.f.o +.PHONY : src/SLICOT-Reference/src/AB09HX.o + +# target to build an object file +src/SLICOT-Reference/src/AB09HX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HX.f.o +.PHONY : src/SLICOT-Reference/src/AB09HX.f.o + +src/SLICOT-Reference/src/AB09HX.i: src/SLICOT-Reference/src/AB09HX.f.i +.PHONY : src/SLICOT-Reference/src/AB09HX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09HX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HX.f.i +.PHONY : src/SLICOT-Reference/src/AB09HX.f.i + +src/SLICOT-Reference/src/AB09HX.s: src/SLICOT-Reference/src/AB09HX.f.s +.PHONY : src/SLICOT-Reference/src/AB09HX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09HX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HX.f.s +.PHONY : src/SLICOT-Reference/src/AB09HX.f.s + +src/SLICOT-Reference/src/AB09HY.o: src/SLICOT-Reference/src/AB09HY.f.o +.PHONY : src/SLICOT-Reference/src/AB09HY.o + +# target to build an object file +src/SLICOT-Reference/src/AB09HY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HY.f.o +.PHONY : src/SLICOT-Reference/src/AB09HY.f.o + +src/SLICOT-Reference/src/AB09HY.i: src/SLICOT-Reference/src/AB09HY.f.i +.PHONY : src/SLICOT-Reference/src/AB09HY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09HY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HY.f.i +.PHONY : src/SLICOT-Reference/src/AB09HY.f.i + +src/SLICOT-Reference/src/AB09HY.s: src/SLICOT-Reference/src/AB09HY.f.s +.PHONY : src/SLICOT-Reference/src/AB09HY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09HY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HY.f.s +.PHONY : src/SLICOT-Reference/src/AB09HY.f.s + +src/SLICOT-Reference/src/AB09ID.o: src/SLICOT-Reference/src/AB09ID.f.o +.PHONY : src/SLICOT-Reference/src/AB09ID.o + +# target to build an object file +src/SLICOT-Reference/src/AB09ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ID.f.o +.PHONY : src/SLICOT-Reference/src/AB09ID.f.o + +src/SLICOT-Reference/src/AB09ID.i: src/SLICOT-Reference/src/AB09ID.f.i +.PHONY : src/SLICOT-Reference/src/AB09ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ID.f.i +.PHONY : src/SLICOT-Reference/src/AB09ID.f.i + +src/SLICOT-Reference/src/AB09ID.s: src/SLICOT-Reference/src/AB09ID.f.s +.PHONY : src/SLICOT-Reference/src/AB09ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ID.f.s +.PHONY : src/SLICOT-Reference/src/AB09ID.f.s + +src/SLICOT-Reference/src/AB09IX.o: src/SLICOT-Reference/src/AB09IX.f.o +.PHONY : src/SLICOT-Reference/src/AB09IX.o + +# target to build an object file +src/SLICOT-Reference/src/AB09IX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09IX.f.o +.PHONY : src/SLICOT-Reference/src/AB09IX.f.o + +src/SLICOT-Reference/src/AB09IX.i: src/SLICOT-Reference/src/AB09IX.f.i +.PHONY : src/SLICOT-Reference/src/AB09IX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09IX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09IX.f.i +.PHONY : src/SLICOT-Reference/src/AB09IX.f.i + +src/SLICOT-Reference/src/AB09IX.s: src/SLICOT-Reference/src/AB09IX.f.s +.PHONY : src/SLICOT-Reference/src/AB09IX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09IX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09IX.f.s +.PHONY : src/SLICOT-Reference/src/AB09IX.f.s + +src/SLICOT-Reference/src/AB09IY.o: src/SLICOT-Reference/src/AB09IY.f.o +.PHONY : src/SLICOT-Reference/src/AB09IY.o + +# target to build an object file +src/SLICOT-Reference/src/AB09IY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09IY.f.o +.PHONY : src/SLICOT-Reference/src/AB09IY.f.o + +src/SLICOT-Reference/src/AB09IY.i: src/SLICOT-Reference/src/AB09IY.f.i +.PHONY : src/SLICOT-Reference/src/AB09IY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09IY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09IY.f.i +.PHONY : src/SLICOT-Reference/src/AB09IY.f.i + +src/SLICOT-Reference/src/AB09IY.s: src/SLICOT-Reference/src/AB09IY.f.s +.PHONY : src/SLICOT-Reference/src/AB09IY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09IY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09IY.f.s +.PHONY : src/SLICOT-Reference/src/AB09IY.f.s + +src/SLICOT-Reference/src/AB09JD.o: src/SLICOT-Reference/src/AB09JD.f.o +.PHONY : src/SLICOT-Reference/src/AB09JD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09JD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JD.f.o +.PHONY : src/SLICOT-Reference/src/AB09JD.f.o + +src/SLICOT-Reference/src/AB09JD.i: src/SLICOT-Reference/src/AB09JD.f.i +.PHONY : src/SLICOT-Reference/src/AB09JD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09JD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JD.f.i +.PHONY : src/SLICOT-Reference/src/AB09JD.f.i + +src/SLICOT-Reference/src/AB09JD.s: src/SLICOT-Reference/src/AB09JD.f.s +.PHONY : src/SLICOT-Reference/src/AB09JD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09JD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JD.f.s +.PHONY : src/SLICOT-Reference/src/AB09JD.f.s + +src/SLICOT-Reference/src/AB09JV.o: src/SLICOT-Reference/src/AB09JV.f.o +.PHONY : src/SLICOT-Reference/src/AB09JV.o + +# target to build an object file +src/SLICOT-Reference/src/AB09JV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JV.f.o +.PHONY : src/SLICOT-Reference/src/AB09JV.f.o + +src/SLICOT-Reference/src/AB09JV.i: src/SLICOT-Reference/src/AB09JV.f.i +.PHONY : src/SLICOT-Reference/src/AB09JV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09JV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JV.f.i +.PHONY : src/SLICOT-Reference/src/AB09JV.f.i + +src/SLICOT-Reference/src/AB09JV.s: src/SLICOT-Reference/src/AB09JV.f.s +.PHONY : src/SLICOT-Reference/src/AB09JV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09JV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JV.f.s +.PHONY : src/SLICOT-Reference/src/AB09JV.f.s + +src/SLICOT-Reference/src/AB09JW.o: src/SLICOT-Reference/src/AB09JW.f.o +.PHONY : src/SLICOT-Reference/src/AB09JW.o + +# target to build an object file +src/SLICOT-Reference/src/AB09JW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JW.f.o +.PHONY : src/SLICOT-Reference/src/AB09JW.f.o + +src/SLICOT-Reference/src/AB09JW.i: src/SLICOT-Reference/src/AB09JW.f.i +.PHONY : src/SLICOT-Reference/src/AB09JW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09JW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JW.f.i +.PHONY : src/SLICOT-Reference/src/AB09JW.f.i + +src/SLICOT-Reference/src/AB09JW.s: src/SLICOT-Reference/src/AB09JW.f.s +.PHONY : src/SLICOT-Reference/src/AB09JW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09JW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JW.f.s +.PHONY : src/SLICOT-Reference/src/AB09JW.f.s + +src/SLICOT-Reference/src/AB09JX.o: src/SLICOT-Reference/src/AB09JX.f.o +.PHONY : src/SLICOT-Reference/src/AB09JX.o + +# target to build an object file +src/SLICOT-Reference/src/AB09JX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JX.f.o +.PHONY : src/SLICOT-Reference/src/AB09JX.f.o + +src/SLICOT-Reference/src/AB09JX.i: src/SLICOT-Reference/src/AB09JX.f.i +.PHONY : src/SLICOT-Reference/src/AB09JX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09JX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JX.f.i +.PHONY : src/SLICOT-Reference/src/AB09JX.f.i + +src/SLICOT-Reference/src/AB09JX.s: src/SLICOT-Reference/src/AB09JX.f.s +.PHONY : src/SLICOT-Reference/src/AB09JX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09JX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JX.f.s +.PHONY : src/SLICOT-Reference/src/AB09JX.f.s + +src/SLICOT-Reference/src/AB09KD.o: src/SLICOT-Reference/src/AB09KD.f.o +.PHONY : src/SLICOT-Reference/src/AB09KD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09KD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09KD.f.o +.PHONY : src/SLICOT-Reference/src/AB09KD.f.o + +src/SLICOT-Reference/src/AB09KD.i: src/SLICOT-Reference/src/AB09KD.f.i +.PHONY : src/SLICOT-Reference/src/AB09KD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09KD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09KD.f.i +.PHONY : src/SLICOT-Reference/src/AB09KD.f.i + +src/SLICOT-Reference/src/AB09KD.s: src/SLICOT-Reference/src/AB09KD.f.s +.PHONY : src/SLICOT-Reference/src/AB09KD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09KD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09KD.f.s +.PHONY : src/SLICOT-Reference/src/AB09KD.f.s + +src/SLICOT-Reference/src/AB09KX.o: src/SLICOT-Reference/src/AB09KX.f.o +.PHONY : src/SLICOT-Reference/src/AB09KX.o + +# target to build an object file +src/SLICOT-Reference/src/AB09KX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09KX.f.o +.PHONY : src/SLICOT-Reference/src/AB09KX.f.o + +src/SLICOT-Reference/src/AB09KX.i: src/SLICOT-Reference/src/AB09KX.f.i +.PHONY : src/SLICOT-Reference/src/AB09KX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09KX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09KX.f.i +.PHONY : src/SLICOT-Reference/src/AB09KX.f.i + +src/SLICOT-Reference/src/AB09KX.s: src/SLICOT-Reference/src/AB09KX.f.s +.PHONY : src/SLICOT-Reference/src/AB09KX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09KX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09KX.f.s +.PHONY : src/SLICOT-Reference/src/AB09KX.f.s + +src/SLICOT-Reference/src/AB09MD.o: src/SLICOT-Reference/src/AB09MD.f.o +.PHONY : src/SLICOT-Reference/src/AB09MD.o + +# target to build an object file +src/SLICOT-Reference/src/AB09MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09MD.f.o +.PHONY : src/SLICOT-Reference/src/AB09MD.f.o + +src/SLICOT-Reference/src/AB09MD.i: src/SLICOT-Reference/src/AB09MD.f.i +.PHONY : src/SLICOT-Reference/src/AB09MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09MD.f.i +.PHONY : src/SLICOT-Reference/src/AB09MD.f.i + +src/SLICOT-Reference/src/AB09MD.s: src/SLICOT-Reference/src/AB09MD.f.s +.PHONY : src/SLICOT-Reference/src/AB09MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09MD.f.s +.PHONY : src/SLICOT-Reference/src/AB09MD.f.s + +src/SLICOT-Reference/src/AB09ND.o: src/SLICOT-Reference/src/AB09ND.f.o +.PHONY : src/SLICOT-Reference/src/AB09ND.o + +# target to build an object file +src/SLICOT-Reference/src/AB09ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ND.f.o +.PHONY : src/SLICOT-Reference/src/AB09ND.f.o + +src/SLICOT-Reference/src/AB09ND.i: src/SLICOT-Reference/src/AB09ND.f.i +.PHONY : src/SLICOT-Reference/src/AB09ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB09ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ND.f.i +.PHONY : src/SLICOT-Reference/src/AB09ND.f.i + +src/SLICOT-Reference/src/AB09ND.s: src/SLICOT-Reference/src/AB09ND.f.s +.PHONY : src/SLICOT-Reference/src/AB09ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB09ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ND.f.s +.PHONY : src/SLICOT-Reference/src/AB09ND.f.s + +src/SLICOT-Reference/src/AB13AD.o: src/SLICOT-Reference/src/AB13AD.f.o +.PHONY : src/SLICOT-Reference/src/AB13AD.o + +# target to build an object file +src/SLICOT-Reference/src/AB13AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13AD.f.o +.PHONY : src/SLICOT-Reference/src/AB13AD.f.o + +src/SLICOT-Reference/src/AB13AD.i: src/SLICOT-Reference/src/AB13AD.f.i +.PHONY : src/SLICOT-Reference/src/AB13AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13AD.f.i +.PHONY : src/SLICOT-Reference/src/AB13AD.f.i + +src/SLICOT-Reference/src/AB13AD.s: src/SLICOT-Reference/src/AB13AD.f.s +.PHONY : src/SLICOT-Reference/src/AB13AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13AD.f.s +.PHONY : src/SLICOT-Reference/src/AB13AD.f.s + +src/SLICOT-Reference/src/AB13AX.o: src/SLICOT-Reference/src/AB13AX.f.o +.PHONY : src/SLICOT-Reference/src/AB13AX.o + +# target to build an object file +src/SLICOT-Reference/src/AB13AX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13AX.f.o +.PHONY : src/SLICOT-Reference/src/AB13AX.f.o + +src/SLICOT-Reference/src/AB13AX.i: src/SLICOT-Reference/src/AB13AX.f.i +.PHONY : src/SLICOT-Reference/src/AB13AX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13AX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13AX.f.i +.PHONY : src/SLICOT-Reference/src/AB13AX.f.i + +src/SLICOT-Reference/src/AB13AX.s: src/SLICOT-Reference/src/AB13AX.f.s +.PHONY : src/SLICOT-Reference/src/AB13AX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13AX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13AX.f.s +.PHONY : src/SLICOT-Reference/src/AB13AX.f.s + +src/SLICOT-Reference/src/AB13BD.o: src/SLICOT-Reference/src/AB13BD.f.o +.PHONY : src/SLICOT-Reference/src/AB13BD.o + +# target to build an object file +src/SLICOT-Reference/src/AB13BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13BD.f.o +.PHONY : src/SLICOT-Reference/src/AB13BD.f.o + +src/SLICOT-Reference/src/AB13BD.i: src/SLICOT-Reference/src/AB13BD.f.i +.PHONY : src/SLICOT-Reference/src/AB13BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13BD.f.i +.PHONY : src/SLICOT-Reference/src/AB13BD.f.i + +src/SLICOT-Reference/src/AB13BD.s: src/SLICOT-Reference/src/AB13BD.f.s +.PHONY : src/SLICOT-Reference/src/AB13BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13BD.f.s +.PHONY : src/SLICOT-Reference/src/AB13BD.f.s + +src/SLICOT-Reference/src/AB13CD.o: src/SLICOT-Reference/src/AB13CD.f.o +.PHONY : src/SLICOT-Reference/src/AB13CD.o + +# target to build an object file +src/SLICOT-Reference/src/AB13CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13CD.f.o +.PHONY : src/SLICOT-Reference/src/AB13CD.f.o + +src/SLICOT-Reference/src/AB13CD.i: src/SLICOT-Reference/src/AB13CD.f.i +.PHONY : src/SLICOT-Reference/src/AB13CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13CD.f.i +.PHONY : src/SLICOT-Reference/src/AB13CD.f.i + +src/SLICOT-Reference/src/AB13CD.s: src/SLICOT-Reference/src/AB13CD.f.s +.PHONY : src/SLICOT-Reference/src/AB13CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13CD.f.s +.PHONY : src/SLICOT-Reference/src/AB13CD.f.s + +src/SLICOT-Reference/src/AB13DD.o: src/SLICOT-Reference/src/AB13DD.f.o +.PHONY : src/SLICOT-Reference/src/AB13DD.o + +# target to build an object file +src/SLICOT-Reference/src/AB13DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13DD.f.o +.PHONY : src/SLICOT-Reference/src/AB13DD.f.o + +src/SLICOT-Reference/src/AB13DD.i: src/SLICOT-Reference/src/AB13DD.f.i +.PHONY : src/SLICOT-Reference/src/AB13DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13DD.f.i +.PHONY : src/SLICOT-Reference/src/AB13DD.f.i + +src/SLICOT-Reference/src/AB13DD.s: src/SLICOT-Reference/src/AB13DD.f.s +.PHONY : src/SLICOT-Reference/src/AB13DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13DD.f.s +.PHONY : src/SLICOT-Reference/src/AB13DD.f.s + +src/SLICOT-Reference/src/AB13DX.o: src/SLICOT-Reference/src/AB13DX.f.o +.PHONY : src/SLICOT-Reference/src/AB13DX.o + +# target to build an object file +src/SLICOT-Reference/src/AB13DX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13DX.f.o +.PHONY : src/SLICOT-Reference/src/AB13DX.f.o + +src/SLICOT-Reference/src/AB13DX.i: src/SLICOT-Reference/src/AB13DX.f.i +.PHONY : src/SLICOT-Reference/src/AB13DX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13DX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13DX.f.i +.PHONY : src/SLICOT-Reference/src/AB13DX.f.i + +src/SLICOT-Reference/src/AB13DX.s: src/SLICOT-Reference/src/AB13DX.f.s +.PHONY : src/SLICOT-Reference/src/AB13DX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13DX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13DX.f.s +.PHONY : src/SLICOT-Reference/src/AB13DX.f.s + +src/SLICOT-Reference/src/AB13ED.o: src/SLICOT-Reference/src/AB13ED.f.o +.PHONY : src/SLICOT-Reference/src/AB13ED.o + +# target to build an object file +src/SLICOT-Reference/src/AB13ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13ED.f.o +.PHONY : src/SLICOT-Reference/src/AB13ED.f.o + +src/SLICOT-Reference/src/AB13ED.i: src/SLICOT-Reference/src/AB13ED.f.i +.PHONY : src/SLICOT-Reference/src/AB13ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13ED.f.i +.PHONY : src/SLICOT-Reference/src/AB13ED.f.i + +src/SLICOT-Reference/src/AB13ED.s: src/SLICOT-Reference/src/AB13ED.f.s +.PHONY : src/SLICOT-Reference/src/AB13ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13ED.f.s +.PHONY : src/SLICOT-Reference/src/AB13ED.f.s + +src/SLICOT-Reference/src/AB13FD.o: src/SLICOT-Reference/src/AB13FD.f.o +.PHONY : src/SLICOT-Reference/src/AB13FD.o + +# target to build an object file +src/SLICOT-Reference/src/AB13FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13FD.f.o +.PHONY : src/SLICOT-Reference/src/AB13FD.f.o + +src/SLICOT-Reference/src/AB13FD.i: src/SLICOT-Reference/src/AB13FD.f.i +.PHONY : src/SLICOT-Reference/src/AB13FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13FD.f.i +.PHONY : src/SLICOT-Reference/src/AB13FD.f.i + +src/SLICOT-Reference/src/AB13FD.s: src/SLICOT-Reference/src/AB13FD.f.s +.PHONY : src/SLICOT-Reference/src/AB13FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13FD.f.s +.PHONY : src/SLICOT-Reference/src/AB13FD.f.s + +src/SLICOT-Reference/src/AB13HD.o: src/SLICOT-Reference/src/AB13HD.f.o +.PHONY : src/SLICOT-Reference/src/AB13HD.o + +# target to build an object file +src/SLICOT-Reference/src/AB13HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13HD.f.o +.PHONY : src/SLICOT-Reference/src/AB13HD.f.o + +src/SLICOT-Reference/src/AB13HD.i: src/SLICOT-Reference/src/AB13HD.f.i +.PHONY : src/SLICOT-Reference/src/AB13HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13HD.f.i +.PHONY : src/SLICOT-Reference/src/AB13HD.f.i + +src/SLICOT-Reference/src/AB13HD.s: src/SLICOT-Reference/src/AB13HD.f.s +.PHONY : src/SLICOT-Reference/src/AB13HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13HD.f.s +.PHONY : src/SLICOT-Reference/src/AB13HD.f.s + +src/SLICOT-Reference/src/AB13ID.o: src/SLICOT-Reference/src/AB13ID.f.o +.PHONY : src/SLICOT-Reference/src/AB13ID.o + +# target to build an object file +src/SLICOT-Reference/src/AB13ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13ID.f.o +.PHONY : src/SLICOT-Reference/src/AB13ID.f.o + +src/SLICOT-Reference/src/AB13ID.i: src/SLICOT-Reference/src/AB13ID.f.i +.PHONY : src/SLICOT-Reference/src/AB13ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13ID.f.i +.PHONY : src/SLICOT-Reference/src/AB13ID.f.i + +src/SLICOT-Reference/src/AB13ID.s: src/SLICOT-Reference/src/AB13ID.f.s +.PHONY : src/SLICOT-Reference/src/AB13ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13ID.f.s +.PHONY : src/SLICOT-Reference/src/AB13ID.f.s + +src/SLICOT-Reference/src/AB13MD.o: src/SLICOT-Reference/src/AB13MD.f.o +.PHONY : src/SLICOT-Reference/src/AB13MD.o + +# target to build an object file +src/SLICOT-Reference/src/AB13MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13MD.f.o +.PHONY : src/SLICOT-Reference/src/AB13MD.f.o + +src/SLICOT-Reference/src/AB13MD.i: src/SLICOT-Reference/src/AB13MD.f.i +.PHONY : src/SLICOT-Reference/src/AB13MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB13MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13MD.f.i +.PHONY : src/SLICOT-Reference/src/AB13MD.f.i + +src/SLICOT-Reference/src/AB13MD.s: src/SLICOT-Reference/src/AB13MD.f.s +.PHONY : src/SLICOT-Reference/src/AB13MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB13MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13MD.f.s +.PHONY : src/SLICOT-Reference/src/AB13MD.f.s + +src/SLICOT-Reference/src/AB8NXZ.o: src/SLICOT-Reference/src/AB8NXZ.f.o +.PHONY : src/SLICOT-Reference/src/AB8NXZ.o + +# target to build an object file +src/SLICOT-Reference/src/AB8NXZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB8NXZ.f.o +.PHONY : src/SLICOT-Reference/src/AB8NXZ.f.o + +src/SLICOT-Reference/src/AB8NXZ.i: src/SLICOT-Reference/src/AB8NXZ.f.i +.PHONY : src/SLICOT-Reference/src/AB8NXZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AB8NXZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB8NXZ.f.i +.PHONY : src/SLICOT-Reference/src/AB8NXZ.f.i + +src/SLICOT-Reference/src/AB8NXZ.s: src/SLICOT-Reference/src/AB8NXZ.f.s +.PHONY : src/SLICOT-Reference/src/AB8NXZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AB8NXZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB8NXZ.f.s +.PHONY : src/SLICOT-Reference/src/AB8NXZ.f.s + +src/SLICOT-Reference/src/AG07BD.o: src/SLICOT-Reference/src/AG07BD.f.o +.PHONY : src/SLICOT-Reference/src/AG07BD.o + +# target to build an object file +src/SLICOT-Reference/src/AG07BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG07BD.f.o +.PHONY : src/SLICOT-Reference/src/AG07BD.f.o + +src/SLICOT-Reference/src/AG07BD.i: src/SLICOT-Reference/src/AG07BD.f.i +.PHONY : src/SLICOT-Reference/src/AG07BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AG07BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG07BD.f.i +.PHONY : src/SLICOT-Reference/src/AG07BD.f.i + +src/SLICOT-Reference/src/AG07BD.s: src/SLICOT-Reference/src/AG07BD.f.s +.PHONY : src/SLICOT-Reference/src/AG07BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AG07BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG07BD.f.s +.PHONY : src/SLICOT-Reference/src/AG07BD.f.s + +src/SLICOT-Reference/src/AG08BD.o: src/SLICOT-Reference/src/AG08BD.f.o +.PHONY : src/SLICOT-Reference/src/AG08BD.o + +# target to build an object file +src/SLICOT-Reference/src/AG08BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BD.f.o +.PHONY : src/SLICOT-Reference/src/AG08BD.f.o + +src/SLICOT-Reference/src/AG08BD.i: src/SLICOT-Reference/src/AG08BD.f.i +.PHONY : src/SLICOT-Reference/src/AG08BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AG08BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BD.f.i +.PHONY : src/SLICOT-Reference/src/AG08BD.f.i + +src/SLICOT-Reference/src/AG08BD.s: src/SLICOT-Reference/src/AG08BD.f.s +.PHONY : src/SLICOT-Reference/src/AG08BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AG08BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BD.f.s +.PHONY : src/SLICOT-Reference/src/AG08BD.f.s + +src/SLICOT-Reference/src/AG08BY.o: src/SLICOT-Reference/src/AG08BY.f.o +.PHONY : src/SLICOT-Reference/src/AG08BY.o + +# target to build an object file +src/SLICOT-Reference/src/AG08BY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BY.f.o +.PHONY : src/SLICOT-Reference/src/AG08BY.f.o + +src/SLICOT-Reference/src/AG08BY.i: src/SLICOT-Reference/src/AG08BY.f.i +.PHONY : src/SLICOT-Reference/src/AG08BY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AG08BY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BY.f.i +.PHONY : src/SLICOT-Reference/src/AG08BY.f.i + +src/SLICOT-Reference/src/AG08BY.s: src/SLICOT-Reference/src/AG08BY.f.s +.PHONY : src/SLICOT-Reference/src/AG08BY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AG08BY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BY.f.s +.PHONY : src/SLICOT-Reference/src/AG08BY.f.s + +src/SLICOT-Reference/src/AG08BZ.o: src/SLICOT-Reference/src/AG08BZ.f.o +.PHONY : src/SLICOT-Reference/src/AG08BZ.o + +# target to build an object file +src/SLICOT-Reference/src/AG08BZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BZ.f.o +.PHONY : src/SLICOT-Reference/src/AG08BZ.f.o + +src/SLICOT-Reference/src/AG08BZ.i: src/SLICOT-Reference/src/AG08BZ.f.i +.PHONY : src/SLICOT-Reference/src/AG08BZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AG08BZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BZ.f.i +.PHONY : src/SLICOT-Reference/src/AG08BZ.f.i + +src/SLICOT-Reference/src/AG08BZ.s: src/SLICOT-Reference/src/AG08BZ.f.s +.PHONY : src/SLICOT-Reference/src/AG08BZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AG08BZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BZ.f.s +.PHONY : src/SLICOT-Reference/src/AG08BZ.f.s + +src/SLICOT-Reference/src/AG8BYZ.o: src/SLICOT-Reference/src/AG8BYZ.f.o +.PHONY : src/SLICOT-Reference/src/AG8BYZ.o + +# target to build an object file +src/SLICOT-Reference/src/AG8BYZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG8BYZ.f.o +.PHONY : src/SLICOT-Reference/src/AG8BYZ.f.o + +src/SLICOT-Reference/src/AG8BYZ.i: src/SLICOT-Reference/src/AG8BYZ.f.i +.PHONY : src/SLICOT-Reference/src/AG8BYZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/AG8BYZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG8BYZ.f.i +.PHONY : src/SLICOT-Reference/src/AG8BYZ.f.i + +src/SLICOT-Reference/src/AG8BYZ.s: src/SLICOT-Reference/src/AG8BYZ.f.s +.PHONY : src/SLICOT-Reference/src/AG8BYZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/AG8BYZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG8BYZ.f.s +.PHONY : src/SLICOT-Reference/src/AG8BYZ.f.s + +src/SLICOT-Reference/src/BB01AD.o: src/SLICOT-Reference/src/BB01AD.f.o +.PHONY : src/SLICOT-Reference/src/BB01AD.o + +# target to build an object file +src/SLICOT-Reference/src/BB01AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB01AD.f.o +.PHONY : src/SLICOT-Reference/src/BB01AD.f.o + +src/SLICOT-Reference/src/BB01AD.i: src/SLICOT-Reference/src/BB01AD.f.i +.PHONY : src/SLICOT-Reference/src/BB01AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/BB01AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB01AD.f.i +.PHONY : src/SLICOT-Reference/src/BB01AD.f.i + +src/SLICOT-Reference/src/BB01AD.s: src/SLICOT-Reference/src/BB01AD.f.s +.PHONY : src/SLICOT-Reference/src/BB01AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/BB01AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB01AD.f.s +.PHONY : src/SLICOT-Reference/src/BB01AD.f.s + +src/SLICOT-Reference/src/BB02AD.o: src/SLICOT-Reference/src/BB02AD.f.o +.PHONY : src/SLICOT-Reference/src/BB02AD.o + +# target to build an object file +src/SLICOT-Reference/src/BB02AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB02AD.f.o +.PHONY : src/SLICOT-Reference/src/BB02AD.f.o + +src/SLICOT-Reference/src/BB02AD.i: src/SLICOT-Reference/src/BB02AD.f.i +.PHONY : src/SLICOT-Reference/src/BB02AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/BB02AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB02AD.f.i +.PHONY : src/SLICOT-Reference/src/BB02AD.f.i + +src/SLICOT-Reference/src/BB02AD.s: src/SLICOT-Reference/src/BB02AD.f.s +.PHONY : src/SLICOT-Reference/src/BB02AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/BB02AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB02AD.f.s +.PHONY : src/SLICOT-Reference/src/BB02AD.f.s + +src/SLICOT-Reference/src/BB03AD.o: src/SLICOT-Reference/src/BB03AD.f.o +.PHONY : src/SLICOT-Reference/src/BB03AD.o + +# target to build an object file +src/SLICOT-Reference/src/BB03AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB03AD.f.o +.PHONY : src/SLICOT-Reference/src/BB03AD.f.o + +src/SLICOT-Reference/src/BB03AD.i: src/SLICOT-Reference/src/BB03AD.f.i +.PHONY : src/SLICOT-Reference/src/BB03AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/BB03AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB03AD.f.i +.PHONY : src/SLICOT-Reference/src/BB03AD.f.i + +src/SLICOT-Reference/src/BB03AD.s: src/SLICOT-Reference/src/BB03AD.f.s +.PHONY : src/SLICOT-Reference/src/BB03AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/BB03AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB03AD.f.s +.PHONY : src/SLICOT-Reference/src/BB03AD.f.s + +src/SLICOT-Reference/src/BB04AD.o: src/SLICOT-Reference/src/BB04AD.f.o +.PHONY : src/SLICOT-Reference/src/BB04AD.o + +# target to build an object file +src/SLICOT-Reference/src/BB04AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB04AD.f.o +.PHONY : src/SLICOT-Reference/src/BB04AD.f.o + +src/SLICOT-Reference/src/BB04AD.i: src/SLICOT-Reference/src/BB04AD.f.i +.PHONY : src/SLICOT-Reference/src/BB04AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/BB04AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB04AD.f.i +.PHONY : src/SLICOT-Reference/src/BB04AD.f.i + +src/SLICOT-Reference/src/BB04AD.s: src/SLICOT-Reference/src/BB04AD.f.s +.PHONY : src/SLICOT-Reference/src/BB04AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/BB04AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB04AD.f.s +.PHONY : src/SLICOT-Reference/src/BB04AD.f.s + +src/SLICOT-Reference/src/BD01AD.o: src/SLICOT-Reference/src/BD01AD.f.o +.PHONY : src/SLICOT-Reference/src/BD01AD.o + +# target to build an object file +src/SLICOT-Reference/src/BD01AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BD01AD.f.o +.PHONY : src/SLICOT-Reference/src/BD01AD.f.o + +src/SLICOT-Reference/src/BD01AD.i: src/SLICOT-Reference/src/BD01AD.f.i +.PHONY : src/SLICOT-Reference/src/BD01AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/BD01AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BD01AD.f.i +.PHONY : src/SLICOT-Reference/src/BD01AD.f.i + +src/SLICOT-Reference/src/BD01AD.s: src/SLICOT-Reference/src/BD01AD.f.s +.PHONY : src/SLICOT-Reference/src/BD01AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/BD01AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BD01AD.f.s +.PHONY : src/SLICOT-Reference/src/BD01AD.f.s + +src/SLICOT-Reference/src/BD02AD.o: src/SLICOT-Reference/src/BD02AD.f.o +.PHONY : src/SLICOT-Reference/src/BD02AD.o + +# target to build an object file +src/SLICOT-Reference/src/BD02AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BD02AD.f.o +.PHONY : src/SLICOT-Reference/src/BD02AD.f.o + +src/SLICOT-Reference/src/BD02AD.i: src/SLICOT-Reference/src/BD02AD.f.i +.PHONY : src/SLICOT-Reference/src/BD02AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/BD02AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BD02AD.f.i +.PHONY : src/SLICOT-Reference/src/BD02AD.f.i + +src/SLICOT-Reference/src/BD02AD.s: src/SLICOT-Reference/src/BD02AD.f.s +.PHONY : src/SLICOT-Reference/src/BD02AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/BD02AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BD02AD.f.s +.PHONY : src/SLICOT-Reference/src/BD02AD.f.s + +src/SLICOT-Reference/src/DE01OD.o: src/SLICOT-Reference/src/DE01OD.f.o +.PHONY : src/SLICOT-Reference/src/DE01OD.o + +# target to build an object file +src/SLICOT-Reference/src/DE01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DE01OD.f.o +.PHONY : src/SLICOT-Reference/src/DE01OD.f.o + +src/SLICOT-Reference/src/DE01OD.i: src/SLICOT-Reference/src/DE01OD.f.i +.PHONY : src/SLICOT-Reference/src/DE01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/DE01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DE01OD.f.i +.PHONY : src/SLICOT-Reference/src/DE01OD.f.i + +src/SLICOT-Reference/src/DE01OD.s: src/SLICOT-Reference/src/DE01OD.f.s +.PHONY : src/SLICOT-Reference/src/DE01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/DE01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DE01OD.f.s +.PHONY : src/SLICOT-Reference/src/DE01OD.f.s + +src/SLICOT-Reference/src/DE01PD.o: src/SLICOT-Reference/src/DE01PD.f.o +.PHONY : src/SLICOT-Reference/src/DE01PD.o + +# target to build an object file +src/SLICOT-Reference/src/DE01PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DE01PD.f.o +.PHONY : src/SLICOT-Reference/src/DE01PD.f.o + +src/SLICOT-Reference/src/DE01PD.i: src/SLICOT-Reference/src/DE01PD.f.i +.PHONY : src/SLICOT-Reference/src/DE01PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/DE01PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DE01PD.f.i +.PHONY : src/SLICOT-Reference/src/DE01PD.f.i + +src/SLICOT-Reference/src/DE01PD.s: src/SLICOT-Reference/src/DE01PD.f.s +.PHONY : src/SLICOT-Reference/src/DE01PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/DE01PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DE01PD.f.s +.PHONY : src/SLICOT-Reference/src/DE01PD.f.s + +src/SLICOT-Reference/src/DF01MD.o: src/SLICOT-Reference/src/DF01MD.f.o +.PHONY : src/SLICOT-Reference/src/DF01MD.o + +# target to build an object file +src/SLICOT-Reference/src/DF01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DF01MD.f.o +.PHONY : src/SLICOT-Reference/src/DF01MD.f.o + +src/SLICOT-Reference/src/DF01MD.i: src/SLICOT-Reference/src/DF01MD.f.i +.PHONY : src/SLICOT-Reference/src/DF01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/DF01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DF01MD.f.i +.PHONY : src/SLICOT-Reference/src/DF01MD.f.i + +src/SLICOT-Reference/src/DF01MD.s: src/SLICOT-Reference/src/DF01MD.f.s +.PHONY : src/SLICOT-Reference/src/DF01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/DF01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DF01MD.f.s +.PHONY : src/SLICOT-Reference/src/DF01MD.f.s + +src/SLICOT-Reference/src/DG01MD.o: src/SLICOT-Reference/src/DG01MD.f.o +.PHONY : src/SLICOT-Reference/src/DG01MD.o + +# target to build an object file +src/SLICOT-Reference/src/DG01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01MD.f.o +.PHONY : src/SLICOT-Reference/src/DG01MD.f.o + +src/SLICOT-Reference/src/DG01MD.i: src/SLICOT-Reference/src/DG01MD.f.i +.PHONY : src/SLICOT-Reference/src/DG01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/DG01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01MD.f.i +.PHONY : src/SLICOT-Reference/src/DG01MD.f.i + +src/SLICOT-Reference/src/DG01MD.s: src/SLICOT-Reference/src/DG01MD.f.s +.PHONY : src/SLICOT-Reference/src/DG01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/DG01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01MD.f.s +.PHONY : src/SLICOT-Reference/src/DG01MD.f.s + +src/SLICOT-Reference/src/DG01ND.o: src/SLICOT-Reference/src/DG01ND.f.o +.PHONY : src/SLICOT-Reference/src/DG01ND.o + +# target to build an object file +src/SLICOT-Reference/src/DG01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01ND.f.o +.PHONY : src/SLICOT-Reference/src/DG01ND.f.o + +src/SLICOT-Reference/src/DG01ND.i: src/SLICOT-Reference/src/DG01ND.f.i +.PHONY : src/SLICOT-Reference/src/DG01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/DG01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01ND.f.i +.PHONY : src/SLICOT-Reference/src/DG01ND.f.i + +src/SLICOT-Reference/src/DG01ND.s: src/SLICOT-Reference/src/DG01ND.f.s +.PHONY : src/SLICOT-Reference/src/DG01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/DG01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01ND.f.s +.PHONY : src/SLICOT-Reference/src/DG01ND.f.s + +src/SLICOT-Reference/src/DG01NY.o: src/SLICOT-Reference/src/DG01NY.f.o +.PHONY : src/SLICOT-Reference/src/DG01NY.o + +# target to build an object file +src/SLICOT-Reference/src/DG01NY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01NY.f.o +.PHONY : src/SLICOT-Reference/src/DG01NY.f.o + +src/SLICOT-Reference/src/DG01NY.i: src/SLICOT-Reference/src/DG01NY.f.i +.PHONY : src/SLICOT-Reference/src/DG01NY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/DG01NY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01NY.f.i +.PHONY : src/SLICOT-Reference/src/DG01NY.f.i + +src/SLICOT-Reference/src/DG01NY.s: src/SLICOT-Reference/src/DG01NY.f.s +.PHONY : src/SLICOT-Reference/src/DG01NY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/DG01NY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01NY.f.s +.PHONY : src/SLICOT-Reference/src/DG01NY.f.s + +src/SLICOT-Reference/src/DG01OD.o: src/SLICOT-Reference/src/DG01OD.f.o +.PHONY : src/SLICOT-Reference/src/DG01OD.o + +# target to build an object file +src/SLICOT-Reference/src/DG01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01OD.f.o +.PHONY : src/SLICOT-Reference/src/DG01OD.f.o + +src/SLICOT-Reference/src/DG01OD.i: src/SLICOT-Reference/src/DG01OD.f.i +.PHONY : src/SLICOT-Reference/src/DG01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/DG01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01OD.f.i +.PHONY : src/SLICOT-Reference/src/DG01OD.f.i + +src/SLICOT-Reference/src/DG01OD.s: src/SLICOT-Reference/src/DG01OD.f.s +.PHONY : src/SLICOT-Reference/src/DG01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/DG01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01OD.f.s +.PHONY : src/SLICOT-Reference/src/DG01OD.f.s + +src/SLICOT-Reference/src/DK01MD.o: src/SLICOT-Reference/src/DK01MD.f.o +.PHONY : src/SLICOT-Reference/src/DK01MD.o + +# target to build an object file +src/SLICOT-Reference/src/DK01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DK01MD.f.o +.PHONY : src/SLICOT-Reference/src/DK01MD.f.o + +src/SLICOT-Reference/src/DK01MD.i: src/SLICOT-Reference/src/DK01MD.f.i +.PHONY : src/SLICOT-Reference/src/DK01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/DK01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DK01MD.f.i +.PHONY : src/SLICOT-Reference/src/DK01MD.f.i + +src/SLICOT-Reference/src/DK01MD.s: src/SLICOT-Reference/src/DK01MD.f.s +.PHONY : src/SLICOT-Reference/src/DK01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/DK01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DK01MD.f.s +.PHONY : src/SLICOT-Reference/src/DK01MD.f.s + +src/SLICOT-Reference/src/FB01QD.o: src/SLICOT-Reference/src/FB01QD.f.o +.PHONY : src/SLICOT-Reference/src/FB01QD.o + +# target to build an object file +src/SLICOT-Reference/src/FB01QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01QD.f.o +.PHONY : src/SLICOT-Reference/src/FB01QD.f.o + +src/SLICOT-Reference/src/FB01QD.i: src/SLICOT-Reference/src/FB01QD.f.i +.PHONY : src/SLICOT-Reference/src/FB01QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/FB01QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01QD.f.i +.PHONY : src/SLICOT-Reference/src/FB01QD.f.i + +src/SLICOT-Reference/src/FB01QD.s: src/SLICOT-Reference/src/FB01QD.f.s +.PHONY : src/SLICOT-Reference/src/FB01QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/FB01QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01QD.f.s +.PHONY : src/SLICOT-Reference/src/FB01QD.f.s + +src/SLICOT-Reference/src/FB01RD.o: src/SLICOT-Reference/src/FB01RD.f.o +.PHONY : src/SLICOT-Reference/src/FB01RD.o + +# target to build an object file +src/SLICOT-Reference/src/FB01RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01RD.f.o +.PHONY : src/SLICOT-Reference/src/FB01RD.f.o + +src/SLICOT-Reference/src/FB01RD.i: src/SLICOT-Reference/src/FB01RD.f.i +.PHONY : src/SLICOT-Reference/src/FB01RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/FB01RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01RD.f.i +.PHONY : src/SLICOT-Reference/src/FB01RD.f.i + +src/SLICOT-Reference/src/FB01RD.s: src/SLICOT-Reference/src/FB01RD.f.s +.PHONY : src/SLICOT-Reference/src/FB01RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/FB01RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01RD.f.s +.PHONY : src/SLICOT-Reference/src/FB01RD.f.s + +src/SLICOT-Reference/src/FB01SD.o: src/SLICOT-Reference/src/FB01SD.f.o +.PHONY : src/SLICOT-Reference/src/FB01SD.o + +# target to build an object file +src/SLICOT-Reference/src/FB01SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01SD.f.o +.PHONY : src/SLICOT-Reference/src/FB01SD.f.o + +src/SLICOT-Reference/src/FB01SD.i: src/SLICOT-Reference/src/FB01SD.f.i +.PHONY : src/SLICOT-Reference/src/FB01SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/FB01SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01SD.f.i +.PHONY : src/SLICOT-Reference/src/FB01SD.f.i + +src/SLICOT-Reference/src/FB01SD.s: src/SLICOT-Reference/src/FB01SD.f.s +.PHONY : src/SLICOT-Reference/src/FB01SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/FB01SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01SD.f.s +.PHONY : src/SLICOT-Reference/src/FB01SD.f.s + +src/SLICOT-Reference/src/FB01TD.o: src/SLICOT-Reference/src/FB01TD.f.o +.PHONY : src/SLICOT-Reference/src/FB01TD.o + +# target to build an object file +src/SLICOT-Reference/src/FB01TD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01TD.f.o +.PHONY : src/SLICOT-Reference/src/FB01TD.f.o + +src/SLICOT-Reference/src/FB01TD.i: src/SLICOT-Reference/src/FB01TD.f.i +.PHONY : src/SLICOT-Reference/src/FB01TD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/FB01TD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01TD.f.i +.PHONY : src/SLICOT-Reference/src/FB01TD.f.i + +src/SLICOT-Reference/src/FB01TD.s: src/SLICOT-Reference/src/FB01TD.f.s +.PHONY : src/SLICOT-Reference/src/FB01TD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/FB01TD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01TD.f.s +.PHONY : src/SLICOT-Reference/src/FB01TD.f.s + +src/SLICOT-Reference/src/FB01VD.o: src/SLICOT-Reference/src/FB01VD.f.o +.PHONY : src/SLICOT-Reference/src/FB01VD.o + +# target to build an object file +src/SLICOT-Reference/src/FB01VD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01VD.f.o +.PHONY : src/SLICOT-Reference/src/FB01VD.f.o + +src/SLICOT-Reference/src/FB01VD.i: src/SLICOT-Reference/src/FB01VD.f.i +.PHONY : src/SLICOT-Reference/src/FB01VD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/FB01VD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01VD.f.i +.PHONY : src/SLICOT-Reference/src/FB01VD.f.i + +src/SLICOT-Reference/src/FB01VD.s: src/SLICOT-Reference/src/FB01VD.f.s +.PHONY : src/SLICOT-Reference/src/FB01VD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/FB01VD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01VD.f.s +.PHONY : src/SLICOT-Reference/src/FB01VD.f.s + +src/SLICOT-Reference/src/FD01AD.o: src/SLICOT-Reference/src/FD01AD.f.o +.PHONY : src/SLICOT-Reference/src/FD01AD.o + +# target to build an object file +src/SLICOT-Reference/src/FD01AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FD01AD.f.o +.PHONY : src/SLICOT-Reference/src/FD01AD.f.o + +src/SLICOT-Reference/src/FD01AD.i: src/SLICOT-Reference/src/FD01AD.f.i +.PHONY : src/SLICOT-Reference/src/FD01AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/FD01AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FD01AD.f.i +.PHONY : src/SLICOT-Reference/src/FD01AD.f.i + +src/SLICOT-Reference/src/FD01AD.s: src/SLICOT-Reference/src/FD01AD.f.s +.PHONY : src/SLICOT-Reference/src/FD01AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/FD01AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FD01AD.f.s +.PHONY : src/SLICOT-Reference/src/FD01AD.f.s + +src/SLICOT-Reference/src/IB01AD.o: src/SLICOT-Reference/src/IB01AD.f.o +.PHONY : src/SLICOT-Reference/src/IB01AD.o + +# target to build an object file +src/SLICOT-Reference/src/IB01AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01AD.f.o +.PHONY : src/SLICOT-Reference/src/IB01AD.f.o + +src/SLICOT-Reference/src/IB01AD.i: src/SLICOT-Reference/src/IB01AD.f.i +.PHONY : src/SLICOT-Reference/src/IB01AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01AD.f.i +.PHONY : src/SLICOT-Reference/src/IB01AD.f.i + +src/SLICOT-Reference/src/IB01AD.s: src/SLICOT-Reference/src/IB01AD.f.s +.PHONY : src/SLICOT-Reference/src/IB01AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01AD.f.s +.PHONY : src/SLICOT-Reference/src/IB01AD.f.s + +src/SLICOT-Reference/src/IB01BD.o: src/SLICOT-Reference/src/IB01BD.f.o +.PHONY : src/SLICOT-Reference/src/IB01BD.o + +# target to build an object file +src/SLICOT-Reference/src/IB01BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01BD.f.o +.PHONY : src/SLICOT-Reference/src/IB01BD.f.o + +src/SLICOT-Reference/src/IB01BD.i: src/SLICOT-Reference/src/IB01BD.f.i +.PHONY : src/SLICOT-Reference/src/IB01BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01BD.f.i +.PHONY : src/SLICOT-Reference/src/IB01BD.f.i + +src/SLICOT-Reference/src/IB01BD.s: src/SLICOT-Reference/src/IB01BD.f.s +.PHONY : src/SLICOT-Reference/src/IB01BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01BD.f.s +.PHONY : src/SLICOT-Reference/src/IB01BD.f.s + +src/SLICOT-Reference/src/IB01CD.o: src/SLICOT-Reference/src/IB01CD.f.o +.PHONY : src/SLICOT-Reference/src/IB01CD.o + +# target to build an object file +src/SLICOT-Reference/src/IB01CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01CD.f.o +.PHONY : src/SLICOT-Reference/src/IB01CD.f.o + +src/SLICOT-Reference/src/IB01CD.i: src/SLICOT-Reference/src/IB01CD.f.i +.PHONY : src/SLICOT-Reference/src/IB01CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01CD.f.i +.PHONY : src/SLICOT-Reference/src/IB01CD.f.i + +src/SLICOT-Reference/src/IB01CD.s: src/SLICOT-Reference/src/IB01CD.f.s +.PHONY : src/SLICOT-Reference/src/IB01CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01CD.f.s +.PHONY : src/SLICOT-Reference/src/IB01CD.f.s + +src/SLICOT-Reference/src/IB01MD.o: src/SLICOT-Reference/src/IB01MD.f.o +.PHONY : src/SLICOT-Reference/src/IB01MD.o + +# target to build an object file +src/SLICOT-Reference/src/IB01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01MD.f.o +.PHONY : src/SLICOT-Reference/src/IB01MD.f.o + +src/SLICOT-Reference/src/IB01MD.i: src/SLICOT-Reference/src/IB01MD.f.i +.PHONY : src/SLICOT-Reference/src/IB01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01MD.f.i +.PHONY : src/SLICOT-Reference/src/IB01MD.f.i + +src/SLICOT-Reference/src/IB01MD.s: src/SLICOT-Reference/src/IB01MD.f.s +.PHONY : src/SLICOT-Reference/src/IB01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01MD.f.s +.PHONY : src/SLICOT-Reference/src/IB01MD.f.s + +src/SLICOT-Reference/src/IB01MY.o: src/SLICOT-Reference/src/IB01MY.f.o +.PHONY : src/SLICOT-Reference/src/IB01MY.o + +# target to build an object file +src/SLICOT-Reference/src/IB01MY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01MY.f.o +.PHONY : src/SLICOT-Reference/src/IB01MY.f.o + +src/SLICOT-Reference/src/IB01MY.i: src/SLICOT-Reference/src/IB01MY.f.i +.PHONY : src/SLICOT-Reference/src/IB01MY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01MY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01MY.f.i +.PHONY : src/SLICOT-Reference/src/IB01MY.f.i + +src/SLICOT-Reference/src/IB01MY.s: src/SLICOT-Reference/src/IB01MY.f.s +.PHONY : src/SLICOT-Reference/src/IB01MY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01MY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01MY.f.s +.PHONY : src/SLICOT-Reference/src/IB01MY.f.s + +src/SLICOT-Reference/src/IB01ND.o: src/SLICOT-Reference/src/IB01ND.f.o +.PHONY : src/SLICOT-Reference/src/IB01ND.o + +# target to build an object file +src/SLICOT-Reference/src/IB01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01ND.f.o +.PHONY : src/SLICOT-Reference/src/IB01ND.f.o + +src/SLICOT-Reference/src/IB01ND.i: src/SLICOT-Reference/src/IB01ND.f.i +.PHONY : src/SLICOT-Reference/src/IB01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01ND.f.i +.PHONY : src/SLICOT-Reference/src/IB01ND.f.i + +src/SLICOT-Reference/src/IB01ND.s: src/SLICOT-Reference/src/IB01ND.f.s +.PHONY : src/SLICOT-Reference/src/IB01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01ND.f.s +.PHONY : src/SLICOT-Reference/src/IB01ND.f.s + +src/SLICOT-Reference/src/IB01OD.o: src/SLICOT-Reference/src/IB01OD.f.o +.PHONY : src/SLICOT-Reference/src/IB01OD.o + +# target to build an object file +src/SLICOT-Reference/src/IB01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01OD.f.o +.PHONY : src/SLICOT-Reference/src/IB01OD.f.o + +src/SLICOT-Reference/src/IB01OD.i: src/SLICOT-Reference/src/IB01OD.f.i +.PHONY : src/SLICOT-Reference/src/IB01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01OD.f.i +.PHONY : src/SLICOT-Reference/src/IB01OD.f.i + +src/SLICOT-Reference/src/IB01OD.s: src/SLICOT-Reference/src/IB01OD.f.s +.PHONY : src/SLICOT-Reference/src/IB01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01OD.f.s +.PHONY : src/SLICOT-Reference/src/IB01OD.f.s + +src/SLICOT-Reference/src/IB01OY.o: src/SLICOT-Reference/src/IB01OY.f.o +.PHONY : src/SLICOT-Reference/src/IB01OY.o + +# target to build an object file +src/SLICOT-Reference/src/IB01OY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01OY.f.o +.PHONY : src/SLICOT-Reference/src/IB01OY.f.o + +src/SLICOT-Reference/src/IB01OY.i: src/SLICOT-Reference/src/IB01OY.f.i +.PHONY : src/SLICOT-Reference/src/IB01OY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01OY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01OY.f.i +.PHONY : src/SLICOT-Reference/src/IB01OY.f.i + +src/SLICOT-Reference/src/IB01OY.s: src/SLICOT-Reference/src/IB01OY.f.s +.PHONY : src/SLICOT-Reference/src/IB01OY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01OY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01OY.f.s +.PHONY : src/SLICOT-Reference/src/IB01OY.f.s + +src/SLICOT-Reference/src/IB01PD.o: src/SLICOT-Reference/src/IB01PD.f.o +.PHONY : src/SLICOT-Reference/src/IB01PD.o + +# target to build an object file +src/SLICOT-Reference/src/IB01PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PD.f.o +.PHONY : src/SLICOT-Reference/src/IB01PD.f.o + +src/SLICOT-Reference/src/IB01PD.i: src/SLICOT-Reference/src/IB01PD.f.i +.PHONY : src/SLICOT-Reference/src/IB01PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PD.f.i +.PHONY : src/SLICOT-Reference/src/IB01PD.f.i + +src/SLICOT-Reference/src/IB01PD.s: src/SLICOT-Reference/src/IB01PD.f.s +.PHONY : src/SLICOT-Reference/src/IB01PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PD.f.s +.PHONY : src/SLICOT-Reference/src/IB01PD.f.s + +src/SLICOT-Reference/src/IB01PX.o: src/SLICOT-Reference/src/IB01PX.f.o +.PHONY : src/SLICOT-Reference/src/IB01PX.o + +# target to build an object file +src/SLICOT-Reference/src/IB01PX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PX.f.o +.PHONY : src/SLICOT-Reference/src/IB01PX.f.o + +src/SLICOT-Reference/src/IB01PX.i: src/SLICOT-Reference/src/IB01PX.f.i +.PHONY : src/SLICOT-Reference/src/IB01PX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01PX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PX.f.i +.PHONY : src/SLICOT-Reference/src/IB01PX.f.i + +src/SLICOT-Reference/src/IB01PX.s: src/SLICOT-Reference/src/IB01PX.f.s +.PHONY : src/SLICOT-Reference/src/IB01PX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01PX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PX.f.s +.PHONY : src/SLICOT-Reference/src/IB01PX.f.s + +src/SLICOT-Reference/src/IB01PY.o: src/SLICOT-Reference/src/IB01PY.f.o +.PHONY : src/SLICOT-Reference/src/IB01PY.o + +# target to build an object file +src/SLICOT-Reference/src/IB01PY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PY.f.o +.PHONY : src/SLICOT-Reference/src/IB01PY.f.o + +src/SLICOT-Reference/src/IB01PY.i: src/SLICOT-Reference/src/IB01PY.f.i +.PHONY : src/SLICOT-Reference/src/IB01PY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01PY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PY.f.i +.PHONY : src/SLICOT-Reference/src/IB01PY.f.i + +src/SLICOT-Reference/src/IB01PY.s: src/SLICOT-Reference/src/IB01PY.f.s +.PHONY : src/SLICOT-Reference/src/IB01PY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01PY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PY.f.s +.PHONY : src/SLICOT-Reference/src/IB01PY.f.s + +src/SLICOT-Reference/src/IB01QD.o: src/SLICOT-Reference/src/IB01QD.f.o +.PHONY : src/SLICOT-Reference/src/IB01QD.o + +# target to build an object file +src/SLICOT-Reference/src/IB01QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01QD.f.o +.PHONY : src/SLICOT-Reference/src/IB01QD.f.o + +src/SLICOT-Reference/src/IB01QD.i: src/SLICOT-Reference/src/IB01QD.f.i +.PHONY : src/SLICOT-Reference/src/IB01QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01QD.f.i +.PHONY : src/SLICOT-Reference/src/IB01QD.f.i + +src/SLICOT-Reference/src/IB01QD.s: src/SLICOT-Reference/src/IB01QD.f.s +.PHONY : src/SLICOT-Reference/src/IB01QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01QD.f.s +.PHONY : src/SLICOT-Reference/src/IB01QD.f.s + +src/SLICOT-Reference/src/IB01RD.o: src/SLICOT-Reference/src/IB01RD.f.o +.PHONY : src/SLICOT-Reference/src/IB01RD.o + +# target to build an object file +src/SLICOT-Reference/src/IB01RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01RD.f.o +.PHONY : src/SLICOT-Reference/src/IB01RD.f.o + +src/SLICOT-Reference/src/IB01RD.i: src/SLICOT-Reference/src/IB01RD.f.i +.PHONY : src/SLICOT-Reference/src/IB01RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB01RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01RD.f.i +.PHONY : src/SLICOT-Reference/src/IB01RD.f.i + +src/SLICOT-Reference/src/IB01RD.s: src/SLICOT-Reference/src/IB01RD.f.s +.PHONY : src/SLICOT-Reference/src/IB01RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB01RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01RD.f.s +.PHONY : src/SLICOT-Reference/src/IB01RD.f.s + +src/SLICOT-Reference/src/IB03AD.o: src/SLICOT-Reference/src/IB03AD.f.o +.PHONY : src/SLICOT-Reference/src/IB03AD.o + +# target to build an object file +src/SLICOT-Reference/src/IB03AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB03AD.f.o +.PHONY : src/SLICOT-Reference/src/IB03AD.f.o + +src/SLICOT-Reference/src/IB03AD.i: src/SLICOT-Reference/src/IB03AD.f.i +.PHONY : src/SLICOT-Reference/src/IB03AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB03AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB03AD.f.i +.PHONY : src/SLICOT-Reference/src/IB03AD.f.i + +src/SLICOT-Reference/src/IB03AD.s: src/SLICOT-Reference/src/IB03AD.f.s +.PHONY : src/SLICOT-Reference/src/IB03AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB03AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB03AD.f.s +.PHONY : src/SLICOT-Reference/src/IB03AD.f.s + +src/SLICOT-Reference/src/IB03BD.o: src/SLICOT-Reference/src/IB03BD.f.o +.PHONY : src/SLICOT-Reference/src/IB03BD.o + +# target to build an object file +src/SLICOT-Reference/src/IB03BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB03BD.f.o +.PHONY : src/SLICOT-Reference/src/IB03BD.f.o + +src/SLICOT-Reference/src/IB03BD.i: src/SLICOT-Reference/src/IB03BD.f.i +.PHONY : src/SLICOT-Reference/src/IB03BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/IB03BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB03BD.f.i +.PHONY : src/SLICOT-Reference/src/IB03BD.f.i + +src/SLICOT-Reference/src/IB03BD.s: src/SLICOT-Reference/src/IB03BD.f.s +.PHONY : src/SLICOT-Reference/src/IB03BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/IB03BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB03BD.f.s +.PHONY : src/SLICOT-Reference/src/IB03BD.f.s + +src/SLICOT-Reference/src/MA01AD.o: src/SLICOT-Reference/src/MA01AD.f.o +.PHONY : src/SLICOT-Reference/src/MA01AD.o + +# target to build an object file +src/SLICOT-Reference/src/MA01AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01AD.f.o +.PHONY : src/SLICOT-Reference/src/MA01AD.f.o + +src/SLICOT-Reference/src/MA01AD.i: src/SLICOT-Reference/src/MA01AD.f.i +.PHONY : src/SLICOT-Reference/src/MA01AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA01AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01AD.f.i +.PHONY : src/SLICOT-Reference/src/MA01AD.f.i + +src/SLICOT-Reference/src/MA01AD.s: src/SLICOT-Reference/src/MA01AD.f.s +.PHONY : src/SLICOT-Reference/src/MA01AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA01AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01AD.f.s +.PHONY : src/SLICOT-Reference/src/MA01AD.f.s + +src/SLICOT-Reference/src/MA01BD.o: src/SLICOT-Reference/src/MA01BD.f.o +.PHONY : src/SLICOT-Reference/src/MA01BD.o + +# target to build an object file +src/SLICOT-Reference/src/MA01BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01BD.f.o +.PHONY : src/SLICOT-Reference/src/MA01BD.f.o + +src/SLICOT-Reference/src/MA01BD.i: src/SLICOT-Reference/src/MA01BD.f.i +.PHONY : src/SLICOT-Reference/src/MA01BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA01BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01BD.f.i +.PHONY : src/SLICOT-Reference/src/MA01BD.f.i + +src/SLICOT-Reference/src/MA01BD.s: src/SLICOT-Reference/src/MA01BD.f.s +.PHONY : src/SLICOT-Reference/src/MA01BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA01BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01BD.f.s +.PHONY : src/SLICOT-Reference/src/MA01BD.f.s + +src/SLICOT-Reference/src/MA01BZ.o: src/SLICOT-Reference/src/MA01BZ.f.o +.PHONY : src/SLICOT-Reference/src/MA01BZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA01BZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01BZ.f.o +.PHONY : src/SLICOT-Reference/src/MA01BZ.f.o + +src/SLICOT-Reference/src/MA01BZ.i: src/SLICOT-Reference/src/MA01BZ.f.i +.PHONY : src/SLICOT-Reference/src/MA01BZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA01BZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01BZ.f.i +.PHONY : src/SLICOT-Reference/src/MA01BZ.f.i + +src/SLICOT-Reference/src/MA01BZ.s: src/SLICOT-Reference/src/MA01BZ.f.s +.PHONY : src/SLICOT-Reference/src/MA01BZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA01BZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01BZ.f.s +.PHONY : src/SLICOT-Reference/src/MA01BZ.f.s + +src/SLICOT-Reference/src/MA01CD.o: src/SLICOT-Reference/src/MA01CD.f.o +.PHONY : src/SLICOT-Reference/src/MA01CD.o + +# target to build an object file +src/SLICOT-Reference/src/MA01CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01CD.f.o +.PHONY : src/SLICOT-Reference/src/MA01CD.f.o + +src/SLICOT-Reference/src/MA01CD.i: src/SLICOT-Reference/src/MA01CD.f.i +.PHONY : src/SLICOT-Reference/src/MA01CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA01CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01CD.f.i +.PHONY : src/SLICOT-Reference/src/MA01CD.f.i + +src/SLICOT-Reference/src/MA01CD.s: src/SLICOT-Reference/src/MA01CD.f.s +.PHONY : src/SLICOT-Reference/src/MA01CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA01CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01CD.f.s +.PHONY : src/SLICOT-Reference/src/MA01CD.f.s + +src/SLICOT-Reference/src/MA01DD.o: src/SLICOT-Reference/src/MA01DD.f.o +.PHONY : src/SLICOT-Reference/src/MA01DD.o + +# target to build an object file +src/SLICOT-Reference/src/MA01DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01DD.f.o +.PHONY : src/SLICOT-Reference/src/MA01DD.f.o + +src/SLICOT-Reference/src/MA01DD.i: src/SLICOT-Reference/src/MA01DD.f.i +.PHONY : src/SLICOT-Reference/src/MA01DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA01DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01DD.f.i +.PHONY : src/SLICOT-Reference/src/MA01DD.f.i + +src/SLICOT-Reference/src/MA01DD.s: src/SLICOT-Reference/src/MA01DD.f.s +.PHONY : src/SLICOT-Reference/src/MA01DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA01DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01DD.f.s +.PHONY : src/SLICOT-Reference/src/MA01DD.f.s + +src/SLICOT-Reference/src/MA01DZ.o: src/SLICOT-Reference/src/MA01DZ.f.o +.PHONY : src/SLICOT-Reference/src/MA01DZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA01DZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01DZ.f.o +.PHONY : src/SLICOT-Reference/src/MA01DZ.f.o + +src/SLICOT-Reference/src/MA01DZ.i: src/SLICOT-Reference/src/MA01DZ.f.i +.PHONY : src/SLICOT-Reference/src/MA01DZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA01DZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01DZ.f.i +.PHONY : src/SLICOT-Reference/src/MA01DZ.f.i + +src/SLICOT-Reference/src/MA01DZ.s: src/SLICOT-Reference/src/MA01DZ.f.s +.PHONY : src/SLICOT-Reference/src/MA01DZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA01DZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01DZ.f.s +.PHONY : src/SLICOT-Reference/src/MA01DZ.f.s + +src/SLICOT-Reference/src/MA02AD.o: src/SLICOT-Reference/src/MA02AD.f.o +.PHONY : src/SLICOT-Reference/src/MA02AD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02AD.f.o +.PHONY : src/SLICOT-Reference/src/MA02AD.f.o + +src/SLICOT-Reference/src/MA02AD.i: src/SLICOT-Reference/src/MA02AD.f.i +.PHONY : src/SLICOT-Reference/src/MA02AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02AD.f.i +.PHONY : src/SLICOT-Reference/src/MA02AD.f.i + +src/SLICOT-Reference/src/MA02AD.s: src/SLICOT-Reference/src/MA02AD.f.s +.PHONY : src/SLICOT-Reference/src/MA02AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02AD.f.s +.PHONY : src/SLICOT-Reference/src/MA02AD.f.s + +src/SLICOT-Reference/src/MA02AZ.o: src/SLICOT-Reference/src/MA02AZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02AZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02AZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02AZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02AZ.f.o + +src/SLICOT-Reference/src/MA02AZ.i: src/SLICOT-Reference/src/MA02AZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02AZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02AZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02AZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02AZ.f.i + +src/SLICOT-Reference/src/MA02AZ.s: src/SLICOT-Reference/src/MA02AZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02AZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02AZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02AZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02AZ.f.s + +src/SLICOT-Reference/src/MA02BD.o: src/SLICOT-Reference/src/MA02BD.f.o +.PHONY : src/SLICOT-Reference/src/MA02BD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02BD.f.o +.PHONY : src/SLICOT-Reference/src/MA02BD.f.o + +src/SLICOT-Reference/src/MA02BD.i: src/SLICOT-Reference/src/MA02BD.f.i +.PHONY : src/SLICOT-Reference/src/MA02BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02BD.f.i +.PHONY : src/SLICOT-Reference/src/MA02BD.f.i + +src/SLICOT-Reference/src/MA02BD.s: src/SLICOT-Reference/src/MA02BD.f.s +.PHONY : src/SLICOT-Reference/src/MA02BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02BD.f.s +.PHONY : src/SLICOT-Reference/src/MA02BD.f.s + +src/SLICOT-Reference/src/MA02BZ.o: src/SLICOT-Reference/src/MA02BZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02BZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02BZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02BZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02BZ.f.o + +src/SLICOT-Reference/src/MA02BZ.i: src/SLICOT-Reference/src/MA02BZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02BZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02BZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02BZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02BZ.f.i + +src/SLICOT-Reference/src/MA02BZ.s: src/SLICOT-Reference/src/MA02BZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02BZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02BZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02BZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02BZ.f.s + +src/SLICOT-Reference/src/MA02CD.o: src/SLICOT-Reference/src/MA02CD.f.o +.PHONY : src/SLICOT-Reference/src/MA02CD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02CD.f.o +.PHONY : src/SLICOT-Reference/src/MA02CD.f.o + +src/SLICOT-Reference/src/MA02CD.i: src/SLICOT-Reference/src/MA02CD.f.i +.PHONY : src/SLICOT-Reference/src/MA02CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02CD.f.i +.PHONY : src/SLICOT-Reference/src/MA02CD.f.i + +src/SLICOT-Reference/src/MA02CD.s: src/SLICOT-Reference/src/MA02CD.f.s +.PHONY : src/SLICOT-Reference/src/MA02CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02CD.f.s +.PHONY : src/SLICOT-Reference/src/MA02CD.f.s + +src/SLICOT-Reference/src/MA02CZ.o: src/SLICOT-Reference/src/MA02CZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02CZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02CZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02CZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02CZ.f.o + +src/SLICOT-Reference/src/MA02CZ.i: src/SLICOT-Reference/src/MA02CZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02CZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02CZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02CZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02CZ.f.i + +src/SLICOT-Reference/src/MA02CZ.s: src/SLICOT-Reference/src/MA02CZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02CZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02CZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02CZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02CZ.f.s + +src/SLICOT-Reference/src/MA02DD.o: src/SLICOT-Reference/src/MA02DD.f.o +.PHONY : src/SLICOT-Reference/src/MA02DD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02DD.f.o +.PHONY : src/SLICOT-Reference/src/MA02DD.f.o + +src/SLICOT-Reference/src/MA02DD.i: src/SLICOT-Reference/src/MA02DD.f.i +.PHONY : src/SLICOT-Reference/src/MA02DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02DD.f.i +.PHONY : src/SLICOT-Reference/src/MA02DD.f.i + +src/SLICOT-Reference/src/MA02DD.s: src/SLICOT-Reference/src/MA02DD.f.s +.PHONY : src/SLICOT-Reference/src/MA02DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02DD.f.s +.PHONY : src/SLICOT-Reference/src/MA02DD.f.s + +src/SLICOT-Reference/src/MA02ED.o: src/SLICOT-Reference/src/MA02ED.f.o +.PHONY : src/SLICOT-Reference/src/MA02ED.o + +# target to build an object file +src/SLICOT-Reference/src/MA02ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ED.f.o +.PHONY : src/SLICOT-Reference/src/MA02ED.f.o + +src/SLICOT-Reference/src/MA02ED.i: src/SLICOT-Reference/src/MA02ED.f.i +.PHONY : src/SLICOT-Reference/src/MA02ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ED.f.i +.PHONY : src/SLICOT-Reference/src/MA02ED.f.i + +src/SLICOT-Reference/src/MA02ED.s: src/SLICOT-Reference/src/MA02ED.f.s +.PHONY : src/SLICOT-Reference/src/MA02ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ED.f.s +.PHONY : src/SLICOT-Reference/src/MA02ED.f.s + +src/SLICOT-Reference/src/MA02ES.o: src/SLICOT-Reference/src/MA02ES.f.o +.PHONY : src/SLICOT-Reference/src/MA02ES.o + +# target to build an object file +src/SLICOT-Reference/src/MA02ES.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ES.f.o +.PHONY : src/SLICOT-Reference/src/MA02ES.f.o + +src/SLICOT-Reference/src/MA02ES.i: src/SLICOT-Reference/src/MA02ES.f.i +.PHONY : src/SLICOT-Reference/src/MA02ES.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02ES.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ES.f.i +.PHONY : src/SLICOT-Reference/src/MA02ES.f.i + +src/SLICOT-Reference/src/MA02ES.s: src/SLICOT-Reference/src/MA02ES.f.s +.PHONY : src/SLICOT-Reference/src/MA02ES.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02ES.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ES.f.s +.PHONY : src/SLICOT-Reference/src/MA02ES.f.s + +src/SLICOT-Reference/src/MA02EZ.o: src/SLICOT-Reference/src/MA02EZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02EZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02EZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02EZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02EZ.f.o + +src/SLICOT-Reference/src/MA02EZ.i: src/SLICOT-Reference/src/MA02EZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02EZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02EZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02EZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02EZ.f.i + +src/SLICOT-Reference/src/MA02EZ.s: src/SLICOT-Reference/src/MA02EZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02EZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02EZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02EZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02EZ.f.s + +src/SLICOT-Reference/src/MA02FD.o: src/SLICOT-Reference/src/MA02FD.f.o +.PHONY : src/SLICOT-Reference/src/MA02FD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02FD.f.o +.PHONY : src/SLICOT-Reference/src/MA02FD.f.o + +src/SLICOT-Reference/src/MA02FD.i: src/SLICOT-Reference/src/MA02FD.f.i +.PHONY : src/SLICOT-Reference/src/MA02FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02FD.f.i +.PHONY : src/SLICOT-Reference/src/MA02FD.f.i + +src/SLICOT-Reference/src/MA02FD.s: src/SLICOT-Reference/src/MA02FD.f.s +.PHONY : src/SLICOT-Reference/src/MA02FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02FD.f.s +.PHONY : src/SLICOT-Reference/src/MA02FD.f.s + +src/SLICOT-Reference/src/MA02GD.o: src/SLICOT-Reference/src/MA02GD.f.o +.PHONY : src/SLICOT-Reference/src/MA02GD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02GD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02GD.f.o +.PHONY : src/SLICOT-Reference/src/MA02GD.f.o + +src/SLICOT-Reference/src/MA02GD.i: src/SLICOT-Reference/src/MA02GD.f.i +.PHONY : src/SLICOT-Reference/src/MA02GD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02GD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02GD.f.i +.PHONY : src/SLICOT-Reference/src/MA02GD.f.i + +src/SLICOT-Reference/src/MA02GD.s: src/SLICOT-Reference/src/MA02GD.f.s +.PHONY : src/SLICOT-Reference/src/MA02GD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02GD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02GD.f.s +.PHONY : src/SLICOT-Reference/src/MA02GD.f.s + +src/SLICOT-Reference/src/MA02GZ.o: src/SLICOT-Reference/src/MA02GZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02GZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02GZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02GZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02GZ.f.o + +src/SLICOT-Reference/src/MA02GZ.i: src/SLICOT-Reference/src/MA02GZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02GZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02GZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02GZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02GZ.f.i + +src/SLICOT-Reference/src/MA02GZ.s: src/SLICOT-Reference/src/MA02GZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02GZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02GZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02GZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02GZ.f.s + +src/SLICOT-Reference/src/MA02HD.o: src/SLICOT-Reference/src/MA02HD.f.o +.PHONY : src/SLICOT-Reference/src/MA02HD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02HD.f.o +.PHONY : src/SLICOT-Reference/src/MA02HD.f.o + +src/SLICOT-Reference/src/MA02HD.i: src/SLICOT-Reference/src/MA02HD.f.i +.PHONY : src/SLICOT-Reference/src/MA02HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02HD.f.i +.PHONY : src/SLICOT-Reference/src/MA02HD.f.i + +src/SLICOT-Reference/src/MA02HD.s: src/SLICOT-Reference/src/MA02HD.f.s +.PHONY : src/SLICOT-Reference/src/MA02HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02HD.f.s +.PHONY : src/SLICOT-Reference/src/MA02HD.f.s + +src/SLICOT-Reference/src/MA02HZ.o: src/SLICOT-Reference/src/MA02HZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02HZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02HZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02HZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02HZ.f.o + +src/SLICOT-Reference/src/MA02HZ.i: src/SLICOT-Reference/src/MA02HZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02HZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02HZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02HZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02HZ.f.i + +src/SLICOT-Reference/src/MA02HZ.s: src/SLICOT-Reference/src/MA02HZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02HZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02HZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02HZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02HZ.f.s + +src/SLICOT-Reference/src/MA02ID.o: src/SLICOT-Reference/src/MA02ID.f.o +.PHONY : src/SLICOT-Reference/src/MA02ID.o + +# target to build an object file +src/SLICOT-Reference/src/MA02ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ID.f.o +.PHONY : src/SLICOT-Reference/src/MA02ID.f.o + +src/SLICOT-Reference/src/MA02ID.i: src/SLICOT-Reference/src/MA02ID.f.i +.PHONY : src/SLICOT-Reference/src/MA02ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ID.f.i +.PHONY : src/SLICOT-Reference/src/MA02ID.f.i + +src/SLICOT-Reference/src/MA02ID.s: src/SLICOT-Reference/src/MA02ID.f.s +.PHONY : src/SLICOT-Reference/src/MA02ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ID.f.s +.PHONY : src/SLICOT-Reference/src/MA02ID.f.s + +src/SLICOT-Reference/src/MA02IZ.o: src/SLICOT-Reference/src/MA02IZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02IZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02IZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02IZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02IZ.f.o + +src/SLICOT-Reference/src/MA02IZ.i: src/SLICOT-Reference/src/MA02IZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02IZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02IZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02IZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02IZ.f.i + +src/SLICOT-Reference/src/MA02IZ.s: src/SLICOT-Reference/src/MA02IZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02IZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02IZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02IZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02IZ.f.s + +src/SLICOT-Reference/src/MA02JD.o: src/SLICOT-Reference/src/MA02JD.f.o +.PHONY : src/SLICOT-Reference/src/MA02JD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02JD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02JD.f.o +.PHONY : src/SLICOT-Reference/src/MA02JD.f.o + +src/SLICOT-Reference/src/MA02JD.i: src/SLICOT-Reference/src/MA02JD.f.i +.PHONY : src/SLICOT-Reference/src/MA02JD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02JD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02JD.f.i +.PHONY : src/SLICOT-Reference/src/MA02JD.f.i + +src/SLICOT-Reference/src/MA02JD.s: src/SLICOT-Reference/src/MA02JD.f.s +.PHONY : src/SLICOT-Reference/src/MA02JD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02JD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02JD.f.s +.PHONY : src/SLICOT-Reference/src/MA02JD.f.s + +src/SLICOT-Reference/src/MA02JZ.o: src/SLICOT-Reference/src/MA02JZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02JZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02JZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02JZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02JZ.f.o + +src/SLICOT-Reference/src/MA02JZ.i: src/SLICOT-Reference/src/MA02JZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02JZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02JZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02JZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02JZ.f.i + +src/SLICOT-Reference/src/MA02JZ.s: src/SLICOT-Reference/src/MA02JZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02JZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02JZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02JZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02JZ.f.s + +src/SLICOT-Reference/src/MA02MD.o: src/SLICOT-Reference/src/MA02MD.f.o +.PHONY : src/SLICOT-Reference/src/MA02MD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02MD.f.o +.PHONY : src/SLICOT-Reference/src/MA02MD.f.o + +src/SLICOT-Reference/src/MA02MD.i: src/SLICOT-Reference/src/MA02MD.f.i +.PHONY : src/SLICOT-Reference/src/MA02MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02MD.f.i +.PHONY : src/SLICOT-Reference/src/MA02MD.f.i + +src/SLICOT-Reference/src/MA02MD.s: src/SLICOT-Reference/src/MA02MD.f.s +.PHONY : src/SLICOT-Reference/src/MA02MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02MD.f.s +.PHONY : src/SLICOT-Reference/src/MA02MD.f.s + +src/SLICOT-Reference/src/MA02MZ.o: src/SLICOT-Reference/src/MA02MZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02MZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02MZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02MZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02MZ.f.o + +src/SLICOT-Reference/src/MA02MZ.i: src/SLICOT-Reference/src/MA02MZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02MZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02MZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02MZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02MZ.f.i + +src/SLICOT-Reference/src/MA02MZ.s: src/SLICOT-Reference/src/MA02MZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02MZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02MZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02MZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02MZ.f.s + +src/SLICOT-Reference/src/MA02NZ.o: src/SLICOT-Reference/src/MA02NZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02NZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02NZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02NZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02NZ.f.o + +src/SLICOT-Reference/src/MA02NZ.i: src/SLICOT-Reference/src/MA02NZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02NZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02NZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02NZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02NZ.f.i + +src/SLICOT-Reference/src/MA02NZ.s: src/SLICOT-Reference/src/MA02NZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02NZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02NZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02NZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02NZ.f.s + +src/SLICOT-Reference/src/MA02OD.o: src/SLICOT-Reference/src/MA02OD.f.o +.PHONY : src/SLICOT-Reference/src/MA02OD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02OD.f.o +.PHONY : src/SLICOT-Reference/src/MA02OD.f.o + +src/SLICOT-Reference/src/MA02OD.i: src/SLICOT-Reference/src/MA02OD.f.i +.PHONY : src/SLICOT-Reference/src/MA02OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02OD.f.i +.PHONY : src/SLICOT-Reference/src/MA02OD.f.i + +src/SLICOT-Reference/src/MA02OD.s: src/SLICOT-Reference/src/MA02OD.f.s +.PHONY : src/SLICOT-Reference/src/MA02OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02OD.f.s +.PHONY : src/SLICOT-Reference/src/MA02OD.f.s + +src/SLICOT-Reference/src/MA02OZ.o: src/SLICOT-Reference/src/MA02OZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02OZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02OZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02OZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02OZ.f.o + +src/SLICOT-Reference/src/MA02OZ.i: src/SLICOT-Reference/src/MA02OZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02OZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02OZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02OZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02OZ.f.i + +src/SLICOT-Reference/src/MA02OZ.s: src/SLICOT-Reference/src/MA02OZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02OZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02OZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02OZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02OZ.f.s + +src/SLICOT-Reference/src/MA02PD.o: src/SLICOT-Reference/src/MA02PD.f.o +.PHONY : src/SLICOT-Reference/src/MA02PD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02PD.f.o +.PHONY : src/SLICOT-Reference/src/MA02PD.f.o + +src/SLICOT-Reference/src/MA02PD.i: src/SLICOT-Reference/src/MA02PD.f.i +.PHONY : src/SLICOT-Reference/src/MA02PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02PD.f.i +.PHONY : src/SLICOT-Reference/src/MA02PD.f.i + +src/SLICOT-Reference/src/MA02PD.s: src/SLICOT-Reference/src/MA02PD.f.s +.PHONY : src/SLICOT-Reference/src/MA02PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02PD.f.s +.PHONY : src/SLICOT-Reference/src/MA02PD.f.s + +src/SLICOT-Reference/src/MA02PZ.o: src/SLICOT-Reference/src/MA02PZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02PZ.o + +# target to build an object file +src/SLICOT-Reference/src/MA02PZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02PZ.f.o +.PHONY : src/SLICOT-Reference/src/MA02PZ.f.o + +src/SLICOT-Reference/src/MA02PZ.i: src/SLICOT-Reference/src/MA02PZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02PZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02PZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02PZ.f.i +.PHONY : src/SLICOT-Reference/src/MA02PZ.f.i + +src/SLICOT-Reference/src/MA02PZ.s: src/SLICOT-Reference/src/MA02PZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02PZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02PZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02PZ.f.s +.PHONY : src/SLICOT-Reference/src/MA02PZ.f.s + +src/SLICOT-Reference/src/MA02RD.o: src/SLICOT-Reference/src/MA02RD.f.o +.PHONY : src/SLICOT-Reference/src/MA02RD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02RD.f.o +.PHONY : src/SLICOT-Reference/src/MA02RD.f.o + +src/SLICOT-Reference/src/MA02RD.i: src/SLICOT-Reference/src/MA02RD.f.i +.PHONY : src/SLICOT-Reference/src/MA02RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02RD.f.i +.PHONY : src/SLICOT-Reference/src/MA02RD.f.i + +src/SLICOT-Reference/src/MA02RD.s: src/SLICOT-Reference/src/MA02RD.f.s +.PHONY : src/SLICOT-Reference/src/MA02RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02RD.f.s +.PHONY : src/SLICOT-Reference/src/MA02RD.f.s + +src/SLICOT-Reference/src/MA02SD.o: src/SLICOT-Reference/src/MA02SD.f.o +.PHONY : src/SLICOT-Reference/src/MA02SD.o + +# target to build an object file +src/SLICOT-Reference/src/MA02SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02SD.f.o +.PHONY : src/SLICOT-Reference/src/MA02SD.f.o + +src/SLICOT-Reference/src/MA02SD.i: src/SLICOT-Reference/src/MA02SD.f.i +.PHONY : src/SLICOT-Reference/src/MA02SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MA02SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02SD.f.i +.PHONY : src/SLICOT-Reference/src/MA02SD.f.i + +src/SLICOT-Reference/src/MA02SD.s: src/SLICOT-Reference/src/MA02SD.f.s +.PHONY : src/SLICOT-Reference/src/MA02SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MA02SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02SD.f.s +.PHONY : src/SLICOT-Reference/src/MA02SD.f.s + +src/SLICOT-Reference/src/MB01KD.o: src/SLICOT-Reference/src/MB01KD.f.o +.PHONY : src/SLICOT-Reference/src/MB01KD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01KD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01KD.f.o +.PHONY : src/SLICOT-Reference/src/MB01KD.f.o + +src/SLICOT-Reference/src/MB01KD.i: src/SLICOT-Reference/src/MB01KD.f.i +.PHONY : src/SLICOT-Reference/src/MB01KD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01KD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01KD.f.i +.PHONY : src/SLICOT-Reference/src/MB01KD.f.i + +src/SLICOT-Reference/src/MB01KD.s: src/SLICOT-Reference/src/MB01KD.f.s +.PHONY : src/SLICOT-Reference/src/MB01KD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01KD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01KD.f.s +.PHONY : src/SLICOT-Reference/src/MB01KD.f.s + +src/SLICOT-Reference/src/MB01LD.o: src/SLICOT-Reference/src/MB01LD.f.o +.PHONY : src/SLICOT-Reference/src/MB01LD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01LD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01LD.f.o +.PHONY : src/SLICOT-Reference/src/MB01LD.f.o + +src/SLICOT-Reference/src/MB01LD.i: src/SLICOT-Reference/src/MB01LD.f.i +.PHONY : src/SLICOT-Reference/src/MB01LD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01LD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01LD.f.i +.PHONY : src/SLICOT-Reference/src/MB01LD.f.i + +src/SLICOT-Reference/src/MB01LD.s: src/SLICOT-Reference/src/MB01LD.f.s +.PHONY : src/SLICOT-Reference/src/MB01LD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01LD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01LD.f.s +.PHONY : src/SLICOT-Reference/src/MB01LD.f.s + +src/SLICOT-Reference/src/MB01MD.o: src/SLICOT-Reference/src/MB01MD.f.o +.PHONY : src/SLICOT-Reference/src/MB01MD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01MD.f.o +.PHONY : src/SLICOT-Reference/src/MB01MD.f.o + +src/SLICOT-Reference/src/MB01MD.i: src/SLICOT-Reference/src/MB01MD.f.i +.PHONY : src/SLICOT-Reference/src/MB01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01MD.f.i +.PHONY : src/SLICOT-Reference/src/MB01MD.f.i + +src/SLICOT-Reference/src/MB01MD.s: src/SLICOT-Reference/src/MB01MD.f.s +.PHONY : src/SLICOT-Reference/src/MB01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01MD.f.s +.PHONY : src/SLICOT-Reference/src/MB01MD.f.s + +src/SLICOT-Reference/src/MB01ND.o: src/SLICOT-Reference/src/MB01ND.f.o +.PHONY : src/SLICOT-Reference/src/MB01ND.o + +# target to build an object file +src/SLICOT-Reference/src/MB01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01ND.f.o +.PHONY : src/SLICOT-Reference/src/MB01ND.f.o + +src/SLICOT-Reference/src/MB01ND.i: src/SLICOT-Reference/src/MB01ND.f.i +.PHONY : src/SLICOT-Reference/src/MB01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01ND.f.i +.PHONY : src/SLICOT-Reference/src/MB01ND.f.i + +src/SLICOT-Reference/src/MB01ND.s: src/SLICOT-Reference/src/MB01ND.f.s +.PHONY : src/SLICOT-Reference/src/MB01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01ND.f.s +.PHONY : src/SLICOT-Reference/src/MB01ND.f.s + +src/SLICOT-Reference/src/MB01OC.o: src/SLICOT-Reference/src/MB01OC.f.o +.PHONY : src/SLICOT-Reference/src/MB01OC.o + +# target to build an object file +src/SLICOT-Reference/src/MB01OC.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OC.f.o +.PHONY : src/SLICOT-Reference/src/MB01OC.f.o + +src/SLICOT-Reference/src/MB01OC.i: src/SLICOT-Reference/src/MB01OC.f.i +.PHONY : src/SLICOT-Reference/src/MB01OC.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01OC.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OC.f.i +.PHONY : src/SLICOT-Reference/src/MB01OC.f.i + +src/SLICOT-Reference/src/MB01OC.s: src/SLICOT-Reference/src/MB01OC.f.s +.PHONY : src/SLICOT-Reference/src/MB01OC.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01OC.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OC.f.s +.PHONY : src/SLICOT-Reference/src/MB01OC.f.s + +src/SLICOT-Reference/src/MB01OD.o: src/SLICOT-Reference/src/MB01OD.f.o +.PHONY : src/SLICOT-Reference/src/MB01OD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OD.f.o +.PHONY : src/SLICOT-Reference/src/MB01OD.f.o + +src/SLICOT-Reference/src/MB01OD.i: src/SLICOT-Reference/src/MB01OD.f.i +.PHONY : src/SLICOT-Reference/src/MB01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OD.f.i +.PHONY : src/SLICOT-Reference/src/MB01OD.f.i + +src/SLICOT-Reference/src/MB01OD.s: src/SLICOT-Reference/src/MB01OD.f.s +.PHONY : src/SLICOT-Reference/src/MB01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OD.f.s +.PHONY : src/SLICOT-Reference/src/MB01OD.f.s + +src/SLICOT-Reference/src/MB01OE.o: src/SLICOT-Reference/src/MB01OE.f.o +.PHONY : src/SLICOT-Reference/src/MB01OE.o + +# target to build an object file +src/SLICOT-Reference/src/MB01OE.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OE.f.o +.PHONY : src/SLICOT-Reference/src/MB01OE.f.o + +src/SLICOT-Reference/src/MB01OE.i: src/SLICOT-Reference/src/MB01OE.f.i +.PHONY : src/SLICOT-Reference/src/MB01OE.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01OE.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OE.f.i +.PHONY : src/SLICOT-Reference/src/MB01OE.f.i + +src/SLICOT-Reference/src/MB01OE.s: src/SLICOT-Reference/src/MB01OE.f.s +.PHONY : src/SLICOT-Reference/src/MB01OE.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01OE.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OE.f.s +.PHONY : src/SLICOT-Reference/src/MB01OE.f.s + +src/SLICOT-Reference/src/MB01OH.o: src/SLICOT-Reference/src/MB01OH.f.o +.PHONY : src/SLICOT-Reference/src/MB01OH.o + +# target to build an object file +src/SLICOT-Reference/src/MB01OH.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OH.f.o +.PHONY : src/SLICOT-Reference/src/MB01OH.f.o + +src/SLICOT-Reference/src/MB01OH.i: src/SLICOT-Reference/src/MB01OH.f.i +.PHONY : src/SLICOT-Reference/src/MB01OH.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01OH.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OH.f.i +.PHONY : src/SLICOT-Reference/src/MB01OH.f.i + +src/SLICOT-Reference/src/MB01OH.s: src/SLICOT-Reference/src/MB01OH.f.s +.PHONY : src/SLICOT-Reference/src/MB01OH.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01OH.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OH.f.s +.PHONY : src/SLICOT-Reference/src/MB01OH.f.s + +src/SLICOT-Reference/src/MB01OO.o: src/SLICOT-Reference/src/MB01OO.f.o +.PHONY : src/SLICOT-Reference/src/MB01OO.o + +# target to build an object file +src/SLICOT-Reference/src/MB01OO.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OO.f.o +.PHONY : src/SLICOT-Reference/src/MB01OO.f.o + +src/SLICOT-Reference/src/MB01OO.i: src/SLICOT-Reference/src/MB01OO.f.i +.PHONY : src/SLICOT-Reference/src/MB01OO.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01OO.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OO.f.i +.PHONY : src/SLICOT-Reference/src/MB01OO.f.i + +src/SLICOT-Reference/src/MB01OO.s: src/SLICOT-Reference/src/MB01OO.f.s +.PHONY : src/SLICOT-Reference/src/MB01OO.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01OO.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OO.f.s +.PHONY : src/SLICOT-Reference/src/MB01OO.f.s + +src/SLICOT-Reference/src/MB01OS.o: src/SLICOT-Reference/src/MB01OS.f.o +.PHONY : src/SLICOT-Reference/src/MB01OS.o + +# target to build an object file +src/SLICOT-Reference/src/MB01OS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OS.f.o +.PHONY : src/SLICOT-Reference/src/MB01OS.f.o + +src/SLICOT-Reference/src/MB01OS.i: src/SLICOT-Reference/src/MB01OS.f.i +.PHONY : src/SLICOT-Reference/src/MB01OS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01OS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OS.f.i +.PHONY : src/SLICOT-Reference/src/MB01OS.f.i + +src/SLICOT-Reference/src/MB01OS.s: src/SLICOT-Reference/src/MB01OS.f.s +.PHONY : src/SLICOT-Reference/src/MB01OS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01OS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OS.f.s +.PHONY : src/SLICOT-Reference/src/MB01OS.f.s + +src/SLICOT-Reference/src/MB01OT.o: src/SLICOT-Reference/src/MB01OT.f.o +.PHONY : src/SLICOT-Reference/src/MB01OT.o + +# target to build an object file +src/SLICOT-Reference/src/MB01OT.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OT.f.o +.PHONY : src/SLICOT-Reference/src/MB01OT.f.o + +src/SLICOT-Reference/src/MB01OT.i: src/SLICOT-Reference/src/MB01OT.f.i +.PHONY : src/SLICOT-Reference/src/MB01OT.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01OT.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OT.f.i +.PHONY : src/SLICOT-Reference/src/MB01OT.f.i + +src/SLICOT-Reference/src/MB01OT.s: src/SLICOT-Reference/src/MB01OT.f.s +.PHONY : src/SLICOT-Reference/src/MB01OT.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01OT.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OT.f.s +.PHONY : src/SLICOT-Reference/src/MB01OT.f.s + +src/SLICOT-Reference/src/MB01PD.o: src/SLICOT-Reference/src/MB01PD.f.o +.PHONY : src/SLICOT-Reference/src/MB01PD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01PD.f.o +.PHONY : src/SLICOT-Reference/src/MB01PD.f.o + +src/SLICOT-Reference/src/MB01PD.i: src/SLICOT-Reference/src/MB01PD.f.i +.PHONY : src/SLICOT-Reference/src/MB01PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01PD.f.i +.PHONY : src/SLICOT-Reference/src/MB01PD.f.i + +src/SLICOT-Reference/src/MB01PD.s: src/SLICOT-Reference/src/MB01PD.f.s +.PHONY : src/SLICOT-Reference/src/MB01PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01PD.f.s +.PHONY : src/SLICOT-Reference/src/MB01PD.f.s + +src/SLICOT-Reference/src/MB01QD.o: src/SLICOT-Reference/src/MB01QD.f.o +.PHONY : src/SLICOT-Reference/src/MB01QD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01QD.f.o +.PHONY : src/SLICOT-Reference/src/MB01QD.f.o + +src/SLICOT-Reference/src/MB01QD.i: src/SLICOT-Reference/src/MB01QD.f.i +.PHONY : src/SLICOT-Reference/src/MB01QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01QD.f.i +.PHONY : src/SLICOT-Reference/src/MB01QD.f.i + +src/SLICOT-Reference/src/MB01QD.s: src/SLICOT-Reference/src/MB01QD.f.s +.PHONY : src/SLICOT-Reference/src/MB01QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01QD.f.s +.PHONY : src/SLICOT-Reference/src/MB01QD.f.s + +src/SLICOT-Reference/src/MB01RB.o: src/SLICOT-Reference/src/MB01RB.f.o +.PHONY : src/SLICOT-Reference/src/MB01RB.o + +# target to build an object file +src/SLICOT-Reference/src/MB01RB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RB.f.o +.PHONY : src/SLICOT-Reference/src/MB01RB.f.o + +src/SLICOT-Reference/src/MB01RB.i: src/SLICOT-Reference/src/MB01RB.f.i +.PHONY : src/SLICOT-Reference/src/MB01RB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01RB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RB.f.i +.PHONY : src/SLICOT-Reference/src/MB01RB.f.i + +src/SLICOT-Reference/src/MB01RB.s: src/SLICOT-Reference/src/MB01RB.f.s +.PHONY : src/SLICOT-Reference/src/MB01RB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01RB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RB.f.s +.PHONY : src/SLICOT-Reference/src/MB01RB.f.s + +src/SLICOT-Reference/src/MB01RD.o: src/SLICOT-Reference/src/MB01RD.f.o +.PHONY : src/SLICOT-Reference/src/MB01RD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RD.f.o +.PHONY : src/SLICOT-Reference/src/MB01RD.f.o + +src/SLICOT-Reference/src/MB01RD.i: src/SLICOT-Reference/src/MB01RD.f.i +.PHONY : src/SLICOT-Reference/src/MB01RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RD.f.i +.PHONY : src/SLICOT-Reference/src/MB01RD.f.i + +src/SLICOT-Reference/src/MB01RD.s: src/SLICOT-Reference/src/MB01RD.f.s +.PHONY : src/SLICOT-Reference/src/MB01RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RD.f.s +.PHONY : src/SLICOT-Reference/src/MB01RD.f.s + +src/SLICOT-Reference/src/MB01RH.o: src/SLICOT-Reference/src/MB01RH.f.o +.PHONY : src/SLICOT-Reference/src/MB01RH.o + +# target to build an object file +src/SLICOT-Reference/src/MB01RH.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RH.f.o +.PHONY : src/SLICOT-Reference/src/MB01RH.f.o + +src/SLICOT-Reference/src/MB01RH.i: src/SLICOT-Reference/src/MB01RH.f.i +.PHONY : src/SLICOT-Reference/src/MB01RH.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01RH.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RH.f.i +.PHONY : src/SLICOT-Reference/src/MB01RH.f.i + +src/SLICOT-Reference/src/MB01RH.s: src/SLICOT-Reference/src/MB01RH.f.s +.PHONY : src/SLICOT-Reference/src/MB01RH.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01RH.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RH.f.s +.PHONY : src/SLICOT-Reference/src/MB01RH.f.s + +src/SLICOT-Reference/src/MB01RT.o: src/SLICOT-Reference/src/MB01RT.f.o +.PHONY : src/SLICOT-Reference/src/MB01RT.o + +# target to build an object file +src/SLICOT-Reference/src/MB01RT.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RT.f.o +.PHONY : src/SLICOT-Reference/src/MB01RT.f.o + +src/SLICOT-Reference/src/MB01RT.i: src/SLICOT-Reference/src/MB01RT.f.i +.PHONY : src/SLICOT-Reference/src/MB01RT.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01RT.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RT.f.i +.PHONY : src/SLICOT-Reference/src/MB01RT.f.i + +src/SLICOT-Reference/src/MB01RT.s: src/SLICOT-Reference/src/MB01RT.f.s +.PHONY : src/SLICOT-Reference/src/MB01RT.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01RT.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RT.f.s +.PHONY : src/SLICOT-Reference/src/MB01RT.f.s + +src/SLICOT-Reference/src/MB01RU.o: src/SLICOT-Reference/src/MB01RU.f.o +.PHONY : src/SLICOT-Reference/src/MB01RU.o + +# target to build an object file +src/SLICOT-Reference/src/MB01RU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RU.f.o +.PHONY : src/SLICOT-Reference/src/MB01RU.f.o + +src/SLICOT-Reference/src/MB01RU.i: src/SLICOT-Reference/src/MB01RU.f.i +.PHONY : src/SLICOT-Reference/src/MB01RU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01RU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RU.f.i +.PHONY : src/SLICOT-Reference/src/MB01RU.f.i + +src/SLICOT-Reference/src/MB01RU.s: src/SLICOT-Reference/src/MB01RU.f.s +.PHONY : src/SLICOT-Reference/src/MB01RU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01RU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RU.f.s +.PHONY : src/SLICOT-Reference/src/MB01RU.f.s + +src/SLICOT-Reference/src/MB01RW.o: src/SLICOT-Reference/src/MB01RW.f.o +.PHONY : src/SLICOT-Reference/src/MB01RW.o + +# target to build an object file +src/SLICOT-Reference/src/MB01RW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RW.f.o +.PHONY : src/SLICOT-Reference/src/MB01RW.f.o + +src/SLICOT-Reference/src/MB01RW.i: src/SLICOT-Reference/src/MB01RW.f.i +.PHONY : src/SLICOT-Reference/src/MB01RW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01RW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RW.f.i +.PHONY : src/SLICOT-Reference/src/MB01RW.f.i + +src/SLICOT-Reference/src/MB01RW.s: src/SLICOT-Reference/src/MB01RW.f.s +.PHONY : src/SLICOT-Reference/src/MB01RW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01RW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RW.f.s +.PHONY : src/SLICOT-Reference/src/MB01RW.f.s + +src/SLICOT-Reference/src/MB01RX.o: src/SLICOT-Reference/src/MB01RX.f.o +.PHONY : src/SLICOT-Reference/src/MB01RX.o + +# target to build an object file +src/SLICOT-Reference/src/MB01RX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RX.f.o +.PHONY : src/SLICOT-Reference/src/MB01RX.f.o + +src/SLICOT-Reference/src/MB01RX.i: src/SLICOT-Reference/src/MB01RX.f.i +.PHONY : src/SLICOT-Reference/src/MB01RX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01RX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RX.f.i +.PHONY : src/SLICOT-Reference/src/MB01RX.f.i + +src/SLICOT-Reference/src/MB01RX.s: src/SLICOT-Reference/src/MB01RX.f.s +.PHONY : src/SLICOT-Reference/src/MB01RX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01RX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RX.f.s +.PHONY : src/SLICOT-Reference/src/MB01RX.f.s + +src/SLICOT-Reference/src/MB01RY.o: src/SLICOT-Reference/src/MB01RY.f.o +.PHONY : src/SLICOT-Reference/src/MB01RY.o + +# target to build an object file +src/SLICOT-Reference/src/MB01RY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RY.f.o +.PHONY : src/SLICOT-Reference/src/MB01RY.f.o + +src/SLICOT-Reference/src/MB01RY.i: src/SLICOT-Reference/src/MB01RY.f.i +.PHONY : src/SLICOT-Reference/src/MB01RY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01RY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RY.f.i +.PHONY : src/SLICOT-Reference/src/MB01RY.f.i + +src/SLICOT-Reference/src/MB01RY.s: src/SLICOT-Reference/src/MB01RY.f.s +.PHONY : src/SLICOT-Reference/src/MB01RY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01RY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RY.f.s +.PHONY : src/SLICOT-Reference/src/MB01RY.f.s + +src/SLICOT-Reference/src/MB01SD.o: src/SLICOT-Reference/src/MB01SD.f.o +.PHONY : src/SLICOT-Reference/src/MB01SD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01SD.f.o +.PHONY : src/SLICOT-Reference/src/MB01SD.f.o + +src/SLICOT-Reference/src/MB01SD.i: src/SLICOT-Reference/src/MB01SD.f.i +.PHONY : src/SLICOT-Reference/src/MB01SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01SD.f.i +.PHONY : src/SLICOT-Reference/src/MB01SD.f.i + +src/SLICOT-Reference/src/MB01SD.s: src/SLICOT-Reference/src/MB01SD.f.s +.PHONY : src/SLICOT-Reference/src/MB01SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01SD.f.s +.PHONY : src/SLICOT-Reference/src/MB01SD.f.s + +src/SLICOT-Reference/src/MB01SS.o: src/SLICOT-Reference/src/MB01SS.f.o +.PHONY : src/SLICOT-Reference/src/MB01SS.o + +# target to build an object file +src/SLICOT-Reference/src/MB01SS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01SS.f.o +.PHONY : src/SLICOT-Reference/src/MB01SS.f.o + +src/SLICOT-Reference/src/MB01SS.i: src/SLICOT-Reference/src/MB01SS.f.i +.PHONY : src/SLICOT-Reference/src/MB01SS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01SS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01SS.f.i +.PHONY : src/SLICOT-Reference/src/MB01SS.f.i + +src/SLICOT-Reference/src/MB01SS.s: src/SLICOT-Reference/src/MB01SS.f.s +.PHONY : src/SLICOT-Reference/src/MB01SS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01SS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01SS.f.s +.PHONY : src/SLICOT-Reference/src/MB01SS.f.s + +src/SLICOT-Reference/src/MB01TD.o: src/SLICOT-Reference/src/MB01TD.f.o +.PHONY : src/SLICOT-Reference/src/MB01TD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01TD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01TD.f.o +.PHONY : src/SLICOT-Reference/src/MB01TD.f.o + +src/SLICOT-Reference/src/MB01TD.i: src/SLICOT-Reference/src/MB01TD.f.i +.PHONY : src/SLICOT-Reference/src/MB01TD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01TD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01TD.f.i +.PHONY : src/SLICOT-Reference/src/MB01TD.f.i + +src/SLICOT-Reference/src/MB01TD.s: src/SLICOT-Reference/src/MB01TD.f.s +.PHONY : src/SLICOT-Reference/src/MB01TD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01TD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01TD.f.s +.PHONY : src/SLICOT-Reference/src/MB01TD.f.s + +src/SLICOT-Reference/src/MB01UD.o: src/SLICOT-Reference/src/MB01UD.f.o +.PHONY : src/SLICOT-Reference/src/MB01UD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01UD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UD.f.o +.PHONY : src/SLICOT-Reference/src/MB01UD.f.o + +src/SLICOT-Reference/src/MB01UD.i: src/SLICOT-Reference/src/MB01UD.f.i +.PHONY : src/SLICOT-Reference/src/MB01UD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01UD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UD.f.i +.PHONY : src/SLICOT-Reference/src/MB01UD.f.i + +src/SLICOT-Reference/src/MB01UD.s: src/SLICOT-Reference/src/MB01UD.f.s +.PHONY : src/SLICOT-Reference/src/MB01UD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01UD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UD.f.s +.PHONY : src/SLICOT-Reference/src/MB01UD.f.s + +src/SLICOT-Reference/src/MB01UW.o: src/SLICOT-Reference/src/MB01UW.f.o +.PHONY : src/SLICOT-Reference/src/MB01UW.o + +# target to build an object file +src/SLICOT-Reference/src/MB01UW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UW.f.o +.PHONY : src/SLICOT-Reference/src/MB01UW.f.o + +src/SLICOT-Reference/src/MB01UW.i: src/SLICOT-Reference/src/MB01UW.f.i +.PHONY : src/SLICOT-Reference/src/MB01UW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01UW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UW.f.i +.PHONY : src/SLICOT-Reference/src/MB01UW.f.i + +src/SLICOT-Reference/src/MB01UW.s: src/SLICOT-Reference/src/MB01UW.f.s +.PHONY : src/SLICOT-Reference/src/MB01UW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01UW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UW.f.s +.PHONY : src/SLICOT-Reference/src/MB01UW.f.s + +src/SLICOT-Reference/src/MB01UX.o: src/SLICOT-Reference/src/MB01UX.f.o +.PHONY : src/SLICOT-Reference/src/MB01UX.o + +# target to build an object file +src/SLICOT-Reference/src/MB01UX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UX.f.o +.PHONY : src/SLICOT-Reference/src/MB01UX.f.o + +src/SLICOT-Reference/src/MB01UX.i: src/SLICOT-Reference/src/MB01UX.f.i +.PHONY : src/SLICOT-Reference/src/MB01UX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01UX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UX.f.i +.PHONY : src/SLICOT-Reference/src/MB01UX.f.i + +src/SLICOT-Reference/src/MB01UX.s: src/SLICOT-Reference/src/MB01UX.f.s +.PHONY : src/SLICOT-Reference/src/MB01UX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01UX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UX.f.s +.PHONY : src/SLICOT-Reference/src/MB01UX.f.s + +src/SLICOT-Reference/src/MB01UY.o: src/SLICOT-Reference/src/MB01UY.f.o +.PHONY : src/SLICOT-Reference/src/MB01UY.o + +# target to build an object file +src/SLICOT-Reference/src/MB01UY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UY.f.o +.PHONY : src/SLICOT-Reference/src/MB01UY.f.o + +src/SLICOT-Reference/src/MB01UY.i: src/SLICOT-Reference/src/MB01UY.f.i +.PHONY : src/SLICOT-Reference/src/MB01UY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01UY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UY.f.i +.PHONY : src/SLICOT-Reference/src/MB01UY.f.i + +src/SLICOT-Reference/src/MB01UY.s: src/SLICOT-Reference/src/MB01UY.f.s +.PHONY : src/SLICOT-Reference/src/MB01UY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01UY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UY.f.s +.PHONY : src/SLICOT-Reference/src/MB01UY.f.s + +src/SLICOT-Reference/src/MB01UZ.o: src/SLICOT-Reference/src/MB01UZ.f.o +.PHONY : src/SLICOT-Reference/src/MB01UZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB01UZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UZ.f.o +.PHONY : src/SLICOT-Reference/src/MB01UZ.f.o + +src/SLICOT-Reference/src/MB01UZ.i: src/SLICOT-Reference/src/MB01UZ.f.i +.PHONY : src/SLICOT-Reference/src/MB01UZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01UZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UZ.f.i +.PHONY : src/SLICOT-Reference/src/MB01UZ.f.i + +src/SLICOT-Reference/src/MB01UZ.s: src/SLICOT-Reference/src/MB01UZ.f.s +.PHONY : src/SLICOT-Reference/src/MB01UZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01UZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UZ.f.s +.PHONY : src/SLICOT-Reference/src/MB01UZ.f.s + +src/SLICOT-Reference/src/MB01VD.o: src/SLICOT-Reference/src/MB01VD.f.o +.PHONY : src/SLICOT-Reference/src/MB01VD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01VD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01VD.f.o +.PHONY : src/SLICOT-Reference/src/MB01VD.f.o + +src/SLICOT-Reference/src/MB01VD.i: src/SLICOT-Reference/src/MB01VD.f.i +.PHONY : src/SLICOT-Reference/src/MB01VD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01VD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01VD.f.i +.PHONY : src/SLICOT-Reference/src/MB01VD.f.i + +src/SLICOT-Reference/src/MB01VD.s: src/SLICOT-Reference/src/MB01VD.f.s +.PHONY : src/SLICOT-Reference/src/MB01VD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01VD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01VD.f.s +.PHONY : src/SLICOT-Reference/src/MB01VD.f.s + +src/SLICOT-Reference/src/MB01WD.o: src/SLICOT-Reference/src/MB01WD.f.o +.PHONY : src/SLICOT-Reference/src/MB01WD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01WD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01WD.f.o +.PHONY : src/SLICOT-Reference/src/MB01WD.f.o + +src/SLICOT-Reference/src/MB01WD.i: src/SLICOT-Reference/src/MB01WD.f.i +.PHONY : src/SLICOT-Reference/src/MB01WD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01WD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01WD.f.i +.PHONY : src/SLICOT-Reference/src/MB01WD.f.i + +src/SLICOT-Reference/src/MB01WD.s: src/SLICOT-Reference/src/MB01WD.f.s +.PHONY : src/SLICOT-Reference/src/MB01WD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01WD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01WD.f.s +.PHONY : src/SLICOT-Reference/src/MB01WD.f.s + +src/SLICOT-Reference/src/MB01XD.o: src/SLICOT-Reference/src/MB01XD.f.o +.PHONY : src/SLICOT-Reference/src/MB01XD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01XD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01XD.f.o +.PHONY : src/SLICOT-Reference/src/MB01XD.f.o + +src/SLICOT-Reference/src/MB01XD.i: src/SLICOT-Reference/src/MB01XD.f.i +.PHONY : src/SLICOT-Reference/src/MB01XD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01XD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01XD.f.i +.PHONY : src/SLICOT-Reference/src/MB01XD.f.i + +src/SLICOT-Reference/src/MB01XD.s: src/SLICOT-Reference/src/MB01XD.f.s +.PHONY : src/SLICOT-Reference/src/MB01XD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01XD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01XD.f.s +.PHONY : src/SLICOT-Reference/src/MB01XD.f.s + +src/SLICOT-Reference/src/MB01XY.o: src/SLICOT-Reference/src/MB01XY.f.o +.PHONY : src/SLICOT-Reference/src/MB01XY.o + +# target to build an object file +src/SLICOT-Reference/src/MB01XY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01XY.f.o +.PHONY : src/SLICOT-Reference/src/MB01XY.f.o + +src/SLICOT-Reference/src/MB01XY.i: src/SLICOT-Reference/src/MB01XY.f.i +.PHONY : src/SLICOT-Reference/src/MB01XY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01XY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01XY.f.i +.PHONY : src/SLICOT-Reference/src/MB01XY.f.i + +src/SLICOT-Reference/src/MB01XY.s: src/SLICOT-Reference/src/MB01XY.f.s +.PHONY : src/SLICOT-Reference/src/MB01XY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01XY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01XY.f.s +.PHONY : src/SLICOT-Reference/src/MB01XY.f.s + +src/SLICOT-Reference/src/MB01YD.o: src/SLICOT-Reference/src/MB01YD.f.o +.PHONY : src/SLICOT-Reference/src/MB01YD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01YD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01YD.f.o +.PHONY : src/SLICOT-Reference/src/MB01YD.f.o + +src/SLICOT-Reference/src/MB01YD.i: src/SLICOT-Reference/src/MB01YD.f.i +.PHONY : src/SLICOT-Reference/src/MB01YD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01YD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01YD.f.i +.PHONY : src/SLICOT-Reference/src/MB01YD.f.i + +src/SLICOT-Reference/src/MB01YD.s: src/SLICOT-Reference/src/MB01YD.f.s +.PHONY : src/SLICOT-Reference/src/MB01YD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01YD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01YD.f.s +.PHONY : src/SLICOT-Reference/src/MB01YD.f.s + +src/SLICOT-Reference/src/MB01ZD.o: src/SLICOT-Reference/src/MB01ZD.f.o +.PHONY : src/SLICOT-Reference/src/MB01ZD.o + +# target to build an object file +src/SLICOT-Reference/src/MB01ZD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01ZD.f.o +.PHONY : src/SLICOT-Reference/src/MB01ZD.f.o + +src/SLICOT-Reference/src/MB01ZD.i: src/SLICOT-Reference/src/MB01ZD.f.i +.PHONY : src/SLICOT-Reference/src/MB01ZD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB01ZD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01ZD.f.i +.PHONY : src/SLICOT-Reference/src/MB01ZD.f.i + +src/SLICOT-Reference/src/MB01ZD.s: src/SLICOT-Reference/src/MB01ZD.f.s +.PHONY : src/SLICOT-Reference/src/MB01ZD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB01ZD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01ZD.f.s +.PHONY : src/SLICOT-Reference/src/MB01ZD.f.s + +src/SLICOT-Reference/src/MB02CD.o: src/SLICOT-Reference/src/MB02CD.f.o +.PHONY : src/SLICOT-Reference/src/MB02CD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CD.f.o +.PHONY : src/SLICOT-Reference/src/MB02CD.f.o + +src/SLICOT-Reference/src/MB02CD.i: src/SLICOT-Reference/src/MB02CD.f.i +.PHONY : src/SLICOT-Reference/src/MB02CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CD.f.i +.PHONY : src/SLICOT-Reference/src/MB02CD.f.i + +src/SLICOT-Reference/src/MB02CD.s: src/SLICOT-Reference/src/MB02CD.f.s +.PHONY : src/SLICOT-Reference/src/MB02CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CD.f.s +.PHONY : src/SLICOT-Reference/src/MB02CD.f.s + +src/SLICOT-Reference/src/MB02CU.o: src/SLICOT-Reference/src/MB02CU.f.o +.PHONY : src/SLICOT-Reference/src/MB02CU.o + +# target to build an object file +src/SLICOT-Reference/src/MB02CU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CU.f.o +.PHONY : src/SLICOT-Reference/src/MB02CU.f.o + +src/SLICOT-Reference/src/MB02CU.i: src/SLICOT-Reference/src/MB02CU.f.i +.PHONY : src/SLICOT-Reference/src/MB02CU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02CU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CU.f.i +.PHONY : src/SLICOT-Reference/src/MB02CU.f.i + +src/SLICOT-Reference/src/MB02CU.s: src/SLICOT-Reference/src/MB02CU.f.s +.PHONY : src/SLICOT-Reference/src/MB02CU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02CU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CU.f.s +.PHONY : src/SLICOT-Reference/src/MB02CU.f.s + +src/SLICOT-Reference/src/MB02CV.o: src/SLICOT-Reference/src/MB02CV.f.o +.PHONY : src/SLICOT-Reference/src/MB02CV.o + +# target to build an object file +src/SLICOT-Reference/src/MB02CV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CV.f.o +.PHONY : src/SLICOT-Reference/src/MB02CV.f.o + +src/SLICOT-Reference/src/MB02CV.i: src/SLICOT-Reference/src/MB02CV.f.i +.PHONY : src/SLICOT-Reference/src/MB02CV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02CV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CV.f.i +.PHONY : src/SLICOT-Reference/src/MB02CV.f.i + +src/SLICOT-Reference/src/MB02CV.s: src/SLICOT-Reference/src/MB02CV.f.s +.PHONY : src/SLICOT-Reference/src/MB02CV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02CV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CV.f.s +.PHONY : src/SLICOT-Reference/src/MB02CV.f.s + +src/SLICOT-Reference/src/MB02CX.o: src/SLICOT-Reference/src/MB02CX.f.o +.PHONY : src/SLICOT-Reference/src/MB02CX.o + +# target to build an object file +src/SLICOT-Reference/src/MB02CX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CX.f.o +.PHONY : src/SLICOT-Reference/src/MB02CX.f.o + +src/SLICOT-Reference/src/MB02CX.i: src/SLICOT-Reference/src/MB02CX.f.i +.PHONY : src/SLICOT-Reference/src/MB02CX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02CX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CX.f.i +.PHONY : src/SLICOT-Reference/src/MB02CX.f.i + +src/SLICOT-Reference/src/MB02CX.s: src/SLICOT-Reference/src/MB02CX.f.s +.PHONY : src/SLICOT-Reference/src/MB02CX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02CX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CX.f.s +.PHONY : src/SLICOT-Reference/src/MB02CX.f.s + +src/SLICOT-Reference/src/MB02CY.o: src/SLICOT-Reference/src/MB02CY.f.o +.PHONY : src/SLICOT-Reference/src/MB02CY.o + +# target to build an object file +src/SLICOT-Reference/src/MB02CY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CY.f.o +.PHONY : src/SLICOT-Reference/src/MB02CY.f.o + +src/SLICOT-Reference/src/MB02CY.i: src/SLICOT-Reference/src/MB02CY.f.i +.PHONY : src/SLICOT-Reference/src/MB02CY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02CY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CY.f.i +.PHONY : src/SLICOT-Reference/src/MB02CY.f.i + +src/SLICOT-Reference/src/MB02CY.s: src/SLICOT-Reference/src/MB02CY.f.s +.PHONY : src/SLICOT-Reference/src/MB02CY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02CY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CY.f.s +.PHONY : src/SLICOT-Reference/src/MB02CY.f.s + +src/SLICOT-Reference/src/MB02DD.o: src/SLICOT-Reference/src/MB02DD.f.o +.PHONY : src/SLICOT-Reference/src/MB02DD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02DD.f.o +.PHONY : src/SLICOT-Reference/src/MB02DD.f.o + +src/SLICOT-Reference/src/MB02DD.i: src/SLICOT-Reference/src/MB02DD.f.i +.PHONY : src/SLICOT-Reference/src/MB02DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02DD.f.i +.PHONY : src/SLICOT-Reference/src/MB02DD.f.i + +src/SLICOT-Reference/src/MB02DD.s: src/SLICOT-Reference/src/MB02DD.f.s +.PHONY : src/SLICOT-Reference/src/MB02DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02DD.f.s +.PHONY : src/SLICOT-Reference/src/MB02DD.f.s + +src/SLICOT-Reference/src/MB02ED.o: src/SLICOT-Reference/src/MB02ED.f.o +.PHONY : src/SLICOT-Reference/src/MB02ED.o + +# target to build an object file +src/SLICOT-Reference/src/MB02ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ED.f.o +.PHONY : src/SLICOT-Reference/src/MB02ED.f.o + +src/SLICOT-Reference/src/MB02ED.i: src/SLICOT-Reference/src/MB02ED.f.i +.PHONY : src/SLICOT-Reference/src/MB02ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ED.f.i +.PHONY : src/SLICOT-Reference/src/MB02ED.f.i + +src/SLICOT-Reference/src/MB02ED.s: src/SLICOT-Reference/src/MB02ED.f.s +.PHONY : src/SLICOT-Reference/src/MB02ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ED.f.s +.PHONY : src/SLICOT-Reference/src/MB02ED.f.s + +src/SLICOT-Reference/src/MB02FD.o: src/SLICOT-Reference/src/MB02FD.f.o +.PHONY : src/SLICOT-Reference/src/MB02FD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02FD.f.o +.PHONY : src/SLICOT-Reference/src/MB02FD.f.o + +src/SLICOT-Reference/src/MB02FD.i: src/SLICOT-Reference/src/MB02FD.f.i +.PHONY : src/SLICOT-Reference/src/MB02FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02FD.f.i +.PHONY : src/SLICOT-Reference/src/MB02FD.f.i + +src/SLICOT-Reference/src/MB02FD.s: src/SLICOT-Reference/src/MB02FD.f.s +.PHONY : src/SLICOT-Reference/src/MB02FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02FD.f.s +.PHONY : src/SLICOT-Reference/src/MB02FD.f.s + +src/SLICOT-Reference/src/MB02GD.o: src/SLICOT-Reference/src/MB02GD.f.o +.PHONY : src/SLICOT-Reference/src/MB02GD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02GD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02GD.f.o +.PHONY : src/SLICOT-Reference/src/MB02GD.f.o + +src/SLICOT-Reference/src/MB02GD.i: src/SLICOT-Reference/src/MB02GD.f.i +.PHONY : src/SLICOT-Reference/src/MB02GD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02GD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02GD.f.i +.PHONY : src/SLICOT-Reference/src/MB02GD.f.i + +src/SLICOT-Reference/src/MB02GD.s: src/SLICOT-Reference/src/MB02GD.f.s +.PHONY : src/SLICOT-Reference/src/MB02GD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02GD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02GD.f.s +.PHONY : src/SLICOT-Reference/src/MB02GD.f.s + +src/SLICOT-Reference/src/MB02HD.o: src/SLICOT-Reference/src/MB02HD.f.o +.PHONY : src/SLICOT-Reference/src/MB02HD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02HD.f.o +.PHONY : src/SLICOT-Reference/src/MB02HD.f.o + +src/SLICOT-Reference/src/MB02HD.i: src/SLICOT-Reference/src/MB02HD.f.i +.PHONY : src/SLICOT-Reference/src/MB02HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02HD.f.i +.PHONY : src/SLICOT-Reference/src/MB02HD.f.i + +src/SLICOT-Reference/src/MB02HD.s: src/SLICOT-Reference/src/MB02HD.f.s +.PHONY : src/SLICOT-Reference/src/MB02HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02HD.f.s +.PHONY : src/SLICOT-Reference/src/MB02HD.f.s + +src/SLICOT-Reference/src/MB02ID.o: src/SLICOT-Reference/src/MB02ID.f.o +.PHONY : src/SLICOT-Reference/src/MB02ID.o + +# target to build an object file +src/SLICOT-Reference/src/MB02ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ID.f.o +.PHONY : src/SLICOT-Reference/src/MB02ID.f.o + +src/SLICOT-Reference/src/MB02ID.i: src/SLICOT-Reference/src/MB02ID.f.i +.PHONY : src/SLICOT-Reference/src/MB02ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ID.f.i +.PHONY : src/SLICOT-Reference/src/MB02ID.f.i + +src/SLICOT-Reference/src/MB02ID.s: src/SLICOT-Reference/src/MB02ID.f.s +.PHONY : src/SLICOT-Reference/src/MB02ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ID.f.s +.PHONY : src/SLICOT-Reference/src/MB02ID.f.s + +src/SLICOT-Reference/src/MB02JD.o: src/SLICOT-Reference/src/MB02JD.f.o +.PHONY : src/SLICOT-Reference/src/MB02JD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02JD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02JD.f.o +.PHONY : src/SLICOT-Reference/src/MB02JD.f.o + +src/SLICOT-Reference/src/MB02JD.i: src/SLICOT-Reference/src/MB02JD.f.i +.PHONY : src/SLICOT-Reference/src/MB02JD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02JD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02JD.f.i +.PHONY : src/SLICOT-Reference/src/MB02JD.f.i + +src/SLICOT-Reference/src/MB02JD.s: src/SLICOT-Reference/src/MB02JD.f.s +.PHONY : src/SLICOT-Reference/src/MB02JD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02JD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02JD.f.s +.PHONY : src/SLICOT-Reference/src/MB02JD.f.s + +src/SLICOT-Reference/src/MB02JX.o: src/SLICOT-Reference/src/MB02JX.f.o +.PHONY : src/SLICOT-Reference/src/MB02JX.o + +# target to build an object file +src/SLICOT-Reference/src/MB02JX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02JX.f.o +.PHONY : src/SLICOT-Reference/src/MB02JX.f.o + +src/SLICOT-Reference/src/MB02JX.i: src/SLICOT-Reference/src/MB02JX.f.i +.PHONY : src/SLICOT-Reference/src/MB02JX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02JX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02JX.f.i +.PHONY : src/SLICOT-Reference/src/MB02JX.f.i + +src/SLICOT-Reference/src/MB02JX.s: src/SLICOT-Reference/src/MB02JX.f.s +.PHONY : src/SLICOT-Reference/src/MB02JX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02JX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02JX.f.s +.PHONY : src/SLICOT-Reference/src/MB02JX.f.s + +src/SLICOT-Reference/src/MB02KD.o: src/SLICOT-Reference/src/MB02KD.f.o +.PHONY : src/SLICOT-Reference/src/MB02KD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02KD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02KD.f.o +.PHONY : src/SLICOT-Reference/src/MB02KD.f.o + +src/SLICOT-Reference/src/MB02KD.i: src/SLICOT-Reference/src/MB02KD.f.i +.PHONY : src/SLICOT-Reference/src/MB02KD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02KD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02KD.f.i +.PHONY : src/SLICOT-Reference/src/MB02KD.f.i + +src/SLICOT-Reference/src/MB02KD.s: src/SLICOT-Reference/src/MB02KD.f.s +.PHONY : src/SLICOT-Reference/src/MB02KD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02KD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02KD.f.s +.PHONY : src/SLICOT-Reference/src/MB02KD.f.s + +src/SLICOT-Reference/src/MB02MD.o: src/SLICOT-Reference/src/MB02MD.f.o +.PHONY : src/SLICOT-Reference/src/MB02MD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02MD.f.o +.PHONY : src/SLICOT-Reference/src/MB02MD.f.o + +src/SLICOT-Reference/src/MB02MD.i: src/SLICOT-Reference/src/MB02MD.f.i +.PHONY : src/SLICOT-Reference/src/MB02MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02MD.f.i +.PHONY : src/SLICOT-Reference/src/MB02MD.f.i + +src/SLICOT-Reference/src/MB02MD.s: src/SLICOT-Reference/src/MB02MD.f.s +.PHONY : src/SLICOT-Reference/src/MB02MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02MD.f.s +.PHONY : src/SLICOT-Reference/src/MB02MD.f.s + +src/SLICOT-Reference/src/MB02ND.o: src/SLICOT-Reference/src/MB02ND.f.o +.PHONY : src/SLICOT-Reference/src/MB02ND.o + +# target to build an object file +src/SLICOT-Reference/src/MB02ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ND.f.o +.PHONY : src/SLICOT-Reference/src/MB02ND.f.o + +src/SLICOT-Reference/src/MB02ND.i: src/SLICOT-Reference/src/MB02ND.f.i +.PHONY : src/SLICOT-Reference/src/MB02ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ND.f.i +.PHONY : src/SLICOT-Reference/src/MB02ND.f.i + +src/SLICOT-Reference/src/MB02ND.s: src/SLICOT-Reference/src/MB02ND.f.s +.PHONY : src/SLICOT-Reference/src/MB02ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ND.f.s +.PHONY : src/SLICOT-Reference/src/MB02ND.f.s + +src/SLICOT-Reference/src/MB02NY.o: src/SLICOT-Reference/src/MB02NY.f.o +.PHONY : src/SLICOT-Reference/src/MB02NY.o + +# target to build an object file +src/SLICOT-Reference/src/MB02NY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02NY.f.o +.PHONY : src/SLICOT-Reference/src/MB02NY.f.o + +src/SLICOT-Reference/src/MB02NY.i: src/SLICOT-Reference/src/MB02NY.f.i +.PHONY : src/SLICOT-Reference/src/MB02NY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02NY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02NY.f.i +.PHONY : src/SLICOT-Reference/src/MB02NY.f.i + +src/SLICOT-Reference/src/MB02NY.s: src/SLICOT-Reference/src/MB02NY.f.s +.PHONY : src/SLICOT-Reference/src/MB02NY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02NY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02NY.f.s +.PHONY : src/SLICOT-Reference/src/MB02NY.f.s + +src/SLICOT-Reference/src/MB02OD.o: src/SLICOT-Reference/src/MB02OD.f.o +.PHONY : src/SLICOT-Reference/src/MB02OD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02OD.f.o +.PHONY : src/SLICOT-Reference/src/MB02OD.f.o + +src/SLICOT-Reference/src/MB02OD.i: src/SLICOT-Reference/src/MB02OD.f.i +.PHONY : src/SLICOT-Reference/src/MB02OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02OD.f.i +.PHONY : src/SLICOT-Reference/src/MB02OD.f.i + +src/SLICOT-Reference/src/MB02OD.s: src/SLICOT-Reference/src/MB02OD.f.s +.PHONY : src/SLICOT-Reference/src/MB02OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02OD.f.s +.PHONY : src/SLICOT-Reference/src/MB02OD.f.s + +src/SLICOT-Reference/src/MB02PD.o: src/SLICOT-Reference/src/MB02PD.f.o +.PHONY : src/SLICOT-Reference/src/MB02PD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02PD.f.o +.PHONY : src/SLICOT-Reference/src/MB02PD.f.o + +src/SLICOT-Reference/src/MB02PD.i: src/SLICOT-Reference/src/MB02PD.f.i +.PHONY : src/SLICOT-Reference/src/MB02PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02PD.f.i +.PHONY : src/SLICOT-Reference/src/MB02PD.f.i + +src/SLICOT-Reference/src/MB02PD.s: src/SLICOT-Reference/src/MB02PD.f.s +.PHONY : src/SLICOT-Reference/src/MB02PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02PD.f.s +.PHONY : src/SLICOT-Reference/src/MB02PD.f.s + +src/SLICOT-Reference/src/MB02QD.o: src/SLICOT-Reference/src/MB02QD.f.o +.PHONY : src/SLICOT-Reference/src/MB02QD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02QD.f.o +.PHONY : src/SLICOT-Reference/src/MB02QD.f.o + +src/SLICOT-Reference/src/MB02QD.i: src/SLICOT-Reference/src/MB02QD.f.i +.PHONY : src/SLICOT-Reference/src/MB02QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02QD.f.i +.PHONY : src/SLICOT-Reference/src/MB02QD.f.i + +src/SLICOT-Reference/src/MB02QD.s: src/SLICOT-Reference/src/MB02QD.f.s +.PHONY : src/SLICOT-Reference/src/MB02QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02QD.f.s +.PHONY : src/SLICOT-Reference/src/MB02QD.f.s + +src/SLICOT-Reference/src/MB02QY.o: src/SLICOT-Reference/src/MB02QY.f.o +.PHONY : src/SLICOT-Reference/src/MB02QY.o + +# target to build an object file +src/SLICOT-Reference/src/MB02QY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02QY.f.o +.PHONY : src/SLICOT-Reference/src/MB02QY.f.o + +src/SLICOT-Reference/src/MB02QY.i: src/SLICOT-Reference/src/MB02QY.f.i +.PHONY : src/SLICOT-Reference/src/MB02QY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02QY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02QY.f.i +.PHONY : src/SLICOT-Reference/src/MB02QY.f.i + +src/SLICOT-Reference/src/MB02QY.s: src/SLICOT-Reference/src/MB02QY.f.s +.PHONY : src/SLICOT-Reference/src/MB02QY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02QY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02QY.f.s +.PHONY : src/SLICOT-Reference/src/MB02QY.f.s + +src/SLICOT-Reference/src/MB02RD.o: src/SLICOT-Reference/src/MB02RD.f.o +.PHONY : src/SLICOT-Reference/src/MB02RD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02RD.f.o +.PHONY : src/SLICOT-Reference/src/MB02RD.f.o + +src/SLICOT-Reference/src/MB02RD.i: src/SLICOT-Reference/src/MB02RD.f.i +.PHONY : src/SLICOT-Reference/src/MB02RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02RD.f.i +.PHONY : src/SLICOT-Reference/src/MB02RD.f.i + +src/SLICOT-Reference/src/MB02RD.s: src/SLICOT-Reference/src/MB02RD.f.s +.PHONY : src/SLICOT-Reference/src/MB02RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02RD.f.s +.PHONY : src/SLICOT-Reference/src/MB02RD.f.s + +src/SLICOT-Reference/src/MB02RZ.o: src/SLICOT-Reference/src/MB02RZ.f.o +.PHONY : src/SLICOT-Reference/src/MB02RZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB02RZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02RZ.f.o +.PHONY : src/SLICOT-Reference/src/MB02RZ.f.o + +src/SLICOT-Reference/src/MB02RZ.i: src/SLICOT-Reference/src/MB02RZ.f.i +.PHONY : src/SLICOT-Reference/src/MB02RZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02RZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02RZ.f.i +.PHONY : src/SLICOT-Reference/src/MB02RZ.f.i + +src/SLICOT-Reference/src/MB02RZ.s: src/SLICOT-Reference/src/MB02RZ.f.s +.PHONY : src/SLICOT-Reference/src/MB02RZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02RZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02RZ.f.s +.PHONY : src/SLICOT-Reference/src/MB02RZ.f.s + +src/SLICOT-Reference/src/MB02SD.o: src/SLICOT-Reference/src/MB02SD.f.o +.PHONY : src/SLICOT-Reference/src/MB02SD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02SD.f.o +.PHONY : src/SLICOT-Reference/src/MB02SD.f.o + +src/SLICOT-Reference/src/MB02SD.i: src/SLICOT-Reference/src/MB02SD.f.i +.PHONY : src/SLICOT-Reference/src/MB02SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02SD.f.i +.PHONY : src/SLICOT-Reference/src/MB02SD.f.i + +src/SLICOT-Reference/src/MB02SD.s: src/SLICOT-Reference/src/MB02SD.f.s +.PHONY : src/SLICOT-Reference/src/MB02SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02SD.f.s +.PHONY : src/SLICOT-Reference/src/MB02SD.f.s + +src/SLICOT-Reference/src/MB02SZ.o: src/SLICOT-Reference/src/MB02SZ.f.o +.PHONY : src/SLICOT-Reference/src/MB02SZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB02SZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02SZ.f.o +.PHONY : src/SLICOT-Reference/src/MB02SZ.f.o + +src/SLICOT-Reference/src/MB02SZ.i: src/SLICOT-Reference/src/MB02SZ.f.i +.PHONY : src/SLICOT-Reference/src/MB02SZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02SZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02SZ.f.i +.PHONY : src/SLICOT-Reference/src/MB02SZ.f.i + +src/SLICOT-Reference/src/MB02SZ.s: src/SLICOT-Reference/src/MB02SZ.f.s +.PHONY : src/SLICOT-Reference/src/MB02SZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02SZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02SZ.f.s +.PHONY : src/SLICOT-Reference/src/MB02SZ.f.s + +src/SLICOT-Reference/src/MB02TD.o: src/SLICOT-Reference/src/MB02TD.f.o +.PHONY : src/SLICOT-Reference/src/MB02TD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02TD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02TD.f.o +.PHONY : src/SLICOT-Reference/src/MB02TD.f.o + +src/SLICOT-Reference/src/MB02TD.i: src/SLICOT-Reference/src/MB02TD.f.i +.PHONY : src/SLICOT-Reference/src/MB02TD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02TD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02TD.f.i +.PHONY : src/SLICOT-Reference/src/MB02TD.f.i + +src/SLICOT-Reference/src/MB02TD.s: src/SLICOT-Reference/src/MB02TD.f.s +.PHONY : src/SLICOT-Reference/src/MB02TD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02TD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02TD.f.s +.PHONY : src/SLICOT-Reference/src/MB02TD.f.s + +src/SLICOT-Reference/src/MB02TZ.o: src/SLICOT-Reference/src/MB02TZ.f.o +.PHONY : src/SLICOT-Reference/src/MB02TZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB02TZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02TZ.f.o +.PHONY : src/SLICOT-Reference/src/MB02TZ.f.o + +src/SLICOT-Reference/src/MB02TZ.i: src/SLICOT-Reference/src/MB02TZ.f.i +.PHONY : src/SLICOT-Reference/src/MB02TZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02TZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02TZ.f.i +.PHONY : src/SLICOT-Reference/src/MB02TZ.f.i + +src/SLICOT-Reference/src/MB02TZ.s: src/SLICOT-Reference/src/MB02TZ.f.s +.PHONY : src/SLICOT-Reference/src/MB02TZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02TZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02TZ.f.s +.PHONY : src/SLICOT-Reference/src/MB02TZ.f.s + +src/SLICOT-Reference/src/MB02UD.o: src/SLICOT-Reference/src/MB02UD.f.o +.PHONY : src/SLICOT-Reference/src/MB02UD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02UD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UD.f.o +.PHONY : src/SLICOT-Reference/src/MB02UD.f.o + +src/SLICOT-Reference/src/MB02UD.i: src/SLICOT-Reference/src/MB02UD.f.i +.PHONY : src/SLICOT-Reference/src/MB02UD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02UD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UD.f.i +.PHONY : src/SLICOT-Reference/src/MB02UD.f.i + +src/SLICOT-Reference/src/MB02UD.s: src/SLICOT-Reference/src/MB02UD.f.s +.PHONY : src/SLICOT-Reference/src/MB02UD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02UD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UD.f.s +.PHONY : src/SLICOT-Reference/src/MB02UD.f.s + +src/SLICOT-Reference/src/MB02UU.o: src/SLICOT-Reference/src/MB02UU.f.o +.PHONY : src/SLICOT-Reference/src/MB02UU.o + +# target to build an object file +src/SLICOT-Reference/src/MB02UU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UU.f.o +.PHONY : src/SLICOT-Reference/src/MB02UU.f.o + +src/SLICOT-Reference/src/MB02UU.i: src/SLICOT-Reference/src/MB02UU.f.i +.PHONY : src/SLICOT-Reference/src/MB02UU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02UU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UU.f.i +.PHONY : src/SLICOT-Reference/src/MB02UU.f.i + +src/SLICOT-Reference/src/MB02UU.s: src/SLICOT-Reference/src/MB02UU.f.s +.PHONY : src/SLICOT-Reference/src/MB02UU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02UU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UU.f.s +.PHONY : src/SLICOT-Reference/src/MB02UU.f.s + +src/SLICOT-Reference/src/MB02UV.o: src/SLICOT-Reference/src/MB02UV.f.o +.PHONY : src/SLICOT-Reference/src/MB02UV.o + +# target to build an object file +src/SLICOT-Reference/src/MB02UV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UV.f.o +.PHONY : src/SLICOT-Reference/src/MB02UV.f.o + +src/SLICOT-Reference/src/MB02UV.i: src/SLICOT-Reference/src/MB02UV.f.i +.PHONY : src/SLICOT-Reference/src/MB02UV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02UV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UV.f.i +.PHONY : src/SLICOT-Reference/src/MB02UV.f.i + +src/SLICOT-Reference/src/MB02UV.s: src/SLICOT-Reference/src/MB02UV.f.s +.PHONY : src/SLICOT-Reference/src/MB02UV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02UV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UV.f.s +.PHONY : src/SLICOT-Reference/src/MB02UV.f.s + +src/SLICOT-Reference/src/MB02UW.o: src/SLICOT-Reference/src/MB02UW.f.o +.PHONY : src/SLICOT-Reference/src/MB02UW.o + +# target to build an object file +src/SLICOT-Reference/src/MB02UW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UW.f.o +.PHONY : src/SLICOT-Reference/src/MB02UW.f.o + +src/SLICOT-Reference/src/MB02UW.i: src/SLICOT-Reference/src/MB02UW.f.i +.PHONY : src/SLICOT-Reference/src/MB02UW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02UW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UW.f.i +.PHONY : src/SLICOT-Reference/src/MB02UW.f.i + +src/SLICOT-Reference/src/MB02UW.s: src/SLICOT-Reference/src/MB02UW.f.s +.PHONY : src/SLICOT-Reference/src/MB02UW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02UW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UW.f.s +.PHONY : src/SLICOT-Reference/src/MB02UW.f.s + +src/SLICOT-Reference/src/MB02VD.o: src/SLICOT-Reference/src/MB02VD.f.o +.PHONY : src/SLICOT-Reference/src/MB02VD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02VD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02VD.f.o +.PHONY : src/SLICOT-Reference/src/MB02VD.f.o + +src/SLICOT-Reference/src/MB02VD.i: src/SLICOT-Reference/src/MB02VD.f.i +.PHONY : src/SLICOT-Reference/src/MB02VD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02VD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02VD.f.i +.PHONY : src/SLICOT-Reference/src/MB02VD.f.i + +src/SLICOT-Reference/src/MB02VD.s: src/SLICOT-Reference/src/MB02VD.f.s +.PHONY : src/SLICOT-Reference/src/MB02VD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02VD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02VD.f.s +.PHONY : src/SLICOT-Reference/src/MB02VD.f.s + +src/SLICOT-Reference/src/MB02WD.o: src/SLICOT-Reference/src/MB02WD.f.o +.PHONY : src/SLICOT-Reference/src/MB02WD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02WD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02WD.f.o +.PHONY : src/SLICOT-Reference/src/MB02WD.f.o + +src/SLICOT-Reference/src/MB02WD.i: src/SLICOT-Reference/src/MB02WD.f.i +.PHONY : src/SLICOT-Reference/src/MB02WD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02WD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02WD.f.i +.PHONY : src/SLICOT-Reference/src/MB02WD.f.i + +src/SLICOT-Reference/src/MB02WD.s: src/SLICOT-Reference/src/MB02WD.f.s +.PHONY : src/SLICOT-Reference/src/MB02WD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02WD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02WD.f.s +.PHONY : src/SLICOT-Reference/src/MB02WD.f.s + +src/SLICOT-Reference/src/MB02XD.o: src/SLICOT-Reference/src/MB02XD.f.o +.PHONY : src/SLICOT-Reference/src/MB02XD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02XD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02XD.f.o +.PHONY : src/SLICOT-Reference/src/MB02XD.f.o + +src/SLICOT-Reference/src/MB02XD.i: src/SLICOT-Reference/src/MB02XD.f.i +.PHONY : src/SLICOT-Reference/src/MB02XD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02XD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02XD.f.i +.PHONY : src/SLICOT-Reference/src/MB02XD.f.i + +src/SLICOT-Reference/src/MB02XD.s: src/SLICOT-Reference/src/MB02XD.f.s +.PHONY : src/SLICOT-Reference/src/MB02XD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02XD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02XD.f.s +.PHONY : src/SLICOT-Reference/src/MB02XD.f.s + +src/SLICOT-Reference/src/MB02YD.o: src/SLICOT-Reference/src/MB02YD.f.o +.PHONY : src/SLICOT-Reference/src/MB02YD.o + +# target to build an object file +src/SLICOT-Reference/src/MB02YD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02YD.f.o +.PHONY : src/SLICOT-Reference/src/MB02YD.f.o + +src/SLICOT-Reference/src/MB02YD.i: src/SLICOT-Reference/src/MB02YD.f.i +.PHONY : src/SLICOT-Reference/src/MB02YD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB02YD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02YD.f.i +.PHONY : src/SLICOT-Reference/src/MB02YD.f.i + +src/SLICOT-Reference/src/MB02YD.s: src/SLICOT-Reference/src/MB02YD.f.s +.PHONY : src/SLICOT-Reference/src/MB02YD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB02YD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02YD.f.s +.PHONY : src/SLICOT-Reference/src/MB02YD.f.s + +src/SLICOT-Reference/src/MB03AB.o: src/SLICOT-Reference/src/MB03AB.f.o +.PHONY : src/SLICOT-Reference/src/MB03AB.o + +# target to build an object file +src/SLICOT-Reference/src/MB03AB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AB.f.o +.PHONY : src/SLICOT-Reference/src/MB03AB.f.o + +src/SLICOT-Reference/src/MB03AB.i: src/SLICOT-Reference/src/MB03AB.f.i +.PHONY : src/SLICOT-Reference/src/MB03AB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03AB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AB.f.i +.PHONY : src/SLICOT-Reference/src/MB03AB.f.i + +src/SLICOT-Reference/src/MB03AB.s: src/SLICOT-Reference/src/MB03AB.f.s +.PHONY : src/SLICOT-Reference/src/MB03AB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03AB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AB.f.s +.PHONY : src/SLICOT-Reference/src/MB03AB.f.s + +src/SLICOT-Reference/src/MB03AD.o: src/SLICOT-Reference/src/MB03AD.f.o +.PHONY : src/SLICOT-Reference/src/MB03AD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AD.f.o +.PHONY : src/SLICOT-Reference/src/MB03AD.f.o + +src/SLICOT-Reference/src/MB03AD.i: src/SLICOT-Reference/src/MB03AD.f.i +.PHONY : src/SLICOT-Reference/src/MB03AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AD.f.i +.PHONY : src/SLICOT-Reference/src/MB03AD.f.i + +src/SLICOT-Reference/src/MB03AD.s: src/SLICOT-Reference/src/MB03AD.f.s +.PHONY : src/SLICOT-Reference/src/MB03AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AD.f.s +.PHONY : src/SLICOT-Reference/src/MB03AD.f.s + +src/SLICOT-Reference/src/MB03AE.o: src/SLICOT-Reference/src/MB03AE.f.o +.PHONY : src/SLICOT-Reference/src/MB03AE.o + +# target to build an object file +src/SLICOT-Reference/src/MB03AE.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AE.f.o +.PHONY : src/SLICOT-Reference/src/MB03AE.f.o + +src/SLICOT-Reference/src/MB03AE.i: src/SLICOT-Reference/src/MB03AE.f.i +.PHONY : src/SLICOT-Reference/src/MB03AE.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03AE.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AE.f.i +.PHONY : src/SLICOT-Reference/src/MB03AE.f.i + +src/SLICOT-Reference/src/MB03AE.s: src/SLICOT-Reference/src/MB03AE.f.s +.PHONY : src/SLICOT-Reference/src/MB03AE.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03AE.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AE.f.s +.PHONY : src/SLICOT-Reference/src/MB03AE.f.s + +src/SLICOT-Reference/src/MB03AF.o: src/SLICOT-Reference/src/MB03AF.f.o +.PHONY : src/SLICOT-Reference/src/MB03AF.o + +# target to build an object file +src/SLICOT-Reference/src/MB03AF.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AF.f.o +.PHONY : src/SLICOT-Reference/src/MB03AF.f.o + +src/SLICOT-Reference/src/MB03AF.i: src/SLICOT-Reference/src/MB03AF.f.i +.PHONY : src/SLICOT-Reference/src/MB03AF.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03AF.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AF.f.i +.PHONY : src/SLICOT-Reference/src/MB03AF.f.i + +src/SLICOT-Reference/src/MB03AF.s: src/SLICOT-Reference/src/MB03AF.f.s +.PHONY : src/SLICOT-Reference/src/MB03AF.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03AF.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AF.f.s +.PHONY : src/SLICOT-Reference/src/MB03AF.f.s + +src/SLICOT-Reference/src/MB03AG.o: src/SLICOT-Reference/src/MB03AG.f.o +.PHONY : src/SLICOT-Reference/src/MB03AG.o + +# target to build an object file +src/SLICOT-Reference/src/MB03AG.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AG.f.o +.PHONY : src/SLICOT-Reference/src/MB03AG.f.o + +src/SLICOT-Reference/src/MB03AG.i: src/SLICOT-Reference/src/MB03AG.f.i +.PHONY : src/SLICOT-Reference/src/MB03AG.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03AG.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AG.f.i +.PHONY : src/SLICOT-Reference/src/MB03AG.f.i + +src/SLICOT-Reference/src/MB03AG.s: src/SLICOT-Reference/src/MB03AG.f.s +.PHONY : src/SLICOT-Reference/src/MB03AG.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03AG.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AG.f.s +.PHONY : src/SLICOT-Reference/src/MB03AG.f.s + +src/SLICOT-Reference/src/MB03AH.o: src/SLICOT-Reference/src/MB03AH.f.o +.PHONY : src/SLICOT-Reference/src/MB03AH.o + +# target to build an object file +src/SLICOT-Reference/src/MB03AH.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AH.f.o +.PHONY : src/SLICOT-Reference/src/MB03AH.f.o + +src/SLICOT-Reference/src/MB03AH.i: src/SLICOT-Reference/src/MB03AH.f.i +.PHONY : src/SLICOT-Reference/src/MB03AH.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03AH.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AH.f.i +.PHONY : src/SLICOT-Reference/src/MB03AH.f.i + +src/SLICOT-Reference/src/MB03AH.s: src/SLICOT-Reference/src/MB03AH.f.s +.PHONY : src/SLICOT-Reference/src/MB03AH.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03AH.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AH.f.s +.PHONY : src/SLICOT-Reference/src/MB03AH.f.s + +src/SLICOT-Reference/src/MB03AI.o: src/SLICOT-Reference/src/MB03AI.f.o +.PHONY : src/SLICOT-Reference/src/MB03AI.o + +# target to build an object file +src/SLICOT-Reference/src/MB03AI.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AI.f.o +.PHONY : src/SLICOT-Reference/src/MB03AI.f.o + +src/SLICOT-Reference/src/MB03AI.i: src/SLICOT-Reference/src/MB03AI.f.i +.PHONY : src/SLICOT-Reference/src/MB03AI.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03AI.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AI.f.i +.PHONY : src/SLICOT-Reference/src/MB03AI.f.i + +src/SLICOT-Reference/src/MB03AI.s: src/SLICOT-Reference/src/MB03AI.f.s +.PHONY : src/SLICOT-Reference/src/MB03AI.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03AI.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AI.f.s +.PHONY : src/SLICOT-Reference/src/MB03AI.f.s + +src/SLICOT-Reference/src/MB03BA.o: src/SLICOT-Reference/src/MB03BA.f.o +.PHONY : src/SLICOT-Reference/src/MB03BA.o + +# target to build an object file +src/SLICOT-Reference/src/MB03BA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BA.f.o +.PHONY : src/SLICOT-Reference/src/MB03BA.f.o + +src/SLICOT-Reference/src/MB03BA.i: src/SLICOT-Reference/src/MB03BA.f.i +.PHONY : src/SLICOT-Reference/src/MB03BA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03BA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BA.f.i +.PHONY : src/SLICOT-Reference/src/MB03BA.f.i + +src/SLICOT-Reference/src/MB03BA.s: src/SLICOT-Reference/src/MB03BA.f.s +.PHONY : src/SLICOT-Reference/src/MB03BA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03BA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BA.f.s +.PHONY : src/SLICOT-Reference/src/MB03BA.f.s + +src/SLICOT-Reference/src/MB03BB.o: src/SLICOT-Reference/src/MB03BB.f.o +.PHONY : src/SLICOT-Reference/src/MB03BB.o + +# target to build an object file +src/SLICOT-Reference/src/MB03BB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BB.f.o +.PHONY : src/SLICOT-Reference/src/MB03BB.f.o + +src/SLICOT-Reference/src/MB03BB.i: src/SLICOT-Reference/src/MB03BB.f.i +.PHONY : src/SLICOT-Reference/src/MB03BB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03BB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BB.f.i +.PHONY : src/SLICOT-Reference/src/MB03BB.f.i + +src/SLICOT-Reference/src/MB03BB.s: src/SLICOT-Reference/src/MB03BB.f.s +.PHONY : src/SLICOT-Reference/src/MB03BB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03BB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BB.f.s +.PHONY : src/SLICOT-Reference/src/MB03BB.f.s + +src/SLICOT-Reference/src/MB03BC.o: src/SLICOT-Reference/src/MB03BC.f.o +.PHONY : src/SLICOT-Reference/src/MB03BC.o + +# target to build an object file +src/SLICOT-Reference/src/MB03BC.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BC.f.o +.PHONY : src/SLICOT-Reference/src/MB03BC.f.o + +src/SLICOT-Reference/src/MB03BC.i: src/SLICOT-Reference/src/MB03BC.f.i +.PHONY : src/SLICOT-Reference/src/MB03BC.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03BC.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BC.f.i +.PHONY : src/SLICOT-Reference/src/MB03BC.f.i + +src/SLICOT-Reference/src/MB03BC.s: src/SLICOT-Reference/src/MB03BC.f.s +.PHONY : src/SLICOT-Reference/src/MB03BC.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03BC.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BC.f.s +.PHONY : src/SLICOT-Reference/src/MB03BC.f.s + +src/SLICOT-Reference/src/MB03BD.o: src/SLICOT-Reference/src/MB03BD.f.o +.PHONY : src/SLICOT-Reference/src/MB03BD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BD.f.o +.PHONY : src/SLICOT-Reference/src/MB03BD.f.o + +src/SLICOT-Reference/src/MB03BD.i: src/SLICOT-Reference/src/MB03BD.f.i +.PHONY : src/SLICOT-Reference/src/MB03BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BD.f.i +.PHONY : src/SLICOT-Reference/src/MB03BD.f.i + +src/SLICOT-Reference/src/MB03BD.s: src/SLICOT-Reference/src/MB03BD.f.s +.PHONY : src/SLICOT-Reference/src/MB03BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BD.f.s +.PHONY : src/SLICOT-Reference/src/MB03BD.f.s + +src/SLICOT-Reference/src/MB03BE.o: src/SLICOT-Reference/src/MB03BE.f.o +.PHONY : src/SLICOT-Reference/src/MB03BE.o + +# target to build an object file +src/SLICOT-Reference/src/MB03BE.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BE.f.o +.PHONY : src/SLICOT-Reference/src/MB03BE.f.o + +src/SLICOT-Reference/src/MB03BE.i: src/SLICOT-Reference/src/MB03BE.f.i +.PHONY : src/SLICOT-Reference/src/MB03BE.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03BE.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BE.f.i +.PHONY : src/SLICOT-Reference/src/MB03BE.f.i + +src/SLICOT-Reference/src/MB03BE.s: src/SLICOT-Reference/src/MB03BE.f.s +.PHONY : src/SLICOT-Reference/src/MB03BE.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03BE.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BE.f.s +.PHONY : src/SLICOT-Reference/src/MB03BE.f.s + +src/SLICOT-Reference/src/MB03BF.o: src/SLICOT-Reference/src/MB03BF.f.o +.PHONY : src/SLICOT-Reference/src/MB03BF.o + +# target to build an object file +src/SLICOT-Reference/src/MB03BF.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BF.f.o +.PHONY : src/SLICOT-Reference/src/MB03BF.f.o + +src/SLICOT-Reference/src/MB03BF.i: src/SLICOT-Reference/src/MB03BF.f.i +.PHONY : src/SLICOT-Reference/src/MB03BF.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03BF.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BF.f.i +.PHONY : src/SLICOT-Reference/src/MB03BF.f.i + +src/SLICOT-Reference/src/MB03BF.s: src/SLICOT-Reference/src/MB03BF.f.s +.PHONY : src/SLICOT-Reference/src/MB03BF.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03BF.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BF.f.s +.PHONY : src/SLICOT-Reference/src/MB03BF.f.s + +src/SLICOT-Reference/src/MB03BG.o: src/SLICOT-Reference/src/MB03BG.f.o +.PHONY : src/SLICOT-Reference/src/MB03BG.o + +# target to build an object file +src/SLICOT-Reference/src/MB03BG.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BG.f.o +.PHONY : src/SLICOT-Reference/src/MB03BG.f.o + +src/SLICOT-Reference/src/MB03BG.i: src/SLICOT-Reference/src/MB03BG.f.i +.PHONY : src/SLICOT-Reference/src/MB03BG.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03BG.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BG.f.i +.PHONY : src/SLICOT-Reference/src/MB03BG.f.i + +src/SLICOT-Reference/src/MB03BG.s: src/SLICOT-Reference/src/MB03BG.f.s +.PHONY : src/SLICOT-Reference/src/MB03BG.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03BG.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BG.f.s +.PHONY : src/SLICOT-Reference/src/MB03BG.f.s + +src/SLICOT-Reference/src/MB03BZ.o: src/SLICOT-Reference/src/MB03BZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03BZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03BZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03BZ.f.o + +src/SLICOT-Reference/src/MB03BZ.i: src/SLICOT-Reference/src/MB03BZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03BZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03BZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03BZ.f.i + +src/SLICOT-Reference/src/MB03BZ.s: src/SLICOT-Reference/src/MB03BZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03BZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03BZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03BZ.f.s + +src/SLICOT-Reference/src/MB03CD.o: src/SLICOT-Reference/src/MB03CD.f.o +.PHONY : src/SLICOT-Reference/src/MB03CD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03CD.f.o +.PHONY : src/SLICOT-Reference/src/MB03CD.f.o + +src/SLICOT-Reference/src/MB03CD.i: src/SLICOT-Reference/src/MB03CD.f.i +.PHONY : src/SLICOT-Reference/src/MB03CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03CD.f.i +.PHONY : src/SLICOT-Reference/src/MB03CD.f.i + +src/SLICOT-Reference/src/MB03CD.s: src/SLICOT-Reference/src/MB03CD.f.s +.PHONY : src/SLICOT-Reference/src/MB03CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03CD.f.s +.PHONY : src/SLICOT-Reference/src/MB03CD.f.s + +src/SLICOT-Reference/src/MB03CZ.o: src/SLICOT-Reference/src/MB03CZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03CZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03CZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03CZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03CZ.f.o + +src/SLICOT-Reference/src/MB03CZ.i: src/SLICOT-Reference/src/MB03CZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03CZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03CZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03CZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03CZ.f.i + +src/SLICOT-Reference/src/MB03CZ.s: src/SLICOT-Reference/src/MB03CZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03CZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03CZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03CZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03CZ.f.s + +src/SLICOT-Reference/src/MB03DD.o: src/SLICOT-Reference/src/MB03DD.f.o +.PHONY : src/SLICOT-Reference/src/MB03DD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03DD.f.o +.PHONY : src/SLICOT-Reference/src/MB03DD.f.o + +src/SLICOT-Reference/src/MB03DD.i: src/SLICOT-Reference/src/MB03DD.f.i +.PHONY : src/SLICOT-Reference/src/MB03DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03DD.f.i +.PHONY : src/SLICOT-Reference/src/MB03DD.f.i + +src/SLICOT-Reference/src/MB03DD.s: src/SLICOT-Reference/src/MB03DD.f.s +.PHONY : src/SLICOT-Reference/src/MB03DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03DD.f.s +.PHONY : src/SLICOT-Reference/src/MB03DD.f.s + +src/SLICOT-Reference/src/MB03DZ.o: src/SLICOT-Reference/src/MB03DZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03DZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03DZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03DZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03DZ.f.o + +src/SLICOT-Reference/src/MB03DZ.i: src/SLICOT-Reference/src/MB03DZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03DZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03DZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03DZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03DZ.f.i + +src/SLICOT-Reference/src/MB03DZ.s: src/SLICOT-Reference/src/MB03DZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03DZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03DZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03DZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03DZ.f.s + +src/SLICOT-Reference/src/MB03ED.o: src/SLICOT-Reference/src/MB03ED.f.o +.PHONY : src/SLICOT-Reference/src/MB03ED.o + +# target to build an object file +src/SLICOT-Reference/src/MB03ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ED.f.o +.PHONY : src/SLICOT-Reference/src/MB03ED.f.o + +src/SLICOT-Reference/src/MB03ED.i: src/SLICOT-Reference/src/MB03ED.f.i +.PHONY : src/SLICOT-Reference/src/MB03ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ED.f.i +.PHONY : src/SLICOT-Reference/src/MB03ED.f.i + +src/SLICOT-Reference/src/MB03ED.s: src/SLICOT-Reference/src/MB03ED.f.s +.PHONY : src/SLICOT-Reference/src/MB03ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ED.f.s +.PHONY : src/SLICOT-Reference/src/MB03ED.f.s + +src/SLICOT-Reference/src/MB03FD.o: src/SLICOT-Reference/src/MB03FD.f.o +.PHONY : src/SLICOT-Reference/src/MB03FD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03FD.f.o +.PHONY : src/SLICOT-Reference/src/MB03FD.f.o + +src/SLICOT-Reference/src/MB03FD.i: src/SLICOT-Reference/src/MB03FD.f.i +.PHONY : src/SLICOT-Reference/src/MB03FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03FD.f.i +.PHONY : src/SLICOT-Reference/src/MB03FD.f.i + +src/SLICOT-Reference/src/MB03FD.s: src/SLICOT-Reference/src/MB03FD.f.s +.PHONY : src/SLICOT-Reference/src/MB03FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03FD.f.s +.PHONY : src/SLICOT-Reference/src/MB03FD.f.s + +src/SLICOT-Reference/src/MB03FZ.o: src/SLICOT-Reference/src/MB03FZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03FZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03FZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03FZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03FZ.f.o + +src/SLICOT-Reference/src/MB03FZ.i: src/SLICOT-Reference/src/MB03FZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03FZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03FZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03FZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03FZ.f.i + +src/SLICOT-Reference/src/MB03FZ.s: src/SLICOT-Reference/src/MB03FZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03FZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03FZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03FZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03FZ.f.s + +src/SLICOT-Reference/src/MB03GD.o: src/SLICOT-Reference/src/MB03GD.f.o +.PHONY : src/SLICOT-Reference/src/MB03GD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03GD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03GD.f.o +.PHONY : src/SLICOT-Reference/src/MB03GD.f.o + +src/SLICOT-Reference/src/MB03GD.i: src/SLICOT-Reference/src/MB03GD.f.i +.PHONY : src/SLICOT-Reference/src/MB03GD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03GD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03GD.f.i +.PHONY : src/SLICOT-Reference/src/MB03GD.f.i + +src/SLICOT-Reference/src/MB03GD.s: src/SLICOT-Reference/src/MB03GD.f.s +.PHONY : src/SLICOT-Reference/src/MB03GD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03GD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03GD.f.s +.PHONY : src/SLICOT-Reference/src/MB03GD.f.s + +src/SLICOT-Reference/src/MB03GZ.o: src/SLICOT-Reference/src/MB03GZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03GZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03GZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03GZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03GZ.f.o + +src/SLICOT-Reference/src/MB03GZ.i: src/SLICOT-Reference/src/MB03GZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03GZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03GZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03GZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03GZ.f.i + +src/SLICOT-Reference/src/MB03GZ.s: src/SLICOT-Reference/src/MB03GZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03GZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03GZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03GZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03GZ.f.s + +src/SLICOT-Reference/src/MB03HD.o: src/SLICOT-Reference/src/MB03HD.f.o +.PHONY : src/SLICOT-Reference/src/MB03HD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03HD.f.o +.PHONY : src/SLICOT-Reference/src/MB03HD.f.o + +src/SLICOT-Reference/src/MB03HD.i: src/SLICOT-Reference/src/MB03HD.f.i +.PHONY : src/SLICOT-Reference/src/MB03HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03HD.f.i +.PHONY : src/SLICOT-Reference/src/MB03HD.f.i + +src/SLICOT-Reference/src/MB03HD.s: src/SLICOT-Reference/src/MB03HD.f.s +.PHONY : src/SLICOT-Reference/src/MB03HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03HD.f.s +.PHONY : src/SLICOT-Reference/src/MB03HD.f.s + +src/SLICOT-Reference/src/MB03HZ.o: src/SLICOT-Reference/src/MB03HZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03HZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03HZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03HZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03HZ.f.o + +src/SLICOT-Reference/src/MB03HZ.i: src/SLICOT-Reference/src/MB03HZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03HZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03HZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03HZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03HZ.f.i + +src/SLICOT-Reference/src/MB03HZ.s: src/SLICOT-Reference/src/MB03HZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03HZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03HZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03HZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03HZ.f.s + +src/SLICOT-Reference/src/MB03ID.o: src/SLICOT-Reference/src/MB03ID.f.o +.PHONY : src/SLICOT-Reference/src/MB03ID.o + +# target to build an object file +src/SLICOT-Reference/src/MB03ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ID.f.o +.PHONY : src/SLICOT-Reference/src/MB03ID.f.o + +src/SLICOT-Reference/src/MB03ID.i: src/SLICOT-Reference/src/MB03ID.f.i +.PHONY : src/SLICOT-Reference/src/MB03ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ID.f.i +.PHONY : src/SLICOT-Reference/src/MB03ID.f.i + +src/SLICOT-Reference/src/MB03ID.s: src/SLICOT-Reference/src/MB03ID.f.s +.PHONY : src/SLICOT-Reference/src/MB03ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ID.f.s +.PHONY : src/SLICOT-Reference/src/MB03ID.f.s + +src/SLICOT-Reference/src/MB03IZ.o: src/SLICOT-Reference/src/MB03IZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03IZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03IZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03IZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03IZ.f.o + +src/SLICOT-Reference/src/MB03IZ.i: src/SLICOT-Reference/src/MB03IZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03IZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03IZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03IZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03IZ.f.i + +src/SLICOT-Reference/src/MB03IZ.s: src/SLICOT-Reference/src/MB03IZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03IZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03IZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03IZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03IZ.f.s + +src/SLICOT-Reference/src/MB03JD.o: src/SLICOT-Reference/src/MB03JD.f.o +.PHONY : src/SLICOT-Reference/src/MB03JD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03JD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JD.f.o +.PHONY : src/SLICOT-Reference/src/MB03JD.f.o + +src/SLICOT-Reference/src/MB03JD.i: src/SLICOT-Reference/src/MB03JD.f.i +.PHONY : src/SLICOT-Reference/src/MB03JD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03JD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JD.f.i +.PHONY : src/SLICOT-Reference/src/MB03JD.f.i + +src/SLICOT-Reference/src/MB03JD.s: src/SLICOT-Reference/src/MB03JD.f.s +.PHONY : src/SLICOT-Reference/src/MB03JD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03JD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JD.f.s +.PHONY : src/SLICOT-Reference/src/MB03JD.f.s + +src/SLICOT-Reference/src/MB03JP.o: src/SLICOT-Reference/src/MB03JP.f.o +.PHONY : src/SLICOT-Reference/src/MB03JP.o + +# target to build an object file +src/SLICOT-Reference/src/MB03JP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JP.f.o +.PHONY : src/SLICOT-Reference/src/MB03JP.f.o + +src/SLICOT-Reference/src/MB03JP.i: src/SLICOT-Reference/src/MB03JP.f.i +.PHONY : src/SLICOT-Reference/src/MB03JP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03JP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JP.f.i +.PHONY : src/SLICOT-Reference/src/MB03JP.f.i + +src/SLICOT-Reference/src/MB03JP.s: src/SLICOT-Reference/src/MB03JP.f.s +.PHONY : src/SLICOT-Reference/src/MB03JP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03JP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JP.f.s +.PHONY : src/SLICOT-Reference/src/MB03JP.f.s + +src/SLICOT-Reference/src/MB03JZ.o: src/SLICOT-Reference/src/MB03JZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03JZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03JZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03JZ.f.o + +src/SLICOT-Reference/src/MB03JZ.i: src/SLICOT-Reference/src/MB03JZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03JZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03JZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03JZ.f.i + +src/SLICOT-Reference/src/MB03JZ.s: src/SLICOT-Reference/src/MB03JZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03JZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03JZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03JZ.f.s + +src/SLICOT-Reference/src/MB03KA.o: src/SLICOT-Reference/src/MB03KA.f.o +.PHONY : src/SLICOT-Reference/src/MB03KA.o + +# target to build an object file +src/SLICOT-Reference/src/MB03KA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KA.f.o +.PHONY : src/SLICOT-Reference/src/MB03KA.f.o + +src/SLICOT-Reference/src/MB03KA.i: src/SLICOT-Reference/src/MB03KA.f.i +.PHONY : src/SLICOT-Reference/src/MB03KA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03KA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KA.f.i +.PHONY : src/SLICOT-Reference/src/MB03KA.f.i + +src/SLICOT-Reference/src/MB03KA.s: src/SLICOT-Reference/src/MB03KA.f.s +.PHONY : src/SLICOT-Reference/src/MB03KA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03KA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KA.f.s +.PHONY : src/SLICOT-Reference/src/MB03KA.f.s + +src/SLICOT-Reference/src/MB03KB.o: src/SLICOT-Reference/src/MB03KB.f.o +.PHONY : src/SLICOT-Reference/src/MB03KB.o + +# target to build an object file +src/SLICOT-Reference/src/MB03KB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KB.f.o +.PHONY : src/SLICOT-Reference/src/MB03KB.f.o + +src/SLICOT-Reference/src/MB03KB.i: src/SLICOT-Reference/src/MB03KB.f.i +.PHONY : src/SLICOT-Reference/src/MB03KB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03KB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KB.f.i +.PHONY : src/SLICOT-Reference/src/MB03KB.f.i + +src/SLICOT-Reference/src/MB03KB.s: src/SLICOT-Reference/src/MB03KB.f.s +.PHONY : src/SLICOT-Reference/src/MB03KB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03KB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KB.f.s +.PHONY : src/SLICOT-Reference/src/MB03KB.f.s + +src/SLICOT-Reference/src/MB03KC.o: src/SLICOT-Reference/src/MB03KC.f.o +.PHONY : src/SLICOT-Reference/src/MB03KC.o + +# target to build an object file +src/SLICOT-Reference/src/MB03KC.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KC.f.o +.PHONY : src/SLICOT-Reference/src/MB03KC.f.o + +src/SLICOT-Reference/src/MB03KC.i: src/SLICOT-Reference/src/MB03KC.f.i +.PHONY : src/SLICOT-Reference/src/MB03KC.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03KC.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KC.f.i +.PHONY : src/SLICOT-Reference/src/MB03KC.f.i + +src/SLICOT-Reference/src/MB03KC.s: src/SLICOT-Reference/src/MB03KC.f.s +.PHONY : src/SLICOT-Reference/src/MB03KC.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03KC.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KC.f.s +.PHONY : src/SLICOT-Reference/src/MB03KC.f.s + +src/SLICOT-Reference/src/MB03KD.o: src/SLICOT-Reference/src/MB03KD.f.o +.PHONY : src/SLICOT-Reference/src/MB03KD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03KD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KD.f.o +.PHONY : src/SLICOT-Reference/src/MB03KD.f.o + +src/SLICOT-Reference/src/MB03KD.i: src/SLICOT-Reference/src/MB03KD.f.i +.PHONY : src/SLICOT-Reference/src/MB03KD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03KD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KD.f.i +.PHONY : src/SLICOT-Reference/src/MB03KD.f.i + +src/SLICOT-Reference/src/MB03KD.s: src/SLICOT-Reference/src/MB03KD.f.s +.PHONY : src/SLICOT-Reference/src/MB03KD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03KD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KD.f.s +.PHONY : src/SLICOT-Reference/src/MB03KD.f.s + +src/SLICOT-Reference/src/MB03KE.o: src/SLICOT-Reference/src/MB03KE.f.o +.PHONY : src/SLICOT-Reference/src/MB03KE.o + +# target to build an object file +src/SLICOT-Reference/src/MB03KE.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KE.f.o +.PHONY : src/SLICOT-Reference/src/MB03KE.f.o + +src/SLICOT-Reference/src/MB03KE.i: src/SLICOT-Reference/src/MB03KE.f.i +.PHONY : src/SLICOT-Reference/src/MB03KE.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03KE.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KE.f.i +.PHONY : src/SLICOT-Reference/src/MB03KE.f.i + +src/SLICOT-Reference/src/MB03KE.s: src/SLICOT-Reference/src/MB03KE.f.s +.PHONY : src/SLICOT-Reference/src/MB03KE.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03KE.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KE.f.s +.PHONY : src/SLICOT-Reference/src/MB03KE.f.s + +src/SLICOT-Reference/src/MB03LD.o: src/SLICOT-Reference/src/MB03LD.f.o +.PHONY : src/SLICOT-Reference/src/MB03LD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03LD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LD.f.o +.PHONY : src/SLICOT-Reference/src/MB03LD.f.o + +src/SLICOT-Reference/src/MB03LD.i: src/SLICOT-Reference/src/MB03LD.f.i +.PHONY : src/SLICOT-Reference/src/MB03LD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03LD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LD.f.i +.PHONY : src/SLICOT-Reference/src/MB03LD.f.i + +src/SLICOT-Reference/src/MB03LD.s: src/SLICOT-Reference/src/MB03LD.f.s +.PHONY : src/SLICOT-Reference/src/MB03LD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03LD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LD.f.s +.PHONY : src/SLICOT-Reference/src/MB03LD.f.s + +src/SLICOT-Reference/src/MB03LF.o: src/SLICOT-Reference/src/MB03LF.f.o +.PHONY : src/SLICOT-Reference/src/MB03LF.o + +# target to build an object file +src/SLICOT-Reference/src/MB03LF.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LF.f.o +.PHONY : src/SLICOT-Reference/src/MB03LF.f.o + +src/SLICOT-Reference/src/MB03LF.i: src/SLICOT-Reference/src/MB03LF.f.i +.PHONY : src/SLICOT-Reference/src/MB03LF.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03LF.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LF.f.i +.PHONY : src/SLICOT-Reference/src/MB03LF.f.i + +src/SLICOT-Reference/src/MB03LF.s: src/SLICOT-Reference/src/MB03LF.f.s +.PHONY : src/SLICOT-Reference/src/MB03LF.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03LF.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LF.f.s +.PHONY : src/SLICOT-Reference/src/MB03LF.f.s + +src/SLICOT-Reference/src/MB03LP.o: src/SLICOT-Reference/src/MB03LP.f.o +.PHONY : src/SLICOT-Reference/src/MB03LP.o + +# target to build an object file +src/SLICOT-Reference/src/MB03LP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LP.f.o +.PHONY : src/SLICOT-Reference/src/MB03LP.f.o + +src/SLICOT-Reference/src/MB03LP.i: src/SLICOT-Reference/src/MB03LP.f.i +.PHONY : src/SLICOT-Reference/src/MB03LP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03LP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LP.f.i +.PHONY : src/SLICOT-Reference/src/MB03LP.f.i + +src/SLICOT-Reference/src/MB03LP.s: src/SLICOT-Reference/src/MB03LP.f.s +.PHONY : src/SLICOT-Reference/src/MB03LP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03LP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LP.f.s +.PHONY : src/SLICOT-Reference/src/MB03LP.f.s + +src/SLICOT-Reference/src/MB03LZ.o: src/SLICOT-Reference/src/MB03LZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03LZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03LZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03LZ.f.o + +src/SLICOT-Reference/src/MB03LZ.i: src/SLICOT-Reference/src/MB03LZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03LZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03LZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03LZ.f.i + +src/SLICOT-Reference/src/MB03LZ.s: src/SLICOT-Reference/src/MB03LZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03LZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03LZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03LZ.f.s + +src/SLICOT-Reference/src/MB03MD.o: src/SLICOT-Reference/src/MB03MD.f.o +.PHONY : src/SLICOT-Reference/src/MB03MD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03MD.f.o +.PHONY : src/SLICOT-Reference/src/MB03MD.f.o + +src/SLICOT-Reference/src/MB03MD.i: src/SLICOT-Reference/src/MB03MD.f.i +.PHONY : src/SLICOT-Reference/src/MB03MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03MD.f.i +.PHONY : src/SLICOT-Reference/src/MB03MD.f.i + +src/SLICOT-Reference/src/MB03MD.s: src/SLICOT-Reference/src/MB03MD.f.s +.PHONY : src/SLICOT-Reference/src/MB03MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03MD.f.s +.PHONY : src/SLICOT-Reference/src/MB03MD.f.s + +src/SLICOT-Reference/src/MB03MY.o: src/SLICOT-Reference/src/MB03MY.f.o +.PHONY : src/SLICOT-Reference/src/MB03MY.o + +# target to build an object file +src/SLICOT-Reference/src/MB03MY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03MY.f.o +.PHONY : src/SLICOT-Reference/src/MB03MY.f.o + +src/SLICOT-Reference/src/MB03MY.i: src/SLICOT-Reference/src/MB03MY.f.i +.PHONY : src/SLICOT-Reference/src/MB03MY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03MY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03MY.f.i +.PHONY : src/SLICOT-Reference/src/MB03MY.f.i + +src/SLICOT-Reference/src/MB03MY.s: src/SLICOT-Reference/src/MB03MY.f.s +.PHONY : src/SLICOT-Reference/src/MB03MY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03MY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03MY.f.s +.PHONY : src/SLICOT-Reference/src/MB03MY.f.s + +src/SLICOT-Reference/src/MB03ND.o: src/SLICOT-Reference/src/MB03ND.f.o +.PHONY : src/SLICOT-Reference/src/MB03ND.o + +# target to build an object file +src/SLICOT-Reference/src/MB03ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ND.f.o +.PHONY : src/SLICOT-Reference/src/MB03ND.f.o + +src/SLICOT-Reference/src/MB03ND.i: src/SLICOT-Reference/src/MB03ND.f.i +.PHONY : src/SLICOT-Reference/src/MB03ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ND.f.i +.PHONY : src/SLICOT-Reference/src/MB03ND.f.i + +src/SLICOT-Reference/src/MB03ND.s: src/SLICOT-Reference/src/MB03ND.f.s +.PHONY : src/SLICOT-Reference/src/MB03ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ND.f.s +.PHONY : src/SLICOT-Reference/src/MB03ND.f.s + +src/SLICOT-Reference/src/MB03NY.o: src/SLICOT-Reference/src/MB03NY.f.o +.PHONY : src/SLICOT-Reference/src/MB03NY.o + +# target to build an object file +src/SLICOT-Reference/src/MB03NY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03NY.f.o +.PHONY : src/SLICOT-Reference/src/MB03NY.f.o + +src/SLICOT-Reference/src/MB03NY.i: src/SLICOT-Reference/src/MB03NY.f.i +.PHONY : src/SLICOT-Reference/src/MB03NY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03NY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03NY.f.i +.PHONY : src/SLICOT-Reference/src/MB03NY.f.i + +src/SLICOT-Reference/src/MB03NY.s: src/SLICOT-Reference/src/MB03NY.f.s +.PHONY : src/SLICOT-Reference/src/MB03NY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03NY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03NY.f.s +.PHONY : src/SLICOT-Reference/src/MB03NY.f.s + +src/SLICOT-Reference/src/MB03OD.o: src/SLICOT-Reference/src/MB03OD.f.o +.PHONY : src/SLICOT-Reference/src/MB03OD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03OD.f.o +.PHONY : src/SLICOT-Reference/src/MB03OD.f.o + +src/SLICOT-Reference/src/MB03OD.i: src/SLICOT-Reference/src/MB03OD.f.i +.PHONY : src/SLICOT-Reference/src/MB03OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03OD.f.i +.PHONY : src/SLICOT-Reference/src/MB03OD.f.i + +src/SLICOT-Reference/src/MB03OD.s: src/SLICOT-Reference/src/MB03OD.f.s +.PHONY : src/SLICOT-Reference/src/MB03OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03OD.f.s +.PHONY : src/SLICOT-Reference/src/MB03OD.f.s + +src/SLICOT-Reference/src/MB03OY.o: src/SLICOT-Reference/src/MB03OY.f.o +.PHONY : src/SLICOT-Reference/src/MB03OY.o + +# target to build an object file +src/SLICOT-Reference/src/MB03OY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03OY.f.o +.PHONY : src/SLICOT-Reference/src/MB03OY.f.o + +src/SLICOT-Reference/src/MB03OY.i: src/SLICOT-Reference/src/MB03OY.f.i +.PHONY : src/SLICOT-Reference/src/MB03OY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03OY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03OY.f.i +.PHONY : src/SLICOT-Reference/src/MB03OY.f.i + +src/SLICOT-Reference/src/MB03OY.s: src/SLICOT-Reference/src/MB03OY.f.s +.PHONY : src/SLICOT-Reference/src/MB03OY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03OY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03OY.f.s +.PHONY : src/SLICOT-Reference/src/MB03OY.f.s + +src/SLICOT-Reference/src/MB03PD.o: src/SLICOT-Reference/src/MB03PD.f.o +.PHONY : src/SLICOT-Reference/src/MB03PD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03PD.f.o +.PHONY : src/SLICOT-Reference/src/MB03PD.f.o + +src/SLICOT-Reference/src/MB03PD.i: src/SLICOT-Reference/src/MB03PD.f.i +.PHONY : src/SLICOT-Reference/src/MB03PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03PD.f.i +.PHONY : src/SLICOT-Reference/src/MB03PD.f.i + +src/SLICOT-Reference/src/MB03PD.s: src/SLICOT-Reference/src/MB03PD.f.s +.PHONY : src/SLICOT-Reference/src/MB03PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03PD.f.s +.PHONY : src/SLICOT-Reference/src/MB03PD.f.s + +src/SLICOT-Reference/src/MB03PY.o: src/SLICOT-Reference/src/MB03PY.f.o +.PHONY : src/SLICOT-Reference/src/MB03PY.o + +# target to build an object file +src/SLICOT-Reference/src/MB03PY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03PY.f.o +.PHONY : src/SLICOT-Reference/src/MB03PY.f.o + +src/SLICOT-Reference/src/MB03PY.i: src/SLICOT-Reference/src/MB03PY.f.i +.PHONY : src/SLICOT-Reference/src/MB03PY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03PY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03PY.f.i +.PHONY : src/SLICOT-Reference/src/MB03PY.f.i + +src/SLICOT-Reference/src/MB03PY.s: src/SLICOT-Reference/src/MB03PY.f.s +.PHONY : src/SLICOT-Reference/src/MB03PY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03PY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03PY.f.s +.PHONY : src/SLICOT-Reference/src/MB03PY.f.s + +src/SLICOT-Reference/src/MB03QD.o: src/SLICOT-Reference/src/MB03QD.f.o +.PHONY : src/SLICOT-Reference/src/MB03QD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QD.f.o +.PHONY : src/SLICOT-Reference/src/MB03QD.f.o + +src/SLICOT-Reference/src/MB03QD.i: src/SLICOT-Reference/src/MB03QD.f.i +.PHONY : src/SLICOT-Reference/src/MB03QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QD.f.i +.PHONY : src/SLICOT-Reference/src/MB03QD.f.i + +src/SLICOT-Reference/src/MB03QD.s: src/SLICOT-Reference/src/MB03QD.f.s +.PHONY : src/SLICOT-Reference/src/MB03QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QD.f.s +.PHONY : src/SLICOT-Reference/src/MB03QD.f.s + +src/SLICOT-Reference/src/MB03QG.o: src/SLICOT-Reference/src/MB03QG.f.o +.PHONY : src/SLICOT-Reference/src/MB03QG.o + +# target to build an object file +src/SLICOT-Reference/src/MB03QG.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QG.f.o +.PHONY : src/SLICOT-Reference/src/MB03QG.f.o + +src/SLICOT-Reference/src/MB03QG.i: src/SLICOT-Reference/src/MB03QG.f.i +.PHONY : src/SLICOT-Reference/src/MB03QG.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03QG.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QG.f.i +.PHONY : src/SLICOT-Reference/src/MB03QG.f.i + +src/SLICOT-Reference/src/MB03QG.s: src/SLICOT-Reference/src/MB03QG.f.s +.PHONY : src/SLICOT-Reference/src/MB03QG.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03QG.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QG.f.s +.PHONY : src/SLICOT-Reference/src/MB03QG.f.s + +src/SLICOT-Reference/src/MB03QV.o: src/SLICOT-Reference/src/MB03QV.f.o +.PHONY : src/SLICOT-Reference/src/MB03QV.o + +# target to build an object file +src/SLICOT-Reference/src/MB03QV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QV.f.o +.PHONY : src/SLICOT-Reference/src/MB03QV.f.o + +src/SLICOT-Reference/src/MB03QV.i: src/SLICOT-Reference/src/MB03QV.f.i +.PHONY : src/SLICOT-Reference/src/MB03QV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03QV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QV.f.i +.PHONY : src/SLICOT-Reference/src/MB03QV.f.i + +src/SLICOT-Reference/src/MB03QV.s: src/SLICOT-Reference/src/MB03QV.f.s +.PHONY : src/SLICOT-Reference/src/MB03QV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03QV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QV.f.s +.PHONY : src/SLICOT-Reference/src/MB03QV.f.s + +src/SLICOT-Reference/src/MB03QW.o: src/SLICOT-Reference/src/MB03QW.f.o +.PHONY : src/SLICOT-Reference/src/MB03QW.o + +# target to build an object file +src/SLICOT-Reference/src/MB03QW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QW.f.o +.PHONY : src/SLICOT-Reference/src/MB03QW.f.o + +src/SLICOT-Reference/src/MB03QW.i: src/SLICOT-Reference/src/MB03QW.f.i +.PHONY : src/SLICOT-Reference/src/MB03QW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03QW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QW.f.i +.PHONY : src/SLICOT-Reference/src/MB03QW.f.i + +src/SLICOT-Reference/src/MB03QW.s: src/SLICOT-Reference/src/MB03QW.f.s +.PHONY : src/SLICOT-Reference/src/MB03QW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03QW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QW.f.s +.PHONY : src/SLICOT-Reference/src/MB03QW.f.s + +src/SLICOT-Reference/src/MB03QX.o: src/SLICOT-Reference/src/MB03QX.f.o +.PHONY : src/SLICOT-Reference/src/MB03QX.o + +# target to build an object file +src/SLICOT-Reference/src/MB03QX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QX.f.o +.PHONY : src/SLICOT-Reference/src/MB03QX.f.o + +src/SLICOT-Reference/src/MB03QX.i: src/SLICOT-Reference/src/MB03QX.f.i +.PHONY : src/SLICOT-Reference/src/MB03QX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03QX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QX.f.i +.PHONY : src/SLICOT-Reference/src/MB03QX.f.i + +src/SLICOT-Reference/src/MB03QX.s: src/SLICOT-Reference/src/MB03QX.f.s +.PHONY : src/SLICOT-Reference/src/MB03QX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03QX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QX.f.s +.PHONY : src/SLICOT-Reference/src/MB03QX.f.s + +src/SLICOT-Reference/src/MB03QY.o: src/SLICOT-Reference/src/MB03QY.f.o +.PHONY : src/SLICOT-Reference/src/MB03QY.o + +# target to build an object file +src/SLICOT-Reference/src/MB03QY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QY.f.o +.PHONY : src/SLICOT-Reference/src/MB03QY.f.o + +src/SLICOT-Reference/src/MB03QY.i: src/SLICOT-Reference/src/MB03QY.f.i +.PHONY : src/SLICOT-Reference/src/MB03QY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03QY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QY.f.i +.PHONY : src/SLICOT-Reference/src/MB03QY.f.i + +src/SLICOT-Reference/src/MB03QY.s: src/SLICOT-Reference/src/MB03QY.f.s +.PHONY : src/SLICOT-Reference/src/MB03QY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03QY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QY.f.s +.PHONY : src/SLICOT-Reference/src/MB03QY.f.s + +src/SLICOT-Reference/src/MB03RD.o: src/SLICOT-Reference/src/MB03RD.f.o +.PHONY : src/SLICOT-Reference/src/MB03RD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RD.f.o +.PHONY : src/SLICOT-Reference/src/MB03RD.f.o + +src/SLICOT-Reference/src/MB03RD.i: src/SLICOT-Reference/src/MB03RD.f.i +.PHONY : src/SLICOT-Reference/src/MB03RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RD.f.i +.PHONY : src/SLICOT-Reference/src/MB03RD.f.i + +src/SLICOT-Reference/src/MB03RD.s: src/SLICOT-Reference/src/MB03RD.f.s +.PHONY : src/SLICOT-Reference/src/MB03RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RD.f.s +.PHONY : src/SLICOT-Reference/src/MB03RD.f.s + +src/SLICOT-Reference/src/MB03RW.o: src/SLICOT-Reference/src/MB03RW.f.o +.PHONY : src/SLICOT-Reference/src/MB03RW.o + +# target to build an object file +src/SLICOT-Reference/src/MB03RW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RW.f.o +.PHONY : src/SLICOT-Reference/src/MB03RW.f.o + +src/SLICOT-Reference/src/MB03RW.i: src/SLICOT-Reference/src/MB03RW.f.i +.PHONY : src/SLICOT-Reference/src/MB03RW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03RW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RW.f.i +.PHONY : src/SLICOT-Reference/src/MB03RW.f.i + +src/SLICOT-Reference/src/MB03RW.s: src/SLICOT-Reference/src/MB03RW.f.s +.PHONY : src/SLICOT-Reference/src/MB03RW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03RW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RW.f.s +.PHONY : src/SLICOT-Reference/src/MB03RW.f.s + +src/SLICOT-Reference/src/MB03RX.o: src/SLICOT-Reference/src/MB03RX.f.o +.PHONY : src/SLICOT-Reference/src/MB03RX.o + +# target to build an object file +src/SLICOT-Reference/src/MB03RX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RX.f.o +.PHONY : src/SLICOT-Reference/src/MB03RX.f.o + +src/SLICOT-Reference/src/MB03RX.i: src/SLICOT-Reference/src/MB03RX.f.i +.PHONY : src/SLICOT-Reference/src/MB03RX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03RX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RX.f.i +.PHONY : src/SLICOT-Reference/src/MB03RX.f.i + +src/SLICOT-Reference/src/MB03RX.s: src/SLICOT-Reference/src/MB03RX.f.s +.PHONY : src/SLICOT-Reference/src/MB03RX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03RX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RX.f.s +.PHONY : src/SLICOT-Reference/src/MB03RX.f.s + +src/SLICOT-Reference/src/MB03RY.o: src/SLICOT-Reference/src/MB03RY.f.o +.PHONY : src/SLICOT-Reference/src/MB03RY.o + +# target to build an object file +src/SLICOT-Reference/src/MB03RY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RY.f.o +.PHONY : src/SLICOT-Reference/src/MB03RY.f.o + +src/SLICOT-Reference/src/MB03RY.i: src/SLICOT-Reference/src/MB03RY.f.i +.PHONY : src/SLICOT-Reference/src/MB03RY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03RY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RY.f.i +.PHONY : src/SLICOT-Reference/src/MB03RY.f.i + +src/SLICOT-Reference/src/MB03RY.s: src/SLICOT-Reference/src/MB03RY.f.s +.PHONY : src/SLICOT-Reference/src/MB03RY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03RY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RY.f.s +.PHONY : src/SLICOT-Reference/src/MB03RY.f.s + +src/SLICOT-Reference/src/MB03RZ.o: src/SLICOT-Reference/src/MB03RZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03RZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03RZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03RZ.f.o + +src/SLICOT-Reference/src/MB03RZ.i: src/SLICOT-Reference/src/MB03RZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03RZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03RZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03RZ.f.i + +src/SLICOT-Reference/src/MB03RZ.s: src/SLICOT-Reference/src/MB03RZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03RZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03RZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03RZ.f.s + +src/SLICOT-Reference/src/MB03SD.o: src/SLICOT-Reference/src/MB03SD.f.o +.PHONY : src/SLICOT-Reference/src/MB03SD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03SD.f.o +.PHONY : src/SLICOT-Reference/src/MB03SD.f.o + +src/SLICOT-Reference/src/MB03SD.i: src/SLICOT-Reference/src/MB03SD.f.i +.PHONY : src/SLICOT-Reference/src/MB03SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03SD.f.i +.PHONY : src/SLICOT-Reference/src/MB03SD.f.i + +src/SLICOT-Reference/src/MB03SD.s: src/SLICOT-Reference/src/MB03SD.f.s +.PHONY : src/SLICOT-Reference/src/MB03SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03SD.f.s +.PHONY : src/SLICOT-Reference/src/MB03SD.f.s + +src/SLICOT-Reference/src/MB03TD.o: src/SLICOT-Reference/src/MB03TD.f.o +.PHONY : src/SLICOT-Reference/src/MB03TD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03TD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03TD.f.o +.PHONY : src/SLICOT-Reference/src/MB03TD.f.o + +src/SLICOT-Reference/src/MB03TD.i: src/SLICOT-Reference/src/MB03TD.f.i +.PHONY : src/SLICOT-Reference/src/MB03TD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03TD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03TD.f.i +.PHONY : src/SLICOT-Reference/src/MB03TD.f.i + +src/SLICOT-Reference/src/MB03TD.s: src/SLICOT-Reference/src/MB03TD.f.s +.PHONY : src/SLICOT-Reference/src/MB03TD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03TD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03TD.f.s +.PHONY : src/SLICOT-Reference/src/MB03TD.f.s + +src/SLICOT-Reference/src/MB03TS.o: src/SLICOT-Reference/src/MB03TS.f.o +.PHONY : src/SLICOT-Reference/src/MB03TS.o + +# target to build an object file +src/SLICOT-Reference/src/MB03TS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03TS.f.o +.PHONY : src/SLICOT-Reference/src/MB03TS.f.o + +src/SLICOT-Reference/src/MB03TS.i: src/SLICOT-Reference/src/MB03TS.f.i +.PHONY : src/SLICOT-Reference/src/MB03TS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03TS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03TS.f.i +.PHONY : src/SLICOT-Reference/src/MB03TS.f.i + +src/SLICOT-Reference/src/MB03TS.s: src/SLICOT-Reference/src/MB03TS.f.s +.PHONY : src/SLICOT-Reference/src/MB03TS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03TS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03TS.f.s +.PHONY : src/SLICOT-Reference/src/MB03TS.f.s + +src/SLICOT-Reference/src/MB03UD.o: src/SLICOT-Reference/src/MB03UD.f.o +.PHONY : src/SLICOT-Reference/src/MB03UD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03UD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03UD.f.o +.PHONY : src/SLICOT-Reference/src/MB03UD.f.o + +src/SLICOT-Reference/src/MB03UD.i: src/SLICOT-Reference/src/MB03UD.f.i +.PHONY : src/SLICOT-Reference/src/MB03UD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03UD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03UD.f.i +.PHONY : src/SLICOT-Reference/src/MB03UD.f.i + +src/SLICOT-Reference/src/MB03UD.s: src/SLICOT-Reference/src/MB03UD.f.s +.PHONY : src/SLICOT-Reference/src/MB03UD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03UD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03UD.f.s +.PHONY : src/SLICOT-Reference/src/MB03UD.f.s + +src/SLICOT-Reference/src/MB03VD.o: src/SLICOT-Reference/src/MB03VD.f.o +.PHONY : src/SLICOT-Reference/src/MB03VD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03VD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VD.f.o +.PHONY : src/SLICOT-Reference/src/MB03VD.f.o + +src/SLICOT-Reference/src/MB03VD.i: src/SLICOT-Reference/src/MB03VD.f.i +.PHONY : src/SLICOT-Reference/src/MB03VD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03VD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VD.f.i +.PHONY : src/SLICOT-Reference/src/MB03VD.f.i + +src/SLICOT-Reference/src/MB03VD.s: src/SLICOT-Reference/src/MB03VD.f.s +.PHONY : src/SLICOT-Reference/src/MB03VD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03VD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VD.f.s +.PHONY : src/SLICOT-Reference/src/MB03VD.f.s + +src/SLICOT-Reference/src/MB03VW.o: src/SLICOT-Reference/src/MB03VW.f.o +.PHONY : src/SLICOT-Reference/src/MB03VW.o + +# target to build an object file +src/SLICOT-Reference/src/MB03VW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VW.f.o +.PHONY : src/SLICOT-Reference/src/MB03VW.f.o + +src/SLICOT-Reference/src/MB03VW.i: src/SLICOT-Reference/src/MB03VW.f.i +.PHONY : src/SLICOT-Reference/src/MB03VW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03VW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VW.f.i +.PHONY : src/SLICOT-Reference/src/MB03VW.f.i + +src/SLICOT-Reference/src/MB03VW.s: src/SLICOT-Reference/src/MB03VW.f.s +.PHONY : src/SLICOT-Reference/src/MB03VW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03VW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VW.f.s +.PHONY : src/SLICOT-Reference/src/MB03VW.f.s + +src/SLICOT-Reference/src/MB03VY.o: src/SLICOT-Reference/src/MB03VY.f.o +.PHONY : src/SLICOT-Reference/src/MB03VY.o + +# target to build an object file +src/SLICOT-Reference/src/MB03VY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VY.f.o +.PHONY : src/SLICOT-Reference/src/MB03VY.f.o + +src/SLICOT-Reference/src/MB03VY.i: src/SLICOT-Reference/src/MB03VY.f.i +.PHONY : src/SLICOT-Reference/src/MB03VY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03VY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VY.f.i +.PHONY : src/SLICOT-Reference/src/MB03VY.f.i + +src/SLICOT-Reference/src/MB03VY.s: src/SLICOT-Reference/src/MB03VY.f.s +.PHONY : src/SLICOT-Reference/src/MB03VY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03VY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VY.f.s +.PHONY : src/SLICOT-Reference/src/MB03VY.f.s + +src/SLICOT-Reference/src/MB03WA.o: src/SLICOT-Reference/src/MB03WA.f.o +.PHONY : src/SLICOT-Reference/src/MB03WA.o + +# target to build an object file +src/SLICOT-Reference/src/MB03WA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WA.f.o +.PHONY : src/SLICOT-Reference/src/MB03WA.f.o + +src/SLICOT-Reference/src/MB03WA.i: src/SLICOT-Reference/src/MB03WA.f.i +.PHONY : src/SLICOT-Reference/src/MB03WA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03WA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WA.f.i +.PHONY : src/SLICOT-Reference/src/MB03WA.f.i + +src/SLICOT-Reference/src/MB03WA.s: src/SLICOT-Reference/src/MB03WA.f.s +.PHONY : src/SLICOT-Reference/src/MB03WA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03WA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WA.f.s +.PHONY : src/SLICOT-Reference/src/MB03WA.f.s + +src/SLICOT-Reference/src/MB03WD.o: src/SLICOT-Reference/src/MB03WD.f.o +.PHONY : src/SLICOT-Reference/src/MB03WD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03WD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WD.f.o +.PHONY : src/SLICOT-Reference/src/MB03WD.f.o + +src/SLICOT-Reference/src/MB03WD.i: src/SLICOT-Reference/src/MB03WD.f.i +.PHONY : src/SLICOT-Reference/src/MB03WD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03WD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WD.f.i +.PHONY : src/SLICOT-Reference/src/MB03WD.f.i + +src/SLICOT-Reference/src/MB03WD.s: src/SLICOT-Reference/src/MB03WD.f.s +.PHONY : src/SLICOT-Reference/src/MB03WD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03WD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WD.f.s +.PHONY : src/SLICOT-Reference/src/MB03WD.f.s + +src/SLICOT-Reference/src/MB03WX.o: src/SLICOT-Reference/src/MB03WX.f.o +.PHONY : src/SLICOT-Reference/src/MB03WX.o + +# target to build an object file +src/SLICOT-Reference/src/MB03WX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WX.f.o +.PHONY : src/SLICOT-Reference/src/MB03WX.f.o + +src/SLICOT-Reference/src/MB03WX.i: src/SLICOT-Reference/src/MB03WX.f.i +.PHONY : src/SLICOT-Reference/src/MB03WX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03WX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WX.f.i +.PHONY : src/SLICOT-Reference/src/MB03WX.f.i + +src/SLICOT-Reference/src/MB03WX.s: src/SLICOT-Reference/src/MB03WX.f.s +.PHONY : src/SLICOT-Reference/src/MB03WX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03WX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WX.f.s +.PHONY : src/SLICOT-Reference/src/MB03WX.f.s + +src/SLICOT-Reference/src/MB03XD.o: src/SLICOT-Reference/src/MB03XD.f.o +.PHONY : src/SLICOT-Reference/src/MB03XD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03XD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XD.f.o +.PHONY : src/SLICOT-Reference/src/MB03XD.f.o + +src/SLICOT-Reference/src/MB03XD.i: src/SLICOT-Reference/src/MB03XD.f.i +.PHONY : src/SLICOT-Reference/src/MB03XD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03XD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XD.f.i +.PHONY : src/SLICOT-Reference/src/MB03XD.f.i + +src/SLICOT-Reference/src/MB03XD.s: src/SLICOT-Reference/src/MB03XD.f.s +.PHONY : src/SLICOT-Reference/src/MB03XD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03XD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XD.f.s +.PHONY : src/SLICOT-Reference/src/MB03XD.f.s + +src/SLICOT-Reference/src/MB03XP.o: src/SLICOT-Reference/src/MB03XP.f.o +.PHONY : src/SLICOT-Reference/src/MB03XP.o + +# target to build an object file +src/SLICOT-Reference/src/MB03XP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XP.f.o +.PHONY : src/SLICOT-Reference/src/MB03XP.f.o + +src/SLICOT-Reference/src/MB03XP.i: src/SLICOT-Reference/src/MB03XP.f.i +.PHONY : src/SLICOT-Reference/src/MB03XP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03XP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XP.f.i +.PHONY : src/SLICOT-Reference/src/MB03XP.f.i + +src/SLICOT-Reference/src/MB03XP.s: src/SLICOT-Reference/src/MB03XP.f.s +.PHONY : src/SLICOT-Reference/src/MB03XP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03XP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XP.f.s +.PHONY : src/SLICOT-Reference/src/MB03XP.f.s + +src/SLICOT-Reference/src/MB03XS.o: src/SLICOT-Reference/src/MB03XS.f.o +.PHONY : src/SLICOT-Reference/src/MB03XS.o + +# target to build an object file +src/SLICOT-Reference/src/MB03XS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XS.f.o +.PHONY : src/SLICOT-Reference/src/MB03XS.f.o + +src/SLICOT-Reference/src/MB03XS.i: src/SLICOT-Reference/src/MB03XS.f.i +.PHONY : src/SLICOT-Reference/src/MB03XS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03XS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XS.f.i +.PHONY : src/SLICOT-Reference/src/MB03XS.f.i + +src/SLICOT-Reference/src/MB03XS.s: src/SLICOT-Reference/src/MB03XS.f.s +.PHONY : src/SLICOT-Reference/src/MB03XS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03XS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XS.f.s +.PHONY : src/SLICOT-Reference/src/MB03XS.f.s + +src/SLICOT-Reference/src/MB03XU.o: src/SLICOT-Reference/src/MB03XU.f.o +.PHONY : src/SLICOT-Reference/src/MB03XU.o + +# target to build an object file +src/SLICOT-Reference/src/MB03XU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XU.f.o +.PHONY : src/SLICOT-Reference/src/MB03XU.f.o + +src/SLICOT-Reference/src/MB03XU.i: src/SLICOT-Reference/src/MB03XU.f.i +.PHONY : src/SLICOT-Reference/src/MB03XU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03XU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XU.f.i +.PHONY : src/SLICOT-Reference/src/MB03XU.f.i + +src/SLICOT-Reference/src/MB03XU.s: src/SLICOT-Reference/src/MB03XU.f.s +.PHONY : src/SLICOT-Reference/src/MB03XU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03XU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XU.f.s +.PHONY : src/SLICOT-Reference/src/MB03XU.f.s + +src/SLICOT-Reference/src/MB03XZ.o: src/SLICOT-Reference/src/MB03XZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03XZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB03XZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XZ.f.o +.PHONY : src/SLICOT-Reference/src/MB03XZ.f.o + +src/SLICOT-Reference/src/MB03XZ.i: src/SLICOT-Reference/src/MB03XZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03XZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03XZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XZ.f.i +.PHONY : src/SLICOT-Reference/src/MB03XZ.f.i + +src/SLICOT-Reference/src/MB03XZ.s: src/SLICOT-Reference/src/MB03XZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03XZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03XZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XZ.f.s +.PHONY : src/SLICOT-Reference/src/MB03XZ.f.s + +src/SLICOT-Reference/src/MB03YA.o: src/SLICOT-Reference/src/MB03YA.f.o +.PHONY : src/SLICOT-Reference/src/MB03YA.o + +# target to build an object file +src/SLICOT-Reference/src/MB03YA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YA.f.o +.PHONY : src/SLICOT-Reference/src/MB03YA.f.o + +src/SLICOT-Reference/src/MB03YA.i: src/SLICOT-Reference/src/MB03YA.f.i +.PHONY : src/SLICOT-Reference/src/MB03YA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03YA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YA.f.i +.PHONY : src/SLICOT-Reference/src/MB03YA.f.i + +src/SLICOT-Reference/src/MB03YA.s: src/SLICOT-Reference/src/MB03YA.f.s +.PHONY : src/SLICOT-Reference/src/MB03YA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03YA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YA.f.s +.PHONY : src/SLICOT-Reference/src/MB03YA.f.s + +src/SLICOT-Reference/src/MB03YD.o: src/SLICOT-Reference/src/MB03YD.f.o +.PHONY : src/SLICOT-Reference/src/MB03YD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03YD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YD.f.o +.PHONY : src/SLICOT-Reference/src/MB03YD.f.o + +src/SLICOT-Reference/src/MB03YD.i: src/SLICOT-Reference/src/MB03YD.f.i +.PHONY : src/SLICOT-Reference/src/MB03YD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03YD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YD.f.i +.PHONY : src/SLICOT-Reference/src/MB03YD.f.i + +src/SLICOT-Reference/src/MB03YD.s: src/SLICOT-Reference/src/MB03YD.f.s +.PHONY : src/SLICOT-Reference/src/MB03YD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03YD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YD.f.s +.PHONY : src/SLICOT-Reference/src/MB03YD.f.s + +src/SLICOT-Reference/src/MB03YT.o: src/SLICOT-Reference/src/MB03YT.f.o +.PHONY : src/SLICOT-Reference/src/MB03YT.o + +# target to build an object file +src/SLICOT-Reference/src/MB03YT.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YT.f.o +.PHONY : src/SLICOT-Reference/src/MB03YT.f.o + +src/SLICOT-Reference/src/MB03YT.i: src/SLICOT-Reference/src/MB03YT.f.i +.PHONY : src/SLICOT-Reference/src/MB03YT.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03YT.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YT.f.i +.PHONY : src/SLICOT-Reference/src/MB03YT.f.i + +src/SLICOT-Reference/src/MB03YT.s: src/SLICOT-Reference/src/MB03YT.f.s +.PHONY : src/SLICOT-Reference/src/MB03YT.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03YT.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YT.f.s +.PHONY : src/SLICOT-Reference/src/MB03YT.f.s + +src/SLICOT-Reference/src/MB03ZA.o: src/SLICOT-Reference/src/MB03ZA.f.o +.PHONY : src/SLICOT-Reference/src/MB03ZA.o + +# target to build an object file +src/SLICOT-Reference/src/MB03ZA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ZA.f.o +.PHONY : src/SLICOT-Reference/src/MB03ZA.f.o + +src/SLICOT-Reference/src/MB03ZA.i: src/SLICOT-Reference/src/MB03ZA.f.i +.PHONY : src/SLICOT-Reference/src/MB03ZA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03ZA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ZA.f.i +.PHONY : src/SLICOT-Reference/src/MB03ZA.f.i + +src/SLICOT-Reference/src/MB03ZA.s: src/SLICOT-Reference/src/MB03ZA.f.s +.PHONY : src/SLICOT-Reference/src/MB03ZA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03ZA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ZA.f.s +.PHONY : src/SLICOT-Reference/src/MB03ZA.f.s + +src/SLICOT-Reference/src/MB03ZD.o: src/SLICOT-Reference/src/MB03ZD.f.o +.PHONY : src/SLICOT-Reference/src/MB03ZD.o + +# target to build an object file +src/SLICOT-Reference/src/MB03ZD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ZD.f.o +.PHONY : src/SLICOT-Reference/src/MB03ZD.f.o + +src/SLICOT-Reference/src/MB03ZD.i: src/SLICOT-Reference/src/MB03ZD.f.i +.PHONY : src/SLICOT-Reference/src/MB03ZD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB03ZD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ZD.f.i +.PHONY : src/SLICOT-Reference/src/MB03ZD.f.i + +src/SLICOT-Reference/src/MB03ZD.s: src/SLICOT-Reference/src/MB03ZD.f.s +.PHONY : src/SLICOT-Reference/src/MB03ZD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB03ZD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ZD.f.s +.PHONY : src/SLICOT-Reference/src/MB03ZD.f.s + +src/SLICOT-Reference/src/MB04AD.o: src/SLICOT-Reference/src/MB04AD.f.o +.PHONY : src/SLICOT-Reference/src/MB04AD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04AD.f.o +.PHONY : src/SLICOT-Reference/src/MB04AD.f.o + +src/SLICOT-Reference/src/MB04AD.i: src/SLICOT-Reference/src/MB04AD.f.i +.PHONY : src/SLICOT-Reference/src/MB04AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04AD.f.i +.PHONY : src/SLICOT-Reference/src/MB04AD.f.i + +src/SLICOT-Reference/src/MB04AD.s: src/SLICOT-Reference/src/MB04AD.f.s +.PHONY : src/SLICOT-Reference/src/MB04AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04AD.f.s +.PHONY : src/SLICOT-Reference/src/MB04AD.f.s + +src/SLICOT-Reference/src/MB04AZ.o: src/SLICOT-Reference/src/MB04AZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04AZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB04AZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04AZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04AZ.f.o + +src/SLICOT-Reference/src/MB04AZ.i: src/SLICOT-Reference/src/MB04AZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04AZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04AZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04AZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04AZ.f.i + +src/SLICOT-Reference/src/MB04AZ.s: src/SLICOT-Reference/src/MB04AZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04AZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04AZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04AZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04AZ.f.s + +src/SLICOT-Reference/src/MB04BD.o: src/SLICOT-Reference/src/MB04BD.f.o +.PHONY : src/SLICOT-Reference/src/MB04BD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BD.f.o +.PHONY : src/SLICOT-Reference/src/MB04BD.f.o + +src/SLICOT-Reference/src/MB04BD.i: src/SLICOT-Reference/src/MB04BD.f.i +.PHONY : src/SLICOT-Reference/src/MB04BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BD.f.i +.PHONY : src/SLICOT-Reference/src/MB04BD.f.i + +src/SLICOT-Reference/src/MB04BD.s: src/SLICOT-Reference/src/MB04BD.f.s +.PHONY : src/SLICOT-Reference/src/MB04BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BD.f.s +.PHONY : src/SLICOT-Reference/src/MB04BD.f.s + +src/SLICOT-Reference/src/MB04BP.o: src/SLICOT-Reference/src/MB04BP.f.o +.PHONY : src/SLICOT-Reference/src/MB04BP.o + +# target to build an object file +src/SLICOT-Reference/src/MB04BP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BP.f.o +.PHONY : src/SLICOT-Reference/src/MB04BP.f.o + +src/SLICOT-Reference/src/MB04BP.i: src/SLICOT-Reference/src/MB04BP.f.i +.PHONY : src/SLICOT-Reference/src/MB04BP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04BP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BP.f.i +.PHONY : src/SLICOT-Reference/src/MB04BP.f.i + +src/SLICOT-Reference/src/MB04BP.s: src/SLICOT-Reference/src/MB04BP.f.s +.PHONY : src/SLICOT-Reference/src/MB04BP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04BP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BP.f.s +.PHONY : src/SLICOT-Reference/src/MB04BP.f.s + +src/SLICOT-Reference/src/MB04BZ.o: src/SLICOT-Reference/src/MB04BZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04BZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB04BZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04BZ.f.o + +src/SLICOT-Reference/src/MB04BZ.i: src/SLICOT-Reference/src/MB04BZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04BZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04BZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04BZ.f.i + +src/SLICOT-Reference/src/MB04BZ.s: src/SLICOT-Reference/src/MB04BZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04BZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04BZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04BZ.f.s + +src/SLICOT-Reference/src/MB04CD.o: src/SLICOT-Reference/src/MB04CD.f.o +.PHONY : src/SLICOT-Reference/src/MB04CD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04CD.f.o +.PHONY : src/SLICOT-Reference/src/MB04CD.f.o + +src/SLICOT-Reference/src/MB04CD.i: src/SLICOT-Reference/src/MB04CD.f.i +.PHONY : src/SLICOT-Reference/src/MB04CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04CD.f.i +.PHONY : src/SLICOT-Reference/src/MB04CD.f.i + +src/SLICOT-Reference/src/MB04CD.s: src/SLICOT-Reference/src/MB04CD.f.s +.PHONY : src/SLICOT-Reference/src/MB04CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04CD.f.s +.PHONY : src/SLICOT-Reference/src/MB04CD.f.s + +src/SLICOT-Reference/src/MB04DB.o: src/SLICOT-Reference/src/MB04DB.f.o +.PHONY : src/SLICOT-Reference/src/MB04DB.o + +# target to build an object file +src/SLICOT-Reference/src/MB04DB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DB.f.o +.PHONY : src/SLICOT-Reference/src/MB04DB.f.o + +src/SLICOT-Reference/src/MB04DB.i: src/SLICOT-Reference/src/MB04DB.f.i +.PHONY : src/SLICOT-Reference/src/MB04DB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04DB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DB.f.i +.PHONY : src/SLICOT-Reference/src/MB04DB.f.i + +src/SLICOT-Reference/src/MB04DB.s: src/SLICOT-Reference/src/MB04DB.f.s +.PHONY : src/SLICOT-Reference/src/MB04DB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04DB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DB.f.s +.PHONY : src/SLICOT-Reference/src/MB04DB.f.s + +src/SLICOT-Reference/src/MB04DD.o: src/SLICOT-Reference/src/MB04DD.f.o +.PHONY : src/SLICOT-Reference/src/MB04DD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DD.f.o +.PHONY : src/SLICOT-Reference/src/MB04DD.f.o + +src/SLICOT-Reference/src/MB04DD.i: src/SLICOT-Reference/src/MB04DD.f.i +.PHONY : src/SLICOT-Reference/src/MB04DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DD.f.i +.PHONY : src/SLICOT-Reference/src/MB04DD.f.i + +src/SLICOT-Reference/src/MB04DD.s: src/SLICOT-Reference/src/MB04DD.f.s +.PHONY : src/SLICOT-Reference/src/MB04DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DD.f.s +.PHONY : src/SLICOT-Reference/src/MB04DD.f.s + +src/SLICOT-Reference/src/MB04DI.o: src/SLICOT-Reference/src/MB04DI.f.o +.PHONY : src/SLICOT-Reference/src/MB04DI.o + +# target to build an object file +src/SLICOT-Reference/src/MB04DI.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DI.f.o +.PHONY : src/SLICOT-Reference/src/MB04DI.f.o + +src/SLICOT-Reference/src/MB04DI.i: src/SLICOT-Reference/src/MB04DI.f.i +.PHONY : src/SLICOT-Reference/src/MB04DI.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04DI.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DI.f.i +.PHONY : src/SLICOT-Reference/src/MB04DI.f.i + +src/SLICOT-Reference/src/MB04DI.s: src/SLICOT-Reference/src/MB04DI.f.s +.PHONY : src/SLICOT-Reference/src/MB04DI.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04DI.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DI.f.s +.PHONY : src/SLICOT-Reference/src/MB04DI.f.s + +src/SLICOT-Reference/src/MB04DL.o: src/SLICOT-Reference/src/MB04DL.f.o +.PHONY : src/SLICOT-Reference/src/MB04DL.o + +# target to build an object file +src/SLICOT-Reference/src/MB04DL.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DL.f.o +.PHONY : src/SLICOT-Reference/src/MB04DL.f.o + +src/SLICOT-Reference/src/MB04DL.i: src/SLICOT-Reference/src/MB04DL.f.i +.PHONY : src/SLICOT-Reference/src/MB04DL.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04DL.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DL.f.i +.PHONY : src/SLICOT-Reference/src/MB04DL.f.i + +src/SLICOT-Reference/src/MB04DL.s: src/SLICOT-Reference/src/MB04DL.f.s +.PHONY : src/SLICOT-Reference/src/MB04DL.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04DL.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DL.f.s +.PHONY : src/SLICOT-Reference/src/MB04DL.f.s + +src/SLICOT-Reference/src/MB04DP.o: src/SLICOT-Reference/src/MB04DP.f.o +.PHONY : src/SLICOT-Reference/src/MB04DP.o + +# target to build an object file +src/SLICOT-Reference/src/MB04DP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DP.f.o +.PHONY : src/SLICOT-Reference/src/MB04DP.f.o + +src/SLICOT-Reference/src/MB04DP.i: src/SLICOT-Reference/src/MB04DP.f.i +.PHONY : src/SLICOT-Reference/src/MB04DP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04DP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DP.f.i +.PHONY : src/SLICOT-Reference/src/MB04DP.f.i + +src/SLICOT-Reference/src/MB04DP.s: src/SLICOT-Reference/src/MB04DP.f.s +.PHONY : src/SLICOT-Reference/src/MB04DP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04DP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DP.f.s +.PHONY : src/SLICOT-Reference/src/MB04DP.f.s + +src/SLICOT-Reference/src/MB04DS.o: src/SLICOT-Reference/src/MB04DS.f.o +.PHONY : src/SLICOT-Reference/src/MB04DS.o + +# target to build an object file +src/SLICOT-Reference/src/MB04DS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DS.f.o +.PHONY : src/SLICOT-Reference/src/MB04DS.f.o + +src/SLICOT-Reference/src/MB04DS.i: src/SLICOT-Reference/src/MB04DS.f.i +.PHONY : src/SLICOT-Reference/src/MB04DS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04DS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DS.f.i +.PHONY : src/SLICOT-Reference/src/MB04DS.f.i + +src/SLICOT-Reference/src/MB04DS.s: src/SLICOT-Reference/src/MB04DS.f.s +.PHONY : src/SLICOT-Reference/src/MB04DS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04DS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DS.f.s +.PHONY : src/SLICOT-Reference/src/MB04DS.f.s + +src/SLICOT-Reference/src/MB04DY.o: src/SLICOT-Reference/src/MB04DY.f.o +.PHONY : src/SLICOT-Reference/src/MB04DY.o + +# target to build an object file +src/SLICOT-Reference/src/MB04DY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DY.f.o +.PHONY : src/SLICOT-Reference/src/MB04DY.f.o + +src/SLICOT-Reference/src/MB04DY.i: src/SLICOT-Reference/src/MB04DY.f.i +.PHONY : src/SLICOT-Reference/src/MB04DY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04DY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DY.f.i +.PHONY : src/SLICOT-Reference/src/MB04DY.f.i + +src/SLICOT-Reference/src/MB04DY.s: src/SLICOT-Reference/src/MB04DY.f.s +.PHONY : src/SLICOT-Reference/src/MB04DY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04DY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DY.f.s +.PHONY : src/SLICOT-Reference/src/MB04DY.f.s + +src/SLICOT-Reference/src/MB04DZ.o: src/SLICOT-Reference/src/MB04DZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04DZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB04DZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04DZ.f.o + +src/SLICOT-Reference/src/MB04DZ.i: src/SLICOT-Reference/src/MB04DZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04DZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04DZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04DZ.f.i + +src/SLICOT-Reference/src/MB04DZ.s: src/SLICOT-Reference/src/MB04DZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04DZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04DZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04DZ.f.s + +src/SLICOT-Reference/src/MB04ED.o: src/SLICOT-Reference/src/MB04ED.f.o +.PHONY : src/SLICOT-Reference/src/MB04ED.o + +# target to build an object file +src/SLICOT-Reference/src/MB04ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ED.f.o +.PHONY : src/SLICOT-Reference/src/MB04ED.f.o + +src/SLICOT-Reference/src/MB04ED.i: src/SLICOT-Reference/src/MB04ED.f.i +.PHONY : src/SLICOT-Reference/src/MB04ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ED.f.i +.PHONY : src/SLICOT-Reference/src/MB04ED.f.i + +src/SLICOT-Reference/src/MB04ED.s: src/SLICOT-Reference/src/MB04ED.f.s +.PHONY : src/SLICOT-Reference/src/MB04ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ED.f.s +.PHONY : src/SLICOT-Reference/src/MB04ED.f.s + +src/SLICOT-Reference/src/MB04FD.o: src/SLICOT-Reference/src/MB04FD.f.o +.PHONY : src/SLICOT-Reference/src/MB04FD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04FD.f.o +.PHONY : src/SLICOT-Reference/src/MB04FD.f.o + +src/SLICOT-Reference/src/MB04FD.i: src/SLICOT-Reference/src/MB04FD.f.i +.PHONY : src/SLICOT-Reference/src/MB04FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04FD.f.i +.PHONY : src/SLICOT-Reference/src/MB04FD.f.i + +src/SLICOT-Reference/src/MB04FD.s: src/SLICOT-Reference/src/MB04FD.f.s +.PHONY : src/SLICOT-Reference/src/MB04FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04FD.f.s +.PHONY : src/SLICOT-Reference/src/MB04FD.f.s + +src/SLICOT-Reference/src/MB04FP.o: src/SLICOT-Reference/src/MB04FP.f.o +.PHONY : src/SLICOT-Reference/src/MB04FP.o + +# target to build an object file +src/SLICOT-Reference/src/MB04FP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04FP.f.o +.PHONY : src/SLICOT-Reference/src/MB04FP.f.o + +src/SLICOT-Reference/src/MB04FP.i: src/SLICOT-Reference/src/MB04FP.f.i +.PHONY : src/SLICOT-Reference/src/MB04FP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04FP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04FP.f.i +.PHONY : src/SLICOT-Reference/src/MB04FP.f.i + +src/SLICOT-Reference/src/MB04FP.s: src/SLICOT-Reference/src/MB04FP.f.s +.PHONY : src/SLICOT-Reference/src/MB04FP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04FP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04FP.f.s +.PHONY : src/SLICOT-Reference/src/MB04FP.f.s + +src/SLICOT-Reference/src/MB04GD.o: src/SLICOT-Reference/src/MB04GD.f.o +.PHONY : src/SLICOT-Reference/src/MB04GD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04GD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04GD.f.o +.PHONY : src/SLICOT-Reference/src/MB04GD.f.o + +src/SLICOT-Reference/src/MB04GD.i: src/SLICOT-Reference/src/MB04GD.f.i +.PHONY : src/SLICOT-Reference/src/MB04GD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04GD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04GD.f.i +.PHONY : src/SLICOT-Reference/src/MB04GD.f.i + +src/SLICOT-Reference/src/MB04GD.s: src/SLICOT-Reference/src/MB04GD.f.s +.PHONY : src/SLICOT-Reference/src/MB04GD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04GD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04GD.f.s +.PHONY : src/SLICOT-Reference/src/MB04GD.f.s + +src/SLICOT-Reference/src/MB04HD.o: src/SLICOT-Reference/src/MB04HD.f.o +.PHONY : src/SLICOT-Reference/src/MB04HD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04HD.f.o +.PHONY : src/SLICOT-Reference/src/MB04HD.f.o + +src/SLICOT-Reference/src/MB04HD.i: src/SLICOT-Reference/src/MB04HD.f.i +.PHONY : src/SLICOT-Reference/src/MB04HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04HD.f.i +.PHONY : src/SLICOT-Reference/src/MB04HD.f.i + +src/SLICOT-Reference/src/MB04HD.s: src/SLICOT-Reference/src/MB04HD.f.s +.PHONY : src/SLICOT-Reference/src/MB04HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04HD.f.s +.PHONY : src/SLICOT-Reference/src/MB04HD.f.s + +src/SLICOT-Reference/src/MB04ID.o: src/SLICOT-Reference/src/MB04ID.f.o +.PHONY : src/SLICOT-Reference/src/MB04ID.o + +# target to build an object file +src/SLICOT-Reference/src/MB04ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ID.f.o +.PHONY : src/SLICOT-Reference/src/MB04ID.f.o + +src/SLICOT-Reference/src/MB04ID.i: src/SLICOT-Reference/src/MB04ID.f.i +.PHONY : src/SLICOT-Reference/src/MB04ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ID.f.i +.PHONY : src/SLICOT-Reference/src/MB04ID.f.i + +src/SLICOT-Reference/src/MB04ID.s: src/SLICOT-Reference/src/MB04ID.f.s +.PHONY : src/SLICOT-Reference/src/MB04ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ID.f.s +.PHONY : src/SLICOT-Reference/src/MB04ID.f.s + +src/SLICOT-Reference/src/MB04IY.o: src/SLICOT-Reference/src/MB04IY.f.o +.PHONY : src/SLICOT-Reference/src/MB04IY.o + +# target to build an object file +src/SLICOT-Reference/src/MB04IY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04IY.f.o +.PHONY : src/SLICOT-Reference/src/MB04IY.f.o + +src/SLICOT-Reference/src/MB04IY.i: src/SLICOT-Reference/src/MB04IY.f.i +.PHONY : src/SLICOT-Reference/src/MB04IY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04IY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04IY.f.i +.PHONY : src/SLICOT-Reference/src/MB04IY.f.i + +src/SLICOT-Reference/src/MB04IY.s: src/SLICOT-Reference/src/MB04IY.f.s +.PHONY : src/SLICOT-Reference/src/MB04IY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04IY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04IY.f.s +.PHONY : src/SLICOT-Reference/src/MB04IY.f.s + +src/SLICOT-Reference/src/MB04IZ.o: src/SLICOT-Reference/src/MB04IZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04IZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB04IZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04IZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04IZ.f.o + +src/SLICOT-Reference/src/MB04IZ.i: src/SLICOT-Reference/src/MB04IZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04IZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04IZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04IZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04IZ.f.i + +src/SLICOT-Reference/src/MB04IZ.s: src/SLICOT-Reference/src/MB04IZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04IZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04IZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04IZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04IZ.f.s + +src/SLICOT-Reference/src/MB04JD.o: src/SLICOT-Reference/src/MB04JD.f.o +.PHONY : src/SLICOT-Reference/src/MB04JD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04JD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04JD.f.o +.PHONY : src/SLICOT-Reference/src/MB04JD.f.o + +src/SLICOT-Reference/src/MB04JD.i: src/SLICOT-Reference/src/MB04JD.f.i +.PHONY : src/SLICOT-Reference/src/MB04JD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04JD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04JD.f.i +.PHONY : src/SLICOT-Reference/src/MB04JD.f.i + +src/SLICOT-Reference/src/MB04JD.s: src/SLICOT-Reference/src/MB04JD.f.s +.PHONY : src/SLICOT-Reference/src/MB04JD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04JD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04JD.f.s +.PHONY : src/SLICOT-Reference/src/MB04JD.f.s + +src/SLICOT-Reference/src/MB04KD.o: src/SLICOT-Reference/src/MB04KD.f.o +.PHONY : src/SLICOT-Reference/src/MB04KD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04KD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04KD.f.o +.PHONY : src/SLICOT-Reference/src/MB04KD.f.o + +src/SLICOT-Reference/src/MB04KD.i: src/SLICOT-Reference/src/MB04KD.f.i +.PHONY : src/SLICOT-Reference/src/MB04KD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04KD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04KD.f.i +.PHONY : src/SLICOT-Reference/src/MB04KD.f.i + +src/SLICOT-Reference/src/MB04KD.s: src/SLICOT-Reference/src/MB04KD.f.s +.PHONY : src/SLICOT-Reference/src/MB04KD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04KD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04KD.f.s +.PHONY : src/SLICOT-Reference/src/MB04KD.f.s + +src/SLICOT-Reference/src/MB04LD.o: src/SLICOT-Reference/src/MB04LD.f.o +.PHONY : src/SLICOT-Reference/src/MB04LD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04LD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04LD.f.o +.PHONY : src/SLICOT-Reference/src/MB04LD.f.o + +src/SLICOT-Reference/src/MB04LD.i: src/SLICOT-Reference/src/MB04LD.f.i +.PHONY : src/SLICOT-Reference/src/MB04LD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04LD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04LD.f.i +.PHONY : src/SLICOT-Reference/src/MB04LD.f.i + +src/SLICOT-Reference/src/MB04LD.s: src/SLICOT-Reference/src/MB04LD.f.s +.PHONY : src/SLICOT-Reference/src/MB04LD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04LD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04LD.f.s +.PHONY : src/SLICOT-Reference/src/MB04LD.f.s + +src/SLICOT-Reference/src/MB04MD.o: src/SLICOT-Reference/src/MB04MD.f.o +.PHONY : src/SLICOT-Reference/src/MB04MD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04MD.f.o +.PHONY : src/SLICOT-Reference/src/MB04MD.f.o + +src/SLICOT-Reference/src/MB04MD.i: src/SLICOT-Reference/src/MB04MD.f.i +.PHONY : src/SLICOT-Reference/src/MB04MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04MD.f.i +.PHONY : src/SLICOT-Reference/src/MB04MD.f.i + +src/SLICOT-Reference/src/MB04MD.s: src/SLICOT-Reference/src/MB04MD.f.s +.PHONY : src/SLICOT-Reference/src/MB04MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04MD.f.s +.PHONY : src/SLICOT-Reference/src/MB04MD.f.s + +src/SLICOT-Reference/src/MB04ND.o: src/SLICOT-Reference/src/MB04ND.f.o +.PHONY : src/SLICOT-Reference/src/MB04ND.o + +# target to build an object file +src/SLICOT-Reference/src/MB04ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ND.f.o +.PHONY : src/SLICOT-Reference/src/MB04ND.f.o + +src/SLICOT-Reference/src/MB04ND.i: src/SLICOT-Reference/src/MB04ND.f.i +.PHONY : src/SLICOT-Reference/src/MB04ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ND.f.i +.PHONY : src/SLICOT-Reference/src/MB04ND.f.i + +src/SLICOT-Reference/src/MB04ND.s: src/SLICOT-Reference/src/MB04ND.f.s +.PHONY : src/SLICOT-Reference/src/MB04ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ND.f.s +.PHONY : src/SLICOT-Reference/src/MB04ND.f.s + +src/SLICOT-Reference/src/MB04NY.o: src/SLICOT-Reference/src/MB04NY.f.o +.PHONY : src/SLICOT-Reference/src/MB04NY.o + +# target to build an object file +src/SLICOT-Reference/src/MB04NY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04NY.f.o +.PHONY : src/SLICOT-Reference/src/MB04NY.f.o + +src/SLICOT-Reference/src/MB04NY.i: src/SLICOT-Reference/src/MB04NY.f.i +.PHONY : src/SLICOT-Reference/src/MB04NY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04NY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04NY.f.i +.PHONY : src/SLICOT-Reference/src/MB04NY.f.i + +src/SLICOT-Reference/src/MB04NY.s: src/SLICOT-Reference/src/MB04NY.f.s +.PHONY : src/SLICOT-Reference/src/MB04NY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04NY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04NY.f.s +.PHONY : src/SLICOT-Reference/src/MB04NY.f.s + +src/SLICOT-Reference/src/MB04OD.o: src/SLICOT-Reference/src/MB04OD.f.o +.PHONY : src/SLICOT-Reference/src/MB04OD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OD.f.o +.PHONY : src/SLICOT-Reference/src/MB04OD.f.o + +src/SLICOT-Reference/src/MB04OD.i: src/SLICOT-Reference/src/MB04OD.f.i +.PHONY : src/SLICOT-Reference/src/MB04OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OD.f.i +.PHONY : src/SLICOT-Reference/src/MB04OD.f.i + +src/SLICOT-Reference/src/MB04OD.s: src/SLICOT-Reference/src/MB04OD.f.s +.PHONY : src/SLICOT-Reference/src/MB04OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OD.f.s +.PHONY : src/SLICOT-Reference/src/MB04OD.f.s + +src/SLICOT-Reference/src/MB04OW.o: src/SLICOT-Reference/src/MB04OW.f.o +.PHONY : src/SLICOT-Reference/src/MB04OW.o + +# target to build an object file +src/SLICOT-Reference/src/MB04OW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OW.f.o +.PHONY : src/SLICOT-Reference/src/MB04OW.f.o + +src/SLICOT-Reference/src/MB04OW.i: src/SLICOT-Reference/src/MB04OW.f.i +.PHONY : src/SLICOT-Reference/src/MB04OW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04OW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OW.f.i +.PHONY : src/SLICOT-Reference/src/MB04OW.f.i + +src/SLICOT-Reference/src/MB04OW.s: src/SLICOT-Reference/src/MB04OW.f.s +.PHONY : src/SLICOT-Reference/src/MB04OW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04OW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OW.f.s +.PHONY : src/SLICOT-Reference/src/MB04OW.f.s + +src/SLICOT-Reference/src/MB04OX.o: src/SLICOT-Reference/src/MB04OX.f.o +.PHONY : src/SLICOT-Reference/src/MB04OX.o + +# target to build an object file +src/SLICOT-Reference/src/MB04OX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OX.f.o +.PHONY : src/SLICOT-Reference/src/MB04OX.f.o + +src/SLICOT-Reference/src/MB04OX.i: src/SLICOT-Reference/src/MB04OX.f.i +.PHONY : src/SLICOT-Reference/src/MB04OX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04OX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OX.f.i +.PHONY : src/SLICOT-Reference/src/MB04OX.f.i + +src/SLICOT-Reference/src/MB04OX.s: src/SLICOT-Reference/src/MB04OX.f.s +.PHONY : src/SLICOT-Reference/src/MB04OX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04OX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OX.f.s +.PHONY : src/SLICOT-Reference/src/MB04OX.f.s + +src/SLICOT-Reference/src/MB04OY.o: src/SLICOT-Reference/src/MB04OY.f.o +.PHONY : src/SLICOT-Reference/src/MB04OY.o + +# target to build an object file +src/SLICOT-Reference/src/MB04OY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OY.f.o +.PHONY : src/SLICOT-Reference/src/MB04OY.f.o + +src/SLICOT-Reference/src/MB04OY.i: src/SLICOT-Reference/src/MB04OY.f.i +.PHONY : src/SLICOT-Reference/src/MB04OY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04OY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OY.f.i +.PHONY : src/SLICOT-Reference/src/MB04OY.f.i + +src/SLICOT-Reference/src/MB04OY.s: src/SLICOT-Reference/src/MB04OY.f.s +.PHONY : src/SLICOT-Reference/src/MB04OY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04OY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OY.f.s +.PHONY : src/SLICOT-Reference/src/MB04OY.f.s + +src/SLICOT-Reference/src/MB04PA.o: src/SLICOT-Reference/src/MB04PA.f.o +.PHONY : src/SLICOT-Reference/src/MB04PA.o + +# target to build an object file +src/SLICOT-Reference/src/MB04PA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PA.f.o +.PHONY : src/SLICOT-Reference/src/MB04PA.f.o + +src/SLICOT-Reference/src/MB04PA.i: src/SLICOT-Reference/src/MB04PA.f.i +.PHONY : src/SLICOT-Reference/src/MB04PA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04PA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PA.f.i +.PHONY : src/SLICOT-Reference/src/MB04PA.f.i + +src/SLICOT-Reference/src/MB04PA.s: src/SLICOT-Reference/src/MB04PA.f.s +.PHONY : src/SLICOT-Reference/src/MB04PA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04PA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PA.f.s +.PHONY : src/SLICOT-Reference/src/MB04PA.f.s + +src/SLICOT-Reference/src/MB04PB.o: src/SLICOT-Reference/src/MB04PB.f.o +.PHONY : src/SLICOT-Reference/src/MB04PB.o + +# target to build an object file +src/SLICOT-Reference/src/MB04PB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PB.f.o +.PHONY : src/SLICOT-Reference/src/MB04PB.f.o + +src/SLICOT-Reference/src/MB04PB.i: src/SLICOT-Reference/src/MB04PB.f.i +.PHONY : src/SLICOT-Reference/src/MB04PB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04PB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PB.f.i +.PHONY : src/SLICOT-Reference/src/MB04PB.f.i + +src/SLICOT-Reference/src/MB04PB.s: src/SLICOT-Reference/src/MB04PB.f.s +.PHONY : src/SLICOT-Reference/src/MB04PB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04PB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PB.f.s +.PHONY : src/SLICOT-Reference/src/MB04PB.f.s + +src/SLICOT-Reference/src/MB04PU.o: src/SLICOT-Reference/src/MB04PU.f.o +.PHONY : src/SLICOT-Reference/src/MB04PU.o + +# target to build an object file +src/SLICOT-Reference/src/MB04PU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PU.f.o +.PHONY : src/SLICOT-Reference/src/MB04PU.f.o + +src/SLICOT-Reference/src/MB04PU.i: src/SLICOT-Reference/src/MB04PU.f.i +.PHONY : src/SLICOT-Reference/src/MB04PU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04PU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PU.f.i +.PHONY : src/SLICOT-Reference/src/MB04PU.f.i + +src/SLICOT-Reference/src/MB04PU.s: src/SLICOT-Reference/src/MB04PU.f.s +.PHONY : src/SLICOT-Reference/src/MB04PU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04PU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PU.f.s +.PHONY : src/SLICOT-Reference/src/MB04PU.f.s + +src/SLICOT-Reference/src/MB04PY.o: src/SLICOT-Reference/src/MB04PY.f.o +.PHONY : src/SLICOT-Reference/src/MB04PY.o + +# target to build an object file +src/SLICOT-Reference/src/MB04PY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PY.f.o +.PHONY : src/SLICOT-Reference/src/MB04PY.f.o + +src/SLICOT-Reference/src/MB04PY.i: src/SLICOT-Reference/src/MB04PY.f.i +.PHONY : src/SLICOT-Reference/src/MB04PY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04PY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PY.f.i +.PHONY : src/SLICOT-Reference/src/MB04PY.f.i + +src/SLICOT-Reference/src/MB04PY.s: src/SLICOT-Reference/src/MB04PY.f.s +.PHONY : src/SLICOT-Reference/src/MB04PY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04PY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PY.f.s +.PHONY : src/SLICOT-Reference/src/MB04PY.f.s + +src/SLICOT-Reference/src/MB04QB.o: src/SLICOT-Reference/src/MB04QB.f.o +.PHONY : src/SLICOT-Reference/src/MB04QB.o + +# target to build an object file +src/SLICOT-Reference/src/MB04QB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QB.f.o +.PHONY : src/SLICOT-Reference/src/MB04QB.f.o + +src/SLICOT-Reference/src/MB04QB.i: src/SLICOT-Reference/src/MB04QB.f.i +.PHONY : src/SLICOT-Reference/src/MB04QB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04QB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QB.f.i +.PHONY : src/SLICOT-Reference/src/MB04QB.f.i + +src/SLICOT-Reference/src/MB04QB.s: src/SLICOT-Reference/src/MB04QB.f.s +.PHONY : src/SLICOT-Reference/src/MB04QB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04QB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QB.f.s +.PHONY : src/SLICOT-Reference/src/MB04QB.f.s + +src/SLICOT-Reference/src/MB04QC.o: src/SLICOT-Reference/src/MB04QC.f.o +.PHONY : src/SLICOT-Reference/src/MB04QC.o + +# target to build an object file +src/SLICOT-Reference/src/MB04QC.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QC.f.o +.PHONY : src/SLICOT-Reference/src/MB04QC.f.o + +src/SLICOT-Reference/src/MB04QC.i: src/SLICOT-Reference/src/MB04QC.f.i +.PHONY : src/SLICOT-Reference/src/MB04QC.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04QC.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QC.f.i +.PHONY : src/SLICOT-Reference/src/MB04QC.f.i + +src/SLICOT-Reference/src/MB04QC.s: src/SLICOT-Reference/src/MB04QC.f.s +.PHONY : src/SLICOT-Reference/src/MB04QC.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04QC.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QC.f.s +.PHONY : src/SLICOT-Reference/src/MB04QC.f.s + +src/SLICOT-Reference/src/MB04QF.o: src/SLICOT-Reference/src/MB04QF.f.o +.PHONY : src/SLICOT-Reference/src/MB04QF.o + +# target to build an object file +src/SLICOT-Reference/src/MB04QF.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QF.f.o +.PHONY : src/SLICOT-Reference/src/MB04QF.f.o + +src/SLICOT-Reference/src/MB04QF.i: src/SLICOT-Reference/src/MB04QF.f.i +.PHONY : src/SLICOT-Reference/src/MB04QF.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04QF.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QF.f.i +.PHONY : src/SLICOT-Reference/src/MB04QF.f.i + +src/SLICOT-Reference/src/MB04QF.s: src/SLICOT-Reference/src/MB04QF.f.s +.PHONY : src/SLICOT-Reference/src/MB04QF.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04QF.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QF.f.s +.PHONY : src/SLICOT-Reference/src/MB04QF.f.s + +src/SLICOT-Reference/src/MB04QS.o: src/SLICOT-Reference/src/MB04QS.f.o +.PHONY : src/SLICOT-Reference/src/MB04QS.o + +# target to build an object file +src/SLICOT-Reference/src/MB04QS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QS.f.o +.PHONY : src/SLICOT-Reference/src/MB04QS.f.o + +src/SLICOT-Reference/src/MB04QS.i: src/SLICOT-Reference/src/MB04QS.f.i +.PHONY : src/SLICOT-Reference/src/MB04QS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04QS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QS.f.i +.PHONY : src/SLICOT-Reference/src/MB04QS.f.i + +src/SLICOT-Reference/src/MB04QS.s: src/SLICOT-Reference/src/MB04QS.f.s +.PHONY : src/SLICOT-Reference/src/MB04QS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04QS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QS.f.s +.PHONY : src/SLICOT-Reference/src/MB04QS.f.s + +src/SLICOT-Reference/src/MB04QU.o: src/SLICOT-Reference/src/MB04QU.f.o +.PHONY : src/SLICOT-Reference/src/MB04QU.o + +# target to build an object file +src/SLICOT-Reference/src/MB04QU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QU.f.o +.PHONY : src/SLICOT-Reference/src/MB04QU.f.o + +src/SLICOT-Reference/src/MB04QU.i: src/SLICOT-Reference/src/MB04QU.f.i +.PHONY : src/SLICOT-Reference/src/MB04QU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04QU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QU.f.i +.PHONY : src/SLICOT-Reference/src/MB04QU.f.i + +src/SLICOT-Reference/src/MB04QU.s: src/SLICOT-Reference/src/MB04QU.f.s +.PHONY : src/SLICOT-Reference/src/MB04QU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04QU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QU.f.s +.PHONY : src/SLICOT-Reference/src/MB04QU.f.s + +src/SLICOT-Reference/src/MB04RB.o: src/SLICOT-Reference/src/MB04RB.f.o +.PHONY : src/SLICOT-Reference/src/MB04RB.o + +# target to build an object file +src/SLICOT-Reference/src/MB04RB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RB.f.o +.PHONY : src/SLICOT-Reference/src/MB04RB.f.o + +src/SLICOT-Reference/src/MB04RB.i: src/SLICOT-Reference/src/MB04RB.f.i +.PHONY : src/SLICOT-Reference/src/MB04RB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04RB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RB.f.i +.PHONY : src/SLICOT-Reference/src/MB04RB.f.i + +src/SLICOT-Reference/src/MB04RB.s: src/SLICOT-Reference/src/MB04RB.f.s +.PHONY : src/SLICOT-Reference/src/MB04RB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04RB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RB.f.s +.PHONY : src/SLICOT-Reference/src/MB04RB.f.s + +src/SLICOT-Reference/src/MB04RD.o: src/SLICOT-Reference/src/MB04RD.f.o +.PHONY : src/SLICOT-Reference/src/MB04RD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RD.f.o +.PHONY : src/SLICOT-Reference/src/MB04RD.f.o + +src/SLICOT-Reference/src/MB04RD.i: src/SLICOT-Reference/src/MB04RD.f.i +.PHONY : src/SLICOT-Reference/src/MB04RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RD.f.i +.PHONY : src/SLICOT-Reference/src/MB04RD.f.i + +src/SLICOT-Reference/src/MB04RD.s: src/SLICOT-Reference/src/MB04RD.f.s +.PHONY : src/SLICOT-Reference/src/MB04RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RD.f.s +.PHONY : src/SLICOT-Reference/src/MB04RD.f.s + +src/SLICOT-Reference/src/MB04RS.o: src/SLICOT-Reference/src/MB04RS.f.o +.PHONY : src/SLICOT-Reference/src/MB04RS.o + +# target to build an object file +src/SLICOT-Reference/src/MB04RS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RS.f.o +.PHONY : src/SLICOT-Reference/src/MB04RS.f.o + +src/SLICOT-Reference/src/MB04RS.i: src/SLICOT-Reference/src/MB04RS.f.i +.PHONY : src/SLICOT-Reference/src/MB04RS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04RS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RS.f.i +.PHONY : src/SLICOT-Reference/src/MB04RS.f.i + +src/SLICOT-Reference/src/MB04RS.s: src/SLICOT-Reference/src/MB04RS.f.s +.PHONY : src/SLICOT-Reference/src/MB04RS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04RS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RS.f.s +.PHONY : src/SLICOT-Reference/src/MB04RS.f.s + +src/SLICOT-Reference/src/MB04RT.o: src/SLICOT-Reference/src/MB04RT.f.o +.PHONY : src/SLICOT-Reference/src/MB04RT.o + +# target to build an object file +src/SLICOT-Reference/src/MB04RT.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RT.f.o +.PHONY : src/SLICOT-Reference/src/MB04RT.f.o + +src/SLICOT-Reference/src/MB04RT.i: src/SLICOT-Reference/src/MB04RT.f.i +.PHONY : src/SLICOT-Reference/src/MB04RT.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04RT.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RT.f.i +.PHONY : src/SLICOT-Reference/src/MB04RT.f.i + +src/SLICOT-Reference/src/MB04RT.s: src/SLICOT-Reference/src/MB04RT.f.s +.PHONY : src/SLICOT-Reference/src/MB04RT.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04RT.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RT.f.s +.PHONY : src/SLICOT-Reference/src/MB04RT.f.s + +src/SLICOT-Reference/src/MB04RU.o: src/SLICOT-Reference/src/MB04RU.f.o +.PHONY : src/SLICOT-Reference/src/MB04RU.o + +# target to build an object file +src/SLICOT-Reference/src/MB04RU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RU.f.o +.PHONY : src/SLICOT-Reference/src/MB04RU.f.o + +src/SLICOT-Reference/src/MB04RU.i: src/SLICOT-Reference/src/MB04RU.f.i +.PHONY : src/SLICOT-Reference/src/MB04RU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04RU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RU.f.i +.PHONY : src/SLICOT-Reference/src/MB04RU.f.i + +src/SLICOT-Reference/src/MB04RU.s: src/SLICOT-Reference/src/MB04RU.f.s +.PHONY : src/SLICOT-Reference/src/MB04RU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04RU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RU.f.s +.PHONY : src/SLICOT-Reference/src/MB04RU.f.s + +src/SLICOT-Reference/src/MB04RV.o: src/SLICOT-Reference/src/MB04RV.f.o +.PHONY : src/SLICOT-Reference/src/MB04RV.o + +# target to build an object file +src/SLICOT-Reference/src/MB04RV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RV.f.o +.PHONY : src/SLICOT-Reference/src/MB04RV.f.o + +src/SLICOT-Reference/src/MB04RV.i: src/SLICOT-Reference/src/MB04RV.f.i +.PHONY : src/SLICOT-Reference/src/MB04RV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04RV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RV.f.i +.PHONY : src/SLICOT-Reference/src/MB04RV.f.i + +src/SLICOT-Reference/src/MB04RV.s: src/SLICOT-Reference/src/MB04RV.f.s +.PHONY : src/SLICOT-Reference/src/MB04RV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04RV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RV.f.s +.PHONY : src/SLICOT-Reference/src/MB04RV.f.s + +src/SLICOT-Reference/src/MB04RW.o: src/SLICOT-Reference/src/MB04RW.f.o +.PHONY : src/SLICOT-Reference/src/MB04RW.o + +# target to build an object file +src/SLICOT-Reference/src/MB04RW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RW.f.o +.PHONY : src/SLICOT-Reference/src/MB04RW.f.o + +src/SLICOT-Reference/src/MB04RW.i: src/SLICOT-Reference/src/MB04RW.f.i +.PHONY : src/SLICOT-Reference/src/MB04RW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04RW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RW.f.i +.PHONY : src/SLICOT-Reference/src/MB04RW.f.i + +src/SLICOT-Reference/src/MB04RW.s: src/SLICOT-Reference/src/MB04RW.f.s +.PHONY : src/SLICOT-Reference/src/MB04RW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04RW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RW.f.s +.PHONY : src/SLICOT-Reference/src/MB04RW.f.s + +src/SLICOT-Reference/src/MB04RZ.o: src/SLICOT-Reference/src/MB04RZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04RZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB04RZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RZ.f.o +.PHONY : src/SLICOT-Reference/src/MB04RZ.f.o + +src/SLICOT-Reference/src/MB04RZ.i: src/SLICOT-Reference/src/MB04RZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04RZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04RZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RZ.f.i +.PHONY : src/SLICOT-Reference/src/MB04RZ.f.i + +src/SLICOT-Reference/src/MB04RZ.s: src/SLICOT-Reference/src/MB04RZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04RZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04RZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RZ.f.s +.PHONY : src/SLICOT-Reference/src/MB04RZ.f.s + +src/SLICOT-Reference/src/MB04SU.o: src/SLICOT-Reference/src/MB04SU.f.o +.PHONY : src/SLICOT-Reference/src/MB04SU.o + +# target to build an object file +src/SLICOT-Reference/src/MB04SU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04SU.f.o +.PHONY : src/SLICOT-Reference/src/MB04SU.f.o + +src/SLICOT-Reference/src/MB04SU.i: src/SLICOT-Reference/src/MB04SU.f.i +.PHONY : src/SLICOT-Reference/src/MB04SU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04SU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04SU.f.i +.PHONY : src/SLICOT-Reference/src/MB04SU.f.i + +src/SLICOT-Reference/src/MB04SU.s: src/SLICOT-Reference/src/MB04SU.f.s +.PHONY : src/SLICOT-Reference/src/MB04SU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04SU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04SU.f.s +.PHONY : src/SLICOT-Reference/src/MB04SU.f.s + +src/SLICOT-Reference/src/MB04TB.o: src/SLICOT-Reference/src/MB04TB.f.o +.PHONY : src/SLICOT-Reference/src/MB04TB.o + +# target to build an object file +src/SLICOT-Reference/src/MB04TB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TB.f.o +.PHONY : src/SLICOT-Reference/src/MB04TB.f.o + +src/SLICOT-Reference/src/MB04TB.i: src/SLICOT-Reference/src/MB04TB.f.i +.PHONY : src/SLICOT-Reference/src/MB04TB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04TB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TB.f.i +.PHONY : src/SLICOT-Reference/src/MB04TB.f.i + +src/SLICOT-Reference/src/MB04TB.s: src/SLICOT-Reference/src/MB04TB.f.s +.PHONY : src/SLICOT-Reference/src/MB04TB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04TB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TB.f.s +.PHONY : src/SLICOT-Reference/src/MB04TB.f.s + +src/SLICOT-Reference/src/MB04TS.o: src/SLICOT-Reference/src/MB04TS.f.o +.PHONY : src/SLICOT-Reference/src/MB04TS.o + +# target to build an object file +src/SLICOT-Reference/src/MB04TS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TS.f.o +.PHONY : src/SLICOT-Reference/src/MB04TS.f.o + +src/SLICOT-Reference/src/MB04TS.i: src/SLICOT-Reference/src/MB04TS.f.i +.PHONY : src/SLICOT-Reference/src/MB04TS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04TS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TS.f.i +.PHONY : src/SLICOT-Reference/src/MB04TS.f.i + +src/SLICOT-Reference/src/MB04TS.s: src/SLICOT-Reference/src/MB04TS.f.s +.PHONY : src/SLICOT-Reference/src/MB04TS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04TS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TS.f.s +.PHONY : src/SLICOT-Reference/src/MB04TS.f.s + +src/SLICOT-Reference/src/MB04TT.o: src/SLICOT-Reference/src/MB04TT.f.o +.PHONY : src/SLICOT-Reference/src/MB04TT.o + +# target to build an object file +src/SLICOT-Reference/src/MB04TT.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TT.f.o +.PHONY : src/SLICOT-Reference/src/MB04TT.f.o + +src/SLICOT-Reference/src/MB04TT.i: src/SLICOT-Reference/src/MB04TT.f.i +.PHONY : src/SLICOT-Reference/src/MB04TT.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04TT.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TT.f.i +.PHONY : src/SLICOT-Reference/src/MB04TT.f.i + +src/SLICOT-Reference/src/MB04TT.s: src/SLICOT-Reference/src/MB04TT.f.s +.PHONY : src/SLICOT-Reference/src/MB04TT.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04TT.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TT.f.s +.PHONY : src/SLICOT-Reference/src/MB04TT.f.s + +src/SLICOT-Reference/src/MB04TU.o: src/SLICOT-Reference/src/MB04TU.f.o +.PHONY : src/SLICOT-Reference/src/MB04TU.o + +# target to build an object file +src/SLICOT-Reference/src/MB04TU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TU.f.o +.PHONY : src/SLICOT-Reference/src/MB04TU.f.o + +src/SLICOT-Reference/src/MB04TU.i: src/SLICOT-Reference/src/MB04TU.f.i +.PHONY : src/SLICOT-Reference/src/MB04TU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04TU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TU.f.i +.PHONY : src/SLICOT-Reference/src/MB04TU.f.i + +src/SLICOT-Reference/src/MB04TU.s: src/SLICOT-Reference/src/MB04TU.f.s +.PHONY : src/SLICOT-Reference/src/MB04TU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04TU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TU.f.s +.PHONY : src/SLICOT-Reference/src/MB04TU.f.s + +src/SLICOT-Reference/src/MB04TV.o: src/SLICOT-Reference/src/MB04TV.f.o +.PHONY : src/SLICOT-Reference/src/MB04TV.o + +# target to build an object file +src/SLICOT-Reference/src/MB04TV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TV.f.o +.PHONY : src/SLICOT-Reference/src/MB04TV.f.o + +src/SLICOT-Reference/src/MB04TV.i: src/SLICOT-Reference/src/MB04TV.f.i +.PHONY : src/SLICOT-Reference/src/MB04TV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04TV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TV.f.i +.PHONY : src/SLICOT-Reference/src/MB04TV.f.i + +src/SLICOT-Reference/src/MB04TV.s: src/SLICOT-Reference/src/MB04TV.f.s +.PHONY : src/SLICOT-Reference/src/MB04TV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04TV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TV.f.s +.PHONY : src/SLICOT-Reference/src/MB04TV.f.s + +src/SLICOT-Reference/src/MB04TW.o: src/SLICOT-Reference/src/MB04TW.f.o +.PHONY : src/SLICOT-Reference/src/MB04TW.o + +# target to build an object file +src/SLICOT-Reference/src/MB04TW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TW.f.o +.PHONY : src/SLICOT-Reference/src/MB04TW.f.o + +src/SLICOT-Reference/src/MB04TW.i: src/SLICOT-Reference/src/MB04TW.f.i +.PHONY : src/SLICOT-Reference/src/MB04TW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04TW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TW.f.i +.PHONY : src/SLICOT-Reference/src/MB04TW.f.i + +src/SLICOT-Reference/src/MB04TW.s: src/SLICOT-Reference/src/MB04TW.f.s +.PHONY : src/SLICOT-Reference/src/MB04TW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04TW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TW.f.s +.PHONY : src/SLICOT-Reference/src/MB04TW.f.s + +src/SLICOT-Reference/src/MB04TX.o: src/SLICOT-Reference/src/MB04TX.f.o +.PHONY : src/SLICOT-Reference/src/MB04TX.o + +# target to build an object file +src/SLICOT-Reference/src/MB04TX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TX.f.o +.PHONY : src/SLICOT-Reference/src/MB04TX.f.o + +src/SLICOT-Reference/src/MB04TX.i: src/SLICOT-Reference/src/MB04TX.f.i +.PHONY : src/SLICOT-Reference/src/MB04TX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04TX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TX.f.i +.PHONY : src/SLICOT-Reference/src/MB04TX.f.i + +src/SLICOT-Reference/src/MB04TX.s: src/SLICOT-Reference/src/MB04TX.f.s +.PHONY : src/SLICOT-Reference/src/MB04TX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04TX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TX.f.s +.PHONY : src/SLICOT-Reference/src/MB04TX.f.s + +src/SLICOT-Reference/src/MB04TY.o: src/SLICOT-Reference/src/MB04TY.f.o +.PHONY : src/SLICOT-Reference/src/MB04TY.o + +# target to build an object file +src/SLICOT-Reference/src/MB04TY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TY.f.o +.PHONY : src/SLICOT-Reference/src/MB04TY.f.o + +src/SLICOT-Reference/src/MB04TY.i: src/SLICOT-Reference/src/MB04TY.f.i +.PHONY : src/SLICOT-Reference/src/MB04TY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04TY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TY.f.i +.PHONY : src/SLICOT-Reference/src/MB04TY.f.i + +src/SLICOT-Reference/src/MB04TY.s: src/SLICOT-Reference/src/MB04TY.f.s +.PHONY : src/SLICOT-Reference/src/MB04TY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04TY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TY.f.s +.PHONY : src/SLICOT-Reference/src/MB04TY.f.s + +src/SLICOT-Reference/src/MB04UD.o: src/SLICOT-Reference/src/MB04UD.f.o +.PHONY : src/SLICOT-Reference/src/MB04UD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04UD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04UD.f.o +.PHONY : src/SLICOT-Reference/src/MB04UD.f.o + +src/SLICOT-Reference/src/MB04UD.i: src/SLICOT-Reference/src/MB04UD.f.i +.PHONY : src/SLICOT-Reference/src/MB04UD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04UD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04UD.f.i +.PHONY : src/SLICOT-Reference/src/MB04UD.f.i + +src/SLICOT-Reference/src/MB04UD.s: src/SLICOT-Reference/src/MB04UD.f.s +.PHONY : src/SLICOT-Reference/src/MB04UD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04UD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04UD.f.s +.PHONY : src/SLICOT-Reference/src/MB04UD.f.s + +src/SLICOT-Reference/src/MB04VD.o: src/SLICOT-Reference/src/MB04VD.f.o +.PHONY : src/SLICOT-Reference/src/MB04VD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04VD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04VD.f.o +.PHONY : src/SLICOT-Reference/src/MB04VD.f.o + +src/SLICOT-Reference/src/MB04VD.i: src/SLICOT-Reference/src/MB04VD.f.i +.PHONY : src/SLICOT-Reference/src/MB04VD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04VD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04VD.f.i +.PHONY : src/SLICOT-Reference/src/MB04VD.f.i + +src/SLICOT-Reference/src/MB04VD.s: src/SLICOT-Reference/src/MB04VD.f.s +.PHONY : src/SLICOT-Reference/src/MB04VD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04VD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04VD.f.s +.PHONY : src/SLICOT-Reference/src/MB04VD.f.s + +src/SLICOT-Reference/src/MB04VX.o: src/SLICOT-Reference/src/MB04VX.f.o +.PHONY : src/SLICOT-Reference/src/MB04VX.o + +# target to build an object file +src/SLICOT-Reference/src/MB04VX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04VX.f.o +.PHONY : src/SLICOT-Reference/src/MB04VX.f.o + +src/SLICOT-Reference/src/MB04VX.i: src/SLICOT-Reference/src/MB04VX.f.i +.PHONY : src/SLICOT-Reference/src/MB04VX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04VX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04VX.f.i +.PHONY : src/SLICOT-Reference/src/MB04VX.f.i + +src/SLICOT-Reference/src/MB04VX.s: src/SLICOT-Reference/src/MB04VX.f.s +.PHONY : src/SLICOT-Reference/src/MB04VX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04VX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04VX.f.s +.PHONY : src/SLICOT-Reference/src/MB04VX.f.s + +src/SLICOT-Reference/src/MB04WD.o: src/SLICOT-Reference/src/MB04WD.f.o +.PHONY : src/SLICOT-Reference/src/MB04WD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04WD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WD.f.o +.PHONY : src/SLICOT-Reference/src/MB04WD.f.o + +src/SLICOT-Reference/src/MB04WD.i: src/SLICOT-Reference/src/MB04WD.f.i +.PHONY : src/SLICOT-Reference/src/MB04WD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04WD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WD.f.i +.PHONY : src/SLICOT-Reference/src/MB04WD.f.i + +src/SLICOT-Reference/src/MB04WD.s: src/SLICOT-Reference/src/MB04WD.f.s +.PHONY : src/SLICOT-Reference/src/MB04WD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04WD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WD.f.s +.PHONY : src/SLICOT-Reference/src/MB04WD.f.s + +src/SLICOT-Reference/src/MB04WP.o: src/SLICOT-Reference/src/MB04WP.f.o +.PHONY : src/SLICOT-Reference/src/MB04WP.o + +# target to build an object file +src/SLICOT-Reference/src/MB04WP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WP.f.o +.PHONY : src/SLICOT-Reference/src/MB04WP.f.o + +src/SLICOT-Reference/src/MB04WP.i: src/SLICOT-Reference/src/MB04WP.f.i +.PHONY : src/SLICOT-Reference/src/MB04WP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04WP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WP.f.i +.PHONY : src/SLICOT-Reference/src/MB04WP.f.i + +src/SLICOT-Reference/src/MB04WP.s: src/SLICOT-Reference/src/MB04WP.f.s +.PHONY : src/SLICOT-Reference/src/MB04WP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04WP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WP.f.s +.PHONY : src/SLICOT-Reference/src/MB04WP.f.s + +src/SLICOT-Reference/src/MB04WR.o: src/SLICOT-Reference/src/MB04WR.f.o +.PHONY : src/SLICOT-Reference/src/MB04WR.o + +# target to build an object file +src/SLICOT-Reference/src/MB04WR.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WR.f.o +.PHONY : src/SLICOT-Reference/src/MB04WR.f.o + +src/SLICOT-Reference/src/MB04WR.i: src/SLICOT-Reference/src/MB04WR.f.i +.PHONY : src/SLICOT-Reference/src/MB04WR.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04WR.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WR.f.i +.PHONY : src/SLICOT-Reference/src/MB04WR.f.i + +src/SLICOT-Reference/src/MB04WR.s: src/SLICOT-Reference/src/MB04WR.f.s +.PHONY : src/SLICOT-Reference/src/MB04WR.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04WR.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WR.f.s +.PHONY : src/SLICOT-Reference/src/MB04WR.f.s + +src/SLICOT-Reference/src/MB04WU.o: src/SLICOT-Reference/src/MB04WU.f.o +.PHONY : src/SLICOT-Reference/src/MB04WU.o + +# target to build an object file +src/SLICOT-Reference/src/MB04WU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WU.f.o +.PHONY : src/SLICOT-Reference/src/MB04WU.f.o + +src/SLICOT-Reference/src/MB04WU.i: src/SLICOT-Reference/src/MB04WU.f.i +.PHONY : src/SLICOT-Reference/src/MB04WU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04WU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WU.f.i +.PHONY : src/SLICOT-Reference/src/MB04WU.f.i + +src/SLICOT-Reference/src/MB04WU.s: src/SLICOT-Reference/src/MB04WU.f.s +.PHONY : src/SLICOT-Reference/src/MB04WU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04WU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WU.f.s +.PHONY : src/SLICOT-Reference/src/MB04WU.f.s + +src/SLICOT-Reference/src/MB04XD.o: src/SLICOT-Reference/src/MB04XD.f.o +.PHONY : src/SLICOT-Reference/src/MB04XD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04XD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04XD.f.o +.PHONY : src/SLICOT-Reference/src/MB04XD.f.o + +src/SLICOT-Reference/src/MB04XD.i: src/SLICOT-Reference/src/MB04XD.f.i +.PHONY : src/SLICOT-Reference/src/MB04XD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04XD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04XD.f.i +.PHONY : src/SLICOT-Reference/src/MB04XD.f.i + +src/SLICOT-Reference/src/MB04XD.s: src/SLICOT-Reference/src/MB04XD.f.s +.PHONY : src/SLICOT-Reference/src/MB04XD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04XD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04XD.f.s +.PHONY : src/SLICOT-Reference/src/MB04XD.f.s + +src/SLICOT-Reference/src/MB04XY.o: src/SLICOT-Reference/src/MB04XY.f.o +.PHONY : src/SLICOT-Reference/src/MB04XY.o + +# target to build an object file +src/SLICOT-Reference/src/MB04XY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04XY.f.o +.PHONY : src/SLICOT-Reference/src/MB04XY.f.o + +src/SLICOT-Reference/src/MB04XY.i: src/SLICOT-Reference/src/MB04XY.f.i +.PHONY : src/SLICOT-Reference/src/MB04XY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04XY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04XY.f.i +.PHONY : src/SLICOT-Reference/src/MB04XY.f.i + +src/SLICOT-Reference/src/MB04XY.s: src/SLICOT-Reference/src/MB04XY.f.s +.PHONY : src/SLICOT-Reference/src/MB04XY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04XY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04XY.f.s +.PHONY : src/SLICOT-Reference/src/MB04XY.f.s + +src/SLICOT-Reference/src/MB04YD.o: src/SLICOT-Reference/src/MB04YD.f.o +.PHONY : src/SLICOT-Reference/src/MB04YD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04YD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04YD.f.o +.PHONY : src/SLICOT-Reference/src/MB04YD.f.o + +src/SLICOT-Reference/src/MB04YD.i: src/SLICOT-Reference/src/MB04YD.f.i +.PHONY : src/SLICOT-Reference/src/MB04YD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04YD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04YD.f.i +.PHONY : src/SLICOT-Reference/src/MB04YD.f.i + +src/SLICOT-Reference/src/MB04YD.s: src/SLICOT-Reference/src/MB04YD.f.s +.PHONY : src/SLICOT-Reference/src/MB04YD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04YD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04YD.f.s +.PHONY : src/SLICOT-Reference/src/MB04YD.f.s + +src/SLICOT-Reference/src/MB04YW.o: src/SLICOT-Reference/src/MB04YW.f.o +.PHONY : src/SLICOT-Reference/src/MB04YW.o + +# target to build an object file +src/SLICOT-Reference/src/MB04YW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04YW.f.o +.PHONY : src/SLICOT-Reference/src/MB04YW.f.o + +src/SLICOT-Reference/src/MB04YW.i: src/SLICOT-Reference/src/MB04YW.f.i +.PHONY : src/SLICOT-Reference/src/MB04YW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04YW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04YW.f.i +.PHONY : src/SLICOT-Reference/src/MB04YW.f.i + +src/SLICOT-Reference/src/MB04YW.s: src/SLICOT-Reference/src/MB04YW.f.s +.PHONY : src/SLICOT-Reference/src/MB04YW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04YW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04YW.f.s +.PHONY : src/SLICOT-Reference/src/MB04YW.f.s + +src/SLICOT-Reference/src/MB04ZD.o: src/SLICOT-Reference/src/MB04ZD.f.o +.PHONY : src/SLICOT-Reference/src/MB04ZD.o + +# target to build an object file +src/SLICOT-Reference/src/MB04ZD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ZD.f.o +.PHONY : src/SLICOT-Reference/src/MB04ZD.f.o + +src/SLICOT-Reference/src/MB04ZD.i: src/SLICOT-Reference/src/MB04ZD.f.i +.PHONY : src/SLICOT-Reference/src/MB04ZD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB04ZD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ZD.f.i +.PHONY : src/SLICOT-Reference/src/MB04ZD.f.i + +src/SLICOT-Reference/src/MB04ZD.s: src/SLICOT-Reference/src/MB04ZD.f.s +.PHONY : src/SLICOT-Reference/src/MB04ZD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB04ZD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ZD.f.s +.PHONY : src/SLICOT-Reference/src/MB04ZD.f.s + +src/SLICOT-Reference/src/MB05MD.o: src/SLICOT-Reference/src/MB05MD.f.o +.PHONY : src/SLICOT-Reference/src/MB05MD.o + +# target to build an object file +src/SLICOT-Reference/src/MB05MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05MD.f.o +.PHONY : src/SLICOT-Reference/src/MB05MD.f.o + +src/SLICOT-Reference/src/MB05MD.i: src/SLICOT-Reference/src/MB05MD.f.i +.PHONY : src/SLICOT-Reference/src/MB05MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB05MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05MD.f.i +.PHONY : src/SLICOT-Reference/src/MB05MD.f.i + +src/SLICOT-Reference/src/MB05MD.s: src/SLICOT-Reference/src/MB05MD.f.s +.PHONY : src/SLICOT-Reference/src/MB05MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB05MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05MD.f.s +.PHONY : src/SLICOT-Reference/src/MB05MD.f.s + +src/SLICOT-Reference/src/MB05MY.o: src/SLICOT-Reference/src/MB05MY.f.o +.PHONY : src/SLICOT-Reference/src/MB05MY.o + +# target to build an object file +src/SLICOT-Reference/src/MB05MY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05MY.f.o +.PHONY : src/SLICOT-Reference/src/MB05MY.f.o + +src/SLICOT-Reference/src/MB05MY.i: src/SLICOT-Reference/src/MB05MY.f.i +.PHONY : src/SLICOT-Reference/src/MB05MY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB05MY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05MY.f.i +.PHONY : src/SLICOT-Reference/src/MB05MY.f.i + +src/SLICOT-Reference/src/MB05MY.s: src/SLICOT-Reference/src/MB05MY.f.s +.PHONY : src/SLICOT-Reference/src/MB05MY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB05MY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05MY.f.s +.PHONY : src/SLICOT-Reference/src/MB05MY.f.s + +src/SLICOT-Reference/src/MB05ND.o: src/SLICOT-Reference/src/MB05ND.f.o +.PHONY : src/SLICOT-Reference/src/MB05ND.o + +# target to build an object file +src/SLICOT-Reference/src/MB05ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05ND.f.o +.PHONY : src/SLICOT-Reference/src/MB05ND.f.o + +src/SLICOT-Reference/src/MB05ND.i: src/SLICOT-Reference/src/MB05ND.f.i +.PHONY : src/SLICOT-Reference/src/MB05ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB05ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05ND.f.i +.PHONY : src/SLICOT-Reference/src/MB05ND.f.i + +src/SLICOT-Reference/src/MB05ND.s: src/SLICOT-Reference/src/MB05ND.f.s +.PHONY : src/SLICOT-Reference/src/MB05ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB05ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05ND.f.s +.PHONY : src/SLICOT-Reference/src/MB05ND.f.s + +src/SLICOT-Reference/src/MB05OD.o: src/SLICOT-Reference/src/MB05OD.f.o +.PHONY : src/SLICOT-Reference/src/MB05OD.o + +# target to build an object file +src/SLICOT-Reference/src/MB05OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05OD.f.o +.PHONY : src/SLICOT-Reference/src/MB05OD.f.o + +src/SLICOT-Reference/src/MB05OD.i: src/SLICOT-Reference/src/MB05OD.f.i +.PHONY : src/SLICOT-Reference/src/MB05OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB05OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05OD.f.i +.PHONY : src/SLICOT-Reference/src/MB05OD.f.i + +src/SLICOT-Reference/src/MB05OD.s: src/SLICOT-Reference/src/MB05OD.f.s +.PHONY : src/SLICOT-Reference/src/MB05OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB05OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05OD.f.s +.PHONY : src/SLICOT-Reference/src/MB05OD.f.s + +src/SLICOT-Reference/src/MB05OY.o: src/SLICOT-Reference/src/MB05OY.f.o +.PHONY : src/SLICOT-Reference/src/MB05OY.o + +# target to build an object file +src/SLICOT-Reference/src/MB05OY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05OY.f.o +.PHONY : src/SLICOT-Reference/src/MB05OY.f.o + +src/SLICOT-Reference/src/MB05OY.i: src/SLICOT-Reference/src/MB05OY.f.i +.PHONY : src/SLICOT-Reference/src/MB05OY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB05OY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05OY.f.i +.PHONY : src/SLICOT-Reference/src/MB05OY.f.i + +src/SLICOT-Reference/src/MB05OY.s: src/SLICOT-Reference/src/MB05OY.f.s +.PHONY : src/SLICOT-Reference/src/MB05OY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB05OY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05OY.f.s +.PHONY : src/SLICOT-Reference/src/MB05OY.f.s + +src/SLICOT-Reference/src/MB3JZP.o: src/SLICOT-Reference/src/MB3JZP.f.o +.PHONY : src/SLICOT-Reference/src/MB3JZP.o + +# target to build an object file +src/SLICOT-Reference/src/MB3JZP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3JZP.f.o +.PHONY : src/SLICOT-Reference/src/MB3JZP.f.o + +src/SLICOT-Reference/src/MB3JZP.i: src/SLICOT-Reference/src/MB3JZP.f.i +.PHONY : src/SLICOT-Reference/src/MB3JZP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB3JZP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3JZP.f.i +.PHONY : src/SLICOT-Reference/src/MB3JZP.f.i + +src/SLICOT-Reference/src/MB3JZP.s: src/SLICOT-Reference/src/MB3JZP.f.s +.PHONY : src/SLICOT-Reference/src/MB3JZP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB3JZP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3JZP.f.s +.PHONY : src/SLICOT-Reference/src/MB3JZP.f.s + +src/SLICOT-Reference/src/MB3LZP.o: src/SLICOT-Reference/src/MB3LZP.f.o +.PHONY : src/SLICOT-Reference/src/MB3LZP.o + +# target to build an object file +src/SLICOT-Reference/src/MB3LZP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3LZP.f.o +.PHONY : src/SLICOT-Reference/src/MB3LZP.f.o + +src/SLICOT-Reference/src/MB3LZP.i: src/SLICOT-Reference/src/MB3LZP.f.i +.PHONY : src/SLICOT-Reference/src/MB3LZP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB3LZP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3LZP.f.i +.PHONY : src/SLICOT-Reference/src/MB3LZP.f.i + +src/SLICOT-Reference/src/MB3LZP.s: src/SLICOT-Reference/src/MB3LZP.f.s +.PHONY : src/SLICOT-Reference/src/MB3LZP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB3LZP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3LZP.f.s +.PHONY : src/SLICOT-Reference/src/MB3LZP.f.s + +src/SLICOT-Reference/src/MB3OYZ.o: src/SLICOT-Reference/src/MB3OYZ.f.o +.PHONY : src/SLICOT-Reference/src/MB3OYZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB3OYZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3OYZ.f.o +.PHONY : src/SLICOT-Reference/src/MB3OYZ.f.o + +src/SLICOT-Reference/src/MB3OYZ.i: src/SLICOT-Reference/src/MB3OYZ.f.i +.PHONY : src/SLICOT-Reference/src/MB3OYZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB3OYZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3OYZ.f.i +.PHONY : src/SLICOT-Reference/src/MB3OYZ.f.i + +src/SLICOT-Reference/src/MB3OYZ.s: src/SLICOT-Reference/src/MB3OYZ.f.s +.PHONY : src/SLICOT-Reference/src/MB3OYZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB3OYZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3OYZ.f.s +.PHONY : src/SLICOT-Reference/src/MB3OYZ.f.s + +src/SLICOT-Reference/src/MB3PYZ.o: src/SLICOT-Reference/src/MB3PYZ.f.o +.PHONY : src/SLICOT-Reference/src/MB3PYZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB3PYZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3PYZ.f.o +.PHONY : src/SLICOT-Reference/src/MB3PYZ.f.o + +src/SLICOT-Reference/src/MB3PYZ.i: src/SLICOT-Reference/src/MB3PYZ.f.i +.PHONY : src/SLICOT-Reference/src/MB3PYZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB3PYZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3PYZ.f.i +.PHONY : src/SLICOT-Reference/src/MB3PYZ.f.i + +src/SLICOT-Reference/src/MB3PYZ.s: src/SLICOT-Reference/src/MB3PYZ.f.s +.PHONY : src/SLICOT-Reference/src/MB3PYZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB3PYZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3PYZ.f.s +.PHONY : src/SLICOT-Reference/src/MB3PYZ.f.s + +src/SLICOT-Reference/src/MB4DBZ.o: src/SLICOT-Reference/src/MB4DBZ.f.o +.PHONY : src/SLICOT-Reference/src/MB4DBZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB4DBZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DBZ.f.o +.PHONY : src/SLICOT-Reference/src/MB4DBZ.f.o + +src/SLICOT-Reference/src/MB4DBZ.i: src/SLICOT-Reference/src/MB4DBZ.f.i +.PHONY : src/SLICOT-Reference/src/MB4DBZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB4DBZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DBZ.f.i +.PHONY : src/SLICOT-Reference/src/MB4DBZ.f.i + +src/SLICOT-Reference/src/MB4DBZ.s: src/SLICOT-Reference/src/MB4DBZ.f.s +.PHONY : src/SLICOT-Reference/src/MB4DBZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB4DBZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DBZ.f.s +.PHONY : src/SLICOT-Reference/src/MB4DBZ.f.s + +src/SLICOT-Reference/src/MB4DLZ.o: src/SLICOT-Reference/src/MB4DLZ.f.o +.PHONY : src/SLICOT-Reference/src/MB4DLZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB4DLZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DLZ.f.o +.PHONY : src/SLICOT-Reference/src/MB4DLZ.f.o + +src/SLICOT-Reference/src/MB4DLZ.i: src/SLICOT-Reference/src/MB4DLZ.f.i +.PHONY : src/SLICOT-Reference/src/MB4DLZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB4DLZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DLZ.f.i +.PHONY : src/SLICOT-Reference/src/MB4DLZ.f.i + +src/SLICOT-Reference/src/MB4DLZ.s: src/SLICOT-Reference/src/MB4DLZ.f.s +.PHONY : src/SLICOT-Reference/src/MB4DLZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB4DLZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DLZ.f.s +.PHONY : src/SLICOT-Reference/src/MB4DLZ.f.s + +src/SLICOT-Reference/src/MB4DPZ.o: src/SLICOT-Reference/src/MB4DPZ.f.o +.PHONY : src/SLICOT-Reference/src/MB4DPZ.o + +# target to build an object file +src/SLICOT-Reference/src/MB4DPZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DPZ.f.o +.PHONY : src/SLICOT-Reference/src/MB4DPZ.f.o + +src/SLICOT-Reference/src/MB4DPZ.i: src/SLICOT-Reference/src/MB4DPZ.f.i +.PHONY : src/SLICOT-Reference/src/MB4DPZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MB4DPZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DPZ.f.i +.PHONY : src/SLICOT-Reference/src/MB4DPZ.f.i + +src/SLICOT-Reference/src/MB4DPZ.s: src/SLICOT-Reference/src/MB4DPZ.f.s +.PHONY : src/SLICOT-Reference/src/MB4DPZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MB4DPZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DPZ.f.s +.PHONY : src/SLICOT-Reference/src/MB4DPZ.f.s + +src/SLICOT-Reference/src/MC01MD.o: src/SLICOT-Reference/src/MC01MD.f.o +.PHONY : src/SLICOT-Reference/src/MC01MD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01MD.f.o +.PHONY : src/SLICOT-Reference/src/MC01MD.f.o + +src/SLICOT-Reference/src/MC01MD.i: src/SLICOT-Reference/src/MC01MD.f.i +.PHONY : src/SLICOT-Reference/src/MC01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01MD.f.i +.PHONY : src/SLICOT-Reference/src/MC01MD.f.i + +src/SLICOT-Reference/src/MC01MD.s: src/SLICOT-Reference/src/MC01MD.f.s +.PHONY : src/SLICOT-Reference/src/MC01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01MD.f.s +.PHONY : src/SLICOT-Reference/src/MC01MD.f.s + +src/SLICOT-Reference/src/MC01ND.o: src/SLICOT-Reference/src/MC01ND.f.o +.PHONY : src/SLICOT-Reference/src/MC01ND.o + +# target to build an object file +src/SLICOT-Reference/src/MC01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01ND.f.o +.PHONY : src/SLICOT-Reference/src/MC01ND.f.o + +src/SLICOT-Reference/src/MC01ND.i: src/SLICOT-Reference/src/MC01ND.f.i +.PHONY : src/SLICOT-Reference/src/MC01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01ND.f.i +.PHONY : src/SLICOT-Reference/src/MC01ND.f.i + +src/SLICOT-Reference/src/MC01ND.s: src/SLICOT-Reference/src/MC01ND.f.s +.PHONY : src/SLICOT-Reference/src/MC01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01ND.f.s +.PHONY : src/SLICOT-Reference/src/MC01ND.f.s + +src/SLICOT-Reference/src/MC01OD.o: src/SLICOT-Reference/src/MC01OD.f.o +.PHONY : src/SLICOT-Reference/src/MC01OD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01OD.f.o +.PHONY : src/SLICOT-Reference/src/MC01OD.f.o + +src/SLICOT-Reference/src/MC01OD.i: src/SLICOT-Reference/src/MC01OD.f.i +.PHONY : src/SLICOT-Reference/src/MC01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01OD.f.i +.PHONY : src/SLICOT-Reference/src/MC01OD.f.i + +src/SLICOT-Reference/src/MC01OD.s: src/SLICOT-Reference/src/MC01OD.f.s +.PHONY : src/SLICOT-Reference/src/MC01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01OD.f.s +.PHONY : src/SLICOT-Reference/src/MC01OD.f.s + +src/SLICOT-Reference/src/MC01PD.o: src/SLICOT-Reference/src/MC01PD.f.o +.PHONY : src/SLICOT-Reference/src/MC01PD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01PD.f.o +.PHONY : src/SLICOT-Reference/src/MC01PD.f.o + +src/SLICOT-Reference/src/MC01PD.i: src/SLICOT-Reference/src/MC01PD.f.i +.PHONY : src/SLICOT-Reference/src/MC01PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01PD.f.i +.PHONY : src/SLICOT-Reference/src/MC01PD.f.i + +src/SLICOT-Reference/src/MC01PD.s: src/SLICOT-Reference/src/MC01PD.f.s +.PHONY : src/SLICOT-Reference/src/MC01PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01PD.f.s +.PHONY : src/SLICOT-Reference/src/MC01PD.f.s + +src/SLICOT-Reference/src/MC01PY.o: src/SLICOT-Reference/src/MC01PY.f.o +.PHONY : src/SLICOT-Reference/src/MC01PY.o + +# target to build an object file +src/SLICOT-Reference/src/MC01PY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01PY.f.o +.PHONY : src/SLICOT-Reference/src/MC01PY.f.o + +src/SLICOT-Reference/src/MC01PY.i: src/SLICOT-Reference/src/MC01PY.f.i +.PHONY : src/SLICOT-Reference/src/MC01PY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01PY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01PY.f.i +.PHONY : src/SLICOT-Reference/src/MC01PY.f.i + +src/SLICOT-Reference/src/MC01PY.s: src/SLICOT-Reference/src/MC01PY.f.s +.PHONY : src/SLICOT-Reference/src/MC01PY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01PY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01PY.f.s +.PHONY : src/SLICOT-Reference/src/MC01PY.f.s + +src/SLICOT-Reference/src/MC01QD.o: src/SLICOT-Reference/src/MC01QD.f.o +.PHONY : src/SLICOT-Reference/src/MC01QD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01QD.f.o +.PHONY : src/SLICOT-Reference/src/MC01QD.f.o + +src/SLICOT-Reference/src/MC01QD.i: src/SLICOT-Reference/src/MC01QD.f.i +.PHONY : src/SLICOT-Reference/src/MC01QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01QD.f.i +.PHONY : src/SLICOT-Reference/src/MC01QD.f.i + +src/SLICOT-Reference/src/MC01QD.s: src/SLICOT-Reference/src/MC01QD.f.s +.PHONY : src/SLICOT-Reference/src/MC01QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01QD.f.s +.PHONY : src/SLICOT-Reference/src/MC01QD.f.s + +src/SLICOT-Reference/src/MC01RD.o: src/SLICOT-Reference/src/MC01RD.f.o +.PHONY : src/SLICOT-Reference/src/MC01RD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01RD.f.o +.PHONY : src/SLICOT-Reference/src/MC01RD.f.o + +src/SLICOT-Reference/src/MC01RD.i: src/SLICOT-Reference/src/MC01RD.f.i +.PHONY : src/SLICOT-Reference/src/MC01RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01RD.f.i +.PHONY : src/SLICOT-Reference/src/MC01RD.f.i + +src/SLICOT-Reference/src/MC01RD.s: src/SLICOT-Reference/src/MC01RD.f.s +.PHONY : src/SLICOT-Reference/src/MC01RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01RD.f.s +.PHONY : src/SLICOT-Reference/src/MC01RD.f.s + +src/SLICOT-Reference/src/MC01SD.o: src/SLICOT-Reference/src/MC01SD.f.o +.PHONY : src/SLICOT-Reference/src/MC01SD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SD.f.o +.PHONY : src/SLICOT-Reference/src/MC01SD.f.o + +src/SLICOT-Reference/src/MC01SD.i: src/SLICOT-Reference/src/MC01SD.f.i +.PHONY : src/SLICOT-Reference/src/MC01SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SD.f.i +.PHONY : src/SLICOT-Reference/src/MC01SD.f.i + +src/SLICOT-Reference/src/MC01SD.s: src/SLICOT-Reference/src/MC01SD.f.s +.PHONY : src/SLICOT-Reference/src/MC01SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SD.f.s +.PHONY : src/SLICOT-Reference/src/MC01SD.f.s + +src/SLICOT-Reference/src/MC01SW.o: src/SLICOT-Reference/src/MC01SW.f.o +.PHONY : src/SLICOT-Reference/src/MC01SW.o + +# target to build an object file +src/SLICOT-Reference/src/MC01SW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SW.f.o +.PHONY : src/SLICOT-Reference/src/MC01SW.f.o + +src/SLICOT-Reference/src/MC01SW.i: src/SLICOT-Reference/src/MC01SW.f.i +.PHONY : src/SLICOT-Reference/src/MC01SW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01SW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SW.f.i +.PHONY : src/SLICOT-Reference/src/MC01SW.f.i + +src/SLICOT-Reference/src/MC01SW.s: src/SLICOT-Reference/src/MC01SW.f.s +.PHONY : src/SLICOT-Reference/src/MC01SW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01SW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SW.f.s +.PHONY : src/SLICOT-Reference/src/MC01SW.f.s + +src/SLICOT-Reference/src/MC01SX.o: src/SLICOT-Reference/src/MC01SX.f.o +.PHONY : src/SLICOT-Reference/src/MC01SX.o + +# target to build an object file +src/SLICOT-Reference/src/MC01SX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SX.f.o +.PHONY : src/SLICOT-Reference/src/MC01SX.f.o + +src/SLICOT-Reference/src/MC01SX.i: src/SLICOT-Reference/src/MC01SX.f.i +.PHONY : src/SLICOT-Reference/src/MC01SX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01SX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SX.f.i +.PHONY : src/SLICOT-Reference/src/MC01SX.f.i + +src/SLICOT-Reference/src/MC01SX.s: src/SLICOT-Reference/src/MC01SX.f.s +.PHONY : src/SLICOT-Reference/src/MC01SX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01SX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SX.f.s +.PHONY : src/SLICOT-Reference/src/MC01SX.f.s + +src/SLICOT-Reference/src/MC01SY.o: src/SLICOT-Reference/src/MC01SY.f.o +.PHONY : src/SLICOT-Reference/src/MC01SY.o + +# target to build an object file +src/SLICOT-Reference/src/MC01SY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SY.f.o +.PHONY : src/SLICOT-Reference/src/MC01SY.f.o + +src/SLICOT-Reference/src/MC01SY.i: src/SLICOT-Reference/src/MC01SY.f.i +.PHONY : src/SLICOT-Reference/src/MC01SY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01SY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SY.f.i +.PHONY : src/SLICOT-Reference/src/MC01SY.f.i + +src/SLICOT-Reference/src/MC01SY.s: src/SLICOT-Reference/src/MC01SY.f.s +.PHONY : src/SLICOT-Reference/src/MC01SY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01SY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SY.f.s +.PHONY : src/SLICOT-Reference/src/MC01SY.f.s + +src/SLICOT-Reference/src/MC01TD.o: src/SLICOT-Reference/src/MC01TD.f.o +.PHONY : src/SLICOT-Reference/src/MC01TD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01TD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01TD.f.o +.PHONY : src/SLICOT-Reference/src/MC01TD.f.o + +src/SLICOT-Reference/src/MC01TD.i: src/SLICOT-Reference/src/MC01TD.f.i +.PHONY : src/SLICOT-Reference/src/MC01TD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01TD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01TD.f.i +.PHONY : src/SLICOT-Reference/src/MC01TD.f.i + +src/SLICOT-Reference/src/MC01TD.s: src/SLICOT-Reference/src/MC01TD.f.s +.PHONY : src/SLICOT-Reference/src/MC01TD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01TD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01TD.f.s +.PHONY : src/SLICOT-Reference/src/MC01TD.f.s + +src/SLICOT-Reference/src/MC01VD.o: src/SLICOT-Reference/src/MC01VD.f.o +.PHONY : src/SLICOT-Reference/src/MC01VD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01VD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01VD.f.o +.PHONY : src/SLICOT-Reference/src/MC01VD.f.o + +src/SLICOT-Reference/src/MC01VD.i: src/SLICOT-Reference/src/MC01VD.f.i +.PHONY : src/SLICOT-Reference/src/MC01VD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01VD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01VD.f.i +.PHONY : src/SLICOT-Reference/src/MC01VD.f.i + +src/SLICOT-Reference/src/MC01VD.s: src/SLICOT-Reference/src/MC01VD.f.s +.PHONY : src/SLICOT-Reference/src/MC01VD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01VD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01VD.f.s +.PHONY : src/SLICOT-Reference/src/MC01VD.f.s + +src/SLICOT-Reference/src/MC01WD.o: src/SLICOT-Reference/src/MC01WD.f.o +.PHONY : src/SLICOT-Reference/src/MC01WD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01WD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01WD.f.o +.PHONY : src/SLICOT-Reference/src/MC01WD.f.o + +src/SLICOT-Reference/src/MC01WD.i: src/SLICOT-Reference/src/MC01WD.f.i +.PHONY : src/SLICOT-Reference/src/MC01WD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01WD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01WD.f.i +.PHONY : src/SLICOT-Reference/src/MC01WD.f.i + +src/SLICOT-Reference/src/MC01WD.s: src/SLICOT-Reference/src/MC01WD.f.s +.PHONY : src/SLICOT-Reference/src/MC01WD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01WD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01WD.f.s +.PHONY : src/SLICOT-Reference/src/MC01WD.f.s + +src/SLICOT-Reference/src/MC01XD.o: src/SLICOT-Reference/src/MC01XD.f.o +.PHONY : src/SLICOT-Reference/src/MC01XD.o + +# target to build an object file +src/SLICOT-Reference/src/MC01XD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01XD.f.o +.PHONY : src/SLICOT-Reference/src/MC01XD.f.o + +src/SLICOT-Reference/src/MC01XD.i: src/SLICOT-Reference/src/MC01XD.f.i +.PHONY : src/SLICOT-Reference/src/MC01XD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC01XD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01XD.f.i +.PHONY : src/SLICOT-Reference/src/MC01XD.f.i + +src/SLICOT-Reference/src/MC01XD.s: src/SLICOT-Reference/src/MC01XD.f.s +.PHONY : src/SLICOT-Reference/src/MC01XD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC01XD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01XD.f.s +.PHONY : src/SLICOT-Reference/src/MC01XD.f.s + +src/SLICOT-Reference/src/MC03MD.o: src/SLICOT-Reference/src/MC03MD.f.o +.PHONY : src/SLICOT-Reference/src/MC03MD.o + +# target to build an object file +src/SLICOT-Reference/src/MC03MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03MD.f.o +.PHONY : src/SLICOT-Reference/src/MC03MD.f.o + +src/SLICOT-Reference/src/MC03MD.i: src/SLICOT-Reference/src/MC03MD.f.i +.PHONY : src/SLICOT-Reference/src/MC03MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC03MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03MD.f.i +.PHONY : src/SLICOT-Reference/src/MC03MD.f.i + +src/SLICOT-Reference/src/MC03MD.s: src/SLICOT-Reference/src/MC03MD.f.s +.PHONY : src/SLICOT-Reference/src/MC03MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC03MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03MD.f.s +.PHONY : src/SLICOT-Reference/src/MC03MD.f.s + +src/SLICOT-Reference/src/MC03ND.o: src/SLICOT-Reference/src/MC03ND.f.o +.PHONY : src/SLICOT-Reference/src/MC03ND.o + +# target to build an object file +src/SLICOT-Reference/src/MC03ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03ND.f.o +.PHONY : src/SLICOT-Reference/src/MC03ND.f.o + +src/SLICOT-Reference/src/MC03ND.i: src/SLICOT-Reference/src/MC03ND.f.i +.PHONY : src/SLICOT-Reference/src/MC03ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC03ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03ND.f.i +.PHONY : src/SLICOT-Reference/src/MC03ND.f.i + +src/SLICOT-Reference/src/MC03ND.s: src/SLICOT-Reference/src/MC03ND.f.s +.PHONY : src/SLICOT-Reference/src/MC03ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC03ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03ND.f.s +.PHONY : src/SLICOT-Reference/src/MC03ND.f.s + +src/SLICOT-Reference/src/MC03NX.o: src/SLICOT-Reference/src/MC03NX.f.o +.PHONY : src/SLICOT-Reference/src/MC03NX.o + +# target to build an object file +src/SLICOT-Reference/src/MC03NX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03NX.f.o +.PHONY : src/SLICOT-Reference/src/MC03NX.f.o + +src/SLICOT-Reference/src/MC03NX.i: src/SLICOT-Reference/src/MC03NX.f.i +.PHONY : src/SLICOT-Reference/src/MC03NX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC03NX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03NX.f.i +.PHONY : src/SLICOT-Reference/src/MC03NX.f.i + +src/SLICOT-Reference/src/MC03NX.s: src/SLICOT-Reference/src/MC03NX.f.s +.PHONY : src/SLICOT-Reference/src/MC03NX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC03NX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03NX.f.s +.PHONY : src/SLICOT-Reference/src/MC03NX.f.s + +src/SLICOT-Reference/src/MC03NY.o: src/SLICOT-Reference/src/MC03NY.f.o +.PHONY : src/SLICOT-Reference/src/MC03NY.o + +# target to build an object file +src/SLICOT-Reference/src/MC03NY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03NY.f.o +.PHONY : src/SLICOT-Reference/src/MC03NY.f.o + +src/SLICOT-Reference/src/MC03NY.i: src/SLICOT-Reference/src/MC03NY.f.i +.PHONY : src/SLICOT-Reference/src/MC03NY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MC03NY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03NY.f.i +.PHONY : src/SLICOT-Reference/src/MC03NY.f.i + +src/SLICOT-Reference/src/MC03NY.s: src/SLICOT-Reference/src/MC03NY.f.s +.PHONY : src/SLICOT-Reference/src/MC03NY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MC03NY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03NY.f.s +.PHONY : src/SLICOT-Reference/src/MC03NY.f.s + +src/SLICOT-Reference/src/MD03AD.o: src/SLICOT-Reference/src/MD03AD.f.o +.PHONY : src/SLICOT-Reference/src/MD03AD.o + +# target to build an object file +src/SLICOT-Reference/src/MD03AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03AD.f.o +.PHONY : src/SLICOT-Reference/src/MD03AD.f.o + +src/SLICOT-Reference/src/MD03AD.i: src/SLICOT-Reference/src/MD03AD.f.i +.PHONY : src/SLICOT-Reference/src/MD03AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MD03AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03AD.f.i +.PHONY : src/SLICOT-Reference/src/MD03AD.f.i + +src/SLICOT-Reference/src/MD03AD.s: src/SLICOT-Reference/src/MD03AD.f.s +.PHONY : src/SLICOT-Reference/src/MD03AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MD03AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03AD.f.s +.PHONY : src/SLICOT-Reference/src/MD03AD.f.s + +src/SLICOT-Reference/src/MD03BA.o: src/SLICOT-Reference/src/MD03BA.f.o +.PHONY : src/SLICOT-Reference/src/MD03BA.o + +# target to build an object file +src/SLICOT-Reference/src/MD03BA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BA.f.o +.PHONY : src/SLICOT-Reference/src/MD03BA.f.o + +src/SLICOT-Reference/src/MD03BA.i: src/SLICOT-Reference/src/MD03BA.f.i +.PHONY : src/SLICOT-Reference/src/MD03BA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MD03BA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BA.f.i +.PHONY : src/SLICOT-Reference/src/MD03BA.f.i + +src/SLICOT-Reference/src/MD03BA.s: src/SLICOT-Reference/src/MD03BA.f.s +.PHONY : src/SLICOT-Reference/src/MD03BA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MD03BA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BA.f.s +.PHONY : src/SLICOT-Reference/src/MD03BA.f.s + +src/SLICOT-Reference/src/MD03BB.o: src/SLICOT-Reference/src/MD03BB.f.o +.PHONY : src/SLICOT-Reference/src/MD03BB.o + +# target to build an object file +src/SLICOT-Reference/src/MD03BB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BB.f.o +.PHONY : src/SLICOT-Reference/src/MD03BB.f.o + +src/SLICOT-Reference/src/MD03BB.i: src/SLICOT-Reference/src/MD03BB.f.i +.PHONY : src/SLICOT-Reference/src/MD03BB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MD03BB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BB.f.i +.PHONY : src/SLICOT-Reference/src/MD03BB.f.i + +src/SLICOT-Reference/src/MD03BB.s: src/SLICOT-Reference/src/MD03BB.f.s +.PHONY : src/SLICOT-Reference/src/MD03BB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MD03BB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BB.f.s +.PHONY : src/SLICOT-Reference/src/MD03BB.f.s + +src/SLICOT-Reference/src/MD03BD.o: src/SLICOT-Reference/src/MD03BD.f.o +.PHONY : src/SLICOT-Reference/src/MD03BD.o + +# target to build an object file +src/SLICOT-Reference/src/MD03BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BD.f.o +.PHONY : src/SLICOT-Reference/src/MD03BD.f.o + +src/SLICOT-Reference/src/MD03BD.i: src/SLICOT-Reference/src/MD03BD.f.i +.PHONY : src/SLICOT-Reference/src/MD03BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MD03BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BD.f.i +.PHONY : src/SLICOT-Reference/src/MD03BD.f.i + +src/SLICOT-Reference/src/MD03BD.s: src/SLICOT-Reference/src/MD03BD.f.s +.PHONY : src/SLICOT-Reference/src/MD03BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MD03BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BD.f.s +.PHONY : src/SLICOT-Reference/src/MD03BD.f.s + +src/SLICOT-Reference/src/MD03BF.o: src/SLICOT-Reference/src/MD03BF.f.o +.PHONY : src/SLICOT-Reference/src/MD03BF.o + +# target to build an object file +src/SLICOT-Reference/src/MD03BF.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BF.f.o +.PHONY : src/SLICOT-Reference/src/MD03BF.f.o + +src/SLICOT-Reference/src/MD03BF.i: src/SLICOT-Reference/src/MD03BF.f.i +.PHONY : src/SLICOT-Reference/src/MD03BF.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MD03BF.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BF.f.i +.PHONY : src/SLICOT-Reference/src/MD03BF.f.i + +src/SLICOT-Reference/src/MD03BF.s: src/SLICOT-Reference/src/MD03BF.f.s +.PHONY : src/SLICOT-Reference/src/MD03BF.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MD03BF.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BF.f.s +.PHONY : src/SLICOT-Reference/src/MD03BF.f.s + +src/SLICOT-Reference/src/MD03BX.o: src/SLICOT-Reference/src/MD03BX.f.o +.PHONY : src/SLICOT-Reference/src/MD03BX.o + +# target to build an object file +src/SLICOT-Reference/src/MD03BX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BX.f.o +.PHONY : src/SLICOT-Reference/src/MD03BX.f.o + +src/SLICOT-Reference/src/MD03BX.i: src/SLICOT-Reference/src/MD03BX.f.i +.PHONY : src/SLICOT-Reference/src/MD03BX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MD03BX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BX.f.i +.PHONY : src/SLICOT-Reference/src/MD03BX.f.i + +src/SLICOT-Reference/src/MD03BX.s: src/SLICOT-Reference/src/MD03BX.f.s +.PHONY : src/SLICOT-Reference/src/MD03BX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MD03BX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BX.f.s +.PHONY : src/SLICOT-Reference/src/MD03BX.f.s + +src/SLICOT-Reference/src/MD03BY.o: src/SLICOT-Reference/src/MD03BY.f.o +.PHONY : src/SLICOT-Reference/src/MD03BY.o + +# target to build an object file +src/SLICOT-Reference/src/MD03BY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BY.f.o +.PHONY : src/SLICOT-Reference/src/MD03BY.f.o + +src/SLICOT-Reference/src/MD03BY.i: src/SLICOT-Reference/src/MD03BY.f.i +.PHONY : src/SLICOT-Reference/src/MD03BY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/MD03BY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BY.f.i +.PHONY : src/SLICOT-Reference/src/MD03BY.f.i + +src/SLICOT-Reference/src/MD03BY.s: src/SLICOT-Reference/src/MD03BY.f.s +.PHONY : src/SLICOT-Reference/src/MD03BY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/MD03BY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BY.f.s +.PHONY : src/SLICOT-Reference/src/MD03BY.f.s + +src/SLICOT-Reference/src/NF01AD.o: src/SLICOT-Reference/src/NF01AD.f.o +.PHONY : src/SLICOT-Reference/src/NF01AD.o + +# target to build an object file +src/SLICOT-Reference/src/NF01AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01AD.f.o +.PHONY : src/SLICOT-Reference/src/NF01AD.f.o + +src/SLICOT-Reference/src/NF01AD.i: src/SLICOT-Reference/src/NF01AD.f.i +.PHONY : src/SLICOT-Reference/src/NF01AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01AD.f.i +.PHONY : src/SLICOT-Reference/src/NF01AD.f.i + +src/SLICOT-Reference/src/NF01AD.s: src/SLICOT-Reference/src/NF01AD.f.s +.PHONY : src/SLICOT-Reference/src/NF01AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01AD.f.s +.PHONY : src/SLICOT-Reference/src/NF01AD.f.s + +src/SLICOT-Reference/src/NF01AY.o: src/SLICOT-Reference/src/NF01AY.f.o +.PHONY : src/SLICOT-Reference/src/NF01AY.o + +# target to build an object file +src/SLICOT-Reference/src/NF01AY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01AY.f.o +.PHONY : src/SLICOT-Reference/src/NF01AY.f.o + +src/SLICOT-Reference/src/NF01AY.i: src/SLICOT-Reference/src/NF01AY.f.i +.PHONY : src/SLICOT-Reference/src/NF01AY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01AY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01AY.f.i +.PHONY : src/SLICOT-Reference/src/NF01AY.f.i + +src/SLICOT-Reference/src/NF01AY.s: src/SLICOT-Reference/src/NF01AY.f.s +.PHONY : src/SLICOT-Reference/src/NF01AY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01AY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01AY.f.s +.PHONY : src/SLICOT-Reference/src/NF01AY.f.s + +src/SLICOT-Reference/src/NF01BA.o: src/SLICOT-Reference/src/NF01BA.f.o +.PHONY : src/SLICOT-Reference/src/NF01BA.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BA.f.o +.PHONY : src/SLICOT-Reference/src/NF01BA.f.o + +src/SLICOT-Reference/src/NF01BA.i: src/SLICOT-Reference/src/NF01BA.f.i +.PHONY : src/SLICOT-Reference/src/NF01BA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BA.f.i +.PHONY : src/SLICOT-Reference/src/NF01BA.f.i + +src/SLICOT-Reference/src/NF01BA.s: src/SLICOT-Reference/src/NF01BA.f.s +.PHONY : src/SLICOT-Reference/src/NF01BA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BA.f.s +.PHONY : src/SLICOT-Reference/src/NF01BA.f.s + +src/SLICOT-Reference/src/NF01BB.o: src/SLICOT-Reference/src/NF01BB.f.o +.PHONY : src/SLICOT-Reference/src/NF01BB.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BB.f.o +.PHONY : src/SLICOT-Reference/src/NF01BB.f.o + +src/SLICOT-Reference/src/NF01BB.i: src/SLICOT-Reference/src/NF01BB.f.i +.PHONY : src/SLICOT-Reference/src/NF01BB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BB.f.i +.PHONY : src/SLICOT-Reference/src/NF01BB.f.i + +src/SLICOT-Reference/src/NF01BB.s: src/SLICOT-Reference/src/NF01BB.f.s +.PHONY : src/SLICOT-Reference/src/NF01BB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BB.f.s +.PHONY : src/SLICOT-Reference/src/NF01BB.f.s + +src/SLICOT-Reference/src/NF01BD.o: src/SLICOT-Reference/src/NF01BD.f.o +.PHONY : src/SLICOT-Reference/src/NF01BD.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BD.f.o +.PHONY : src/SLICOT-Reference/src/NF01BD.f.o + +src/SLICOT-Reference/src/NF01BD.i: src/SLICOT-Reference/src/NF01BD.f.i +.PHONY : src/SLICOT-Reference/src/NF01BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BD.f.i +.PHONY : src/SLICOT-Reference/src/NF01BD.f.i + +src/SLICOT-Reference/src/NF01BD.s: src/SLICOT-Reference/src/NF01BD.f.s +.PHONY : src/SLICOT-Reference/src/NF01BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BD.f.s +.PHONY : src/SLICOT-Reference/src/NF01BD.f.s + +src/SLICOT-Reference/src/NF01BE.o: src/SLICOT-Reference/src/NF01BE.f.o +.PHONY : src/SLICOT-Reference/src/NF01BE.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BE.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BE.f.o +.PHONY : src/SLICOT-Reference/src/NF01BE.f.o + +src/SLICOT-Reference/src/NF01BE.i: src/SLICOT-Reference/src/NF01BE.f.i +.PHONY : src/SLICOT-Reference/src/NF01BE.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BE.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BE.f.i +.PHONY : src/SLICOT-Reference/src/NF01BE.f.i + +src/SLICOT-Reference/src/NF01BE.s: src/SLICOT-Reference/src/NF01BE.f.s +.PHONY : src/SLICOT-Reference/src/NF01BE.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BE.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BE.f.s +.PHONY : src/SLICOT-Reference/src/NF01BE.f.s + +src/SLICOT-Reference/src/NF01BF.o: src/SLICOT-Reference/src/NF01BF.f.o +.PHONY : src/SLICOT-Reference/src/NF01BF.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BF.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BF.f.o +.PHONY : src/SLICOT-Reference/src/NF01BF.f.o + +src/SLICOT-Reference/src/NF01BF.i: src/SLICOT-Reference/src/NF01BF.f.i +.PHONY : src/SLICOT-Reference/src/NF01BF.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BF.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BF.f.i +.PHONY : src/SLICOT-Reference/src/NF01BF.f.i + +src/SLICOT-Reference/src/NF01BF.s: src/SLICOT-Reference/src/NF01BF.f.s +.PHONY : src/SLICOT-Reference/src/NF01BF.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BF.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BF.f.s +.PHONY : src/SLICOT-Reference/src/NF01BF.f.s + +src/SLICOT-Reference/src/NF01BP.o: src/SLICOT-Reference/src/NF01BP.f.o +.PHONY : src/SLICOT-Reference/src/NF01BP.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BP.f.o +.PHONY : src/SLICOT-Reference/src/NF01BP.f.o + +src/SLICOT-Reference/src/NF01BP.i: src/SLICOT-Reference/src/NF01BP.f.i +.PHONY : src/SLICOT-Reference/src/NF01BP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BP.f.i +.PHONY : src/SLICOT-Reference/src/NF01BP.f.i + +src/SLICOT-Reference/src/NF01BP.s: src/SLICOT-Reference/src/NF01BP.f.s +.PHONY : src/SLICOT-Reference/src/NF01BP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BP.f.s +.PHONY : src/SLICOT-Reference/src/NF01BP.f.s + +src/SLICOT-Reference/src/NF01BQ.o: src/SLICOT-Reference/src/NF01BQ.f.o +.PHONY : src/SLICOT-Reference/src/NF01BQ.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BQ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BQ.f.o +.PHONY : src/SLICOT-Reference/src/NF01BQ.f.o + +src/SLICOT-Reference/src/NF01BQ.i: src/SLICOT-Reference/src/NF01BQ.f.i +.PHONY : src/SLICOT-Reference/src/NF01BQ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BQ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BQ.f.i +.PHONY : src/SLICOT-Reference/src/NF01BQ.f.i + +src/SLICOT-Reference/src/NF01BQ.s: src/SLICOT-Reference/src/NF01BQ.f.s +.PHONY : src/SLICOT-Reference/src/NF01BQ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BQ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BQ.f.s +.PHONY : src/SLICOT-Reference/src/NF01BQ.f.s + +src/SLICOT-Reference/src/NF01BR.o: src/SLICOT-Reference/src/NF01BR.f.o +.PHONY : src/SLICOT-Reference/src/NF01BR.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BR.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BR.f.o +.PHONY : src/SLICOT-Reference/src/NF01BR.f.o + +src/SLICOT-Reference/src/NF01BR.i: src/SLICOT-Reference/src/NF01BR.f.i +.PHONY : src/SLICOT-Reference/src/NF01BR.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BR.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BR.f.i +.PHONY : src/SLICOT-Reference/src/NF01BR.f.i + +src/SLICOT-Reference/src/NF01BR.s: src/SLICOT-Reference/src/NF01BR.f.s +.PHONY : src/SLICOT-Reference/src/NF01BR.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BR.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BR.f.s +.PHONY : src/SLICOT-Reference/src/NF01BR.f.s + +src/SLICOT-Reference/src/NF01BS.o: src/SLICOT-Reference/src/NF01BS.f.o +.PHONY : src/SLICOT-Reference/src/NF01BS.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BS.f.o +.PHONY : src/SLICOT-Reference/src/NF01BS.f.o + +src/SLICOT-Reference/src/NF01BS.i: src/SLICOT-Reference/src/NF01BS.f.i +.PHONY : src/SLICOT-Reference/src/NF01BS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BS.f.i +.PHONY : src/SLICOT-Reference/src/NF01BS.f.i + +src/SLICOT-Reference/src/NF01BS.s: src/SLICOT-Reference/src/NF01BS.f.s +.PHONY : src/SLICOT-Reference/src/NF01BS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BS.f.s +.PHONY : src/SLICOT-Reference/src/NF01BS.f.s + +src/SLICOT-Reference/src/NF01BU.o: src/SLICOT-Reference/src/NF01BU.f.o +.PHONY : src/SLICOT-Reference/src/NF01BU.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BU.f.o +.PHONY : src/SLICOT-Reference/src/NF01BU.f.o + +src/SLICOT-Reference/src/NF01BU.i: src/SLICOT-Reference/src/NF01BU.f.i +.PHONY : src/SLICOT-Reference/src/NF01BU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BU.f.i +.PHONY : src/SLICOT-Reference/src/NF01BU.f.i + +src/SLICOT-Reference/src/NF01BU.s: src/SLICOT-Reference/src/NF01BU.f.s +.PHONY : src/SLICOT-Reference/src/NF01BU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BU.f.s +.PHONY : src/SLICOT-Reference/src/NF01BU.f.s + +src/SLICOT-Reference/src/NF01BV.o: src/SLICOT-Reference/src/NF01BV.f.o +.PHONY : src/SLICOT-Reference/src/NF01BV.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BV.f.o +.PHONY : src/SLICOT-Reference/src/NF01BV.f.o + +src/SLICOT-Reference/src/NF01BV.i: src/SLICOT-Reference/src/NF01BV.f.i +.PHONY : src/SLICOT-Reference/src/NF01BV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BV.f.i +.PHONY : src/SLICOT-Reference/src/NF01BV.f.i + +src/SLICOT-Reference/src/NF01BV.s: src/SLICOT-Reference/src/NF01BV.f.s +.PHONY : src/SLICOT-Reference/src/NF01BV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BV.f.s +.PHONY : src/SLICOT-Reference/src/NF01BV.f.s + +src/SLICOT-Reference/src/NF01BW.o: src/SLICOT-Reference/src/NF01BW.f.o +.PHONY : src/SLICOT-Reference/src/NF01BW.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BW.f.o +.PHONY : src/SLICOT-Reference/src/NF01BW.f.o + +src/SLICOT-Reference/src/NF01BW.i: src/SLICOT-Reference/src/NF01BW.f.i +.PHONY : src/SLICOT-Reference/src/NF01BW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BW.f.i +.PHONY : src/SLICOT-Reference/src/NF01BW.f.i + +src/SLICOT-Reference/src/NF01BW.s: src/SLICOT-Reference/src/NF01BW.f.s +.PHONY : src/SLICOT-Reference/src/NF01BW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BW.f.s +.PHONY : src/SLICOT-Reference/src/NF01BW.f.s + +src/SLICOT-Reference/src/NF01BX.o: src/SLICOT-Reference/src/NF01BX.f.o +.PHONY : src/SLICOT-Reference/src/NF01BX.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BX.f.o +.PHONY : src/SLICOT-Reference/src/NF01BX.f.o + +src/SLICOT-Reference/src/NF01BX.i: src/SLICOT-Reference/src/NF01BX.f.i +.PHONY : src/SLICOT-Reference/src/NF01BX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BX.f.i +.PHONY : src/SLICOT-Reference/src/NF01BX.f.i + +src/SLICOT-Reference/src/NF01BX.s: src/SLICOT-Reference/src/NF01BX.f.s +.PHONY : src/SLICOT-Reference/src/NF01BX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BX.f.s +.PHONY : src/SLICOT-Reference/src/NF01BX.f.s + +src/SLICOT-Reference/src/NF01BY.o: src/SLICOT-Reference/src/NF01BY.f.o +.PHONY : src/SLICOT-Reference/src/NF01BY.o + +# target to build an object file +src/SLICOT-Reference/src/NF01BY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BY.f.o +.PHONY : src/SLICOT-Reference/src/NF01BY.f.o + +src/SLICOT-Reference/src/NF01BY.i: src/SLICOT-Reference/src/NF01BY.f.i +.PHONY : src/SLICOT-Reference/src/NF01BY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/NF01BY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BY.f.i +.PHONY : src/SLICOT-Reference/src/NF01BY.f.i + +src/SLICOT-Reference/src/NF01BY.s: src/SLICOT-Reference/src/NF01BY.f.s +.PHONY : src/SLICOT-Reference/src/NF01BY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/NF01BY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BY.f.s +.PHONY : src/SLICOT-Reference/src/NF01BY.f.s + +src/SLICOT-Reference/src/SB01BD.o: src/SLICOT-Reference/src/SB01BD.f.o +.PHONY : src/SLICOT-Reference/src/SB01BD.o + +# target to build an object file +src/SLICOT-Reference/src/SB01BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BD.f.o +.PHONY : src/SLICOT-Reference/src/SB01BD.f.o + +src/SLICOT-Reference/src/SB01BD.i: src/SLICOT-Reference/src/SB01BD.f.i +.PHONY : src/SLICOT-Reference/src/SB01BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB01BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BD.f.i +.PHONY : src/SLICOT-Reference/src/SB01BD.f.i + +src/SLICOT-Reference/src/SB01BD.s: src/SLICOT-Reference/src/SB01BD.f.s +.PHONY : src/SLICOT-Reference/src/SB01BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB01BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BD.f.s +.PHONY : src/SLICOT-Reference/src/SB01BD.f.s + +src/SLICOT-Reference/src/SB01BX.o: src/SLICOT-Reference/src/SB01BX.f.o +.PHONY : src/SLICOT-Reference/src/SB01BX.o + +# target to build an object file +src/SLICOT-Reference/src/SB01BX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BX.f.o +.PHONY : src/SLICOT-Reference/src/SB01BX.f.o + +src/SLICOT-Reference/src/SB01BX.i: src/SLICOT-Reference/src/SB01BX.f.i +.PHONY : src/SLICOT-Reference/src/SB01BX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB01BX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BX.f.i +.PHONY : src/SLICOT-Reference/src/SB01BX.f.i + +src/SLICOT-Reference/src/SB01BX.s: src/SLICOT-Reference/src/SB01BX.f.s +.PHONY : src/SLICOT-Reference/src/SB01BX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB01BX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BX.f.s +.PHONY : src/SLICOT-Reference/src/SB01BX.f.s + +src/SLICOT-Reference/src/SB01BY.o: src/SLICOT-Reference/src/SB01BY.f.o +.PHONY : src/SLICOT-Reference/src/SB01BY.o + +# target to build an object file +src/SLICOT-Reference/src/SB01BY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BY.f.o +.PHONY : src/SLICOT-Reference/src/SB01BY.f.o + +src/SLICOT-Reference/src/SB01BY.i: src/SLICOT-Reference/src/SB01BY.f.i +.PHONY : src/SLICOT-Reference/src/SB01BY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB01BY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BY.f.i +.PHONY : src/SLICOT-Reference/src/SB01BY.f.i + +src/SLICOT-Reference/src/SB01BY.s: src/SLICOT-Reference/src/SB01BY.f.s +.PHONY : src/SLICOT-Reference/src/SB01BY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB01BY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BY.f.s +.PHONY : src/SLICOT-Reference/src/SB01BY.f.s + +src/SLICOT-Reference/src/SB01DD.o: src/SLICOT-Reference/src/SB01DD.f.o +.PHONY : src/SLICOT-Reference/src/SB01DD.o + +# target to build an object file +src/SLICOT-Reference/src/SB01DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01DD.f.o +.PHONY : src/SLICOT-Reference/src/SB01DD.f.o + +src/SLICOT-Reference/src/SB01DD.i: src/SLICOT-Reference/src/SB01DD.f.i +.PHONY : src/SLICOT-Reference/src/SB01DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB01DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01DD.f.i +.PHONY : src/SLICOT-Reference/src/SB01DD.f.i + +src/SLICOT-Reference/src/SB01DD.s: src/SLICOT-Reference/src/SB01DD.f.s +.PHONY : src/SLICOT-Reference/src/SB01DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB01DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01DD.f.s +.PHONY : src/SLICOT-Reference/src/SB01DD.f.s + +src/SLICOT-Reference/src/SB01FY.o: src/SLICOT-Reference/src/SB01FY.f.o +.PHONY : src/SLICOT-Reference/src/SB01FY.o + +# target to build an object file +src/SLICOT-Reference/src/SB01FY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01FY.f.o +.PHONY : src/SLICOT-Reference/src/SB01FY.f.o + +src/SLICOT-Reference/src/SB01FY.i: src/SLICOT-Reference/src/SB01FY.f.i +.PHONY : src/SLICOT-Reference/src/SB01FY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB01FY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01FY.f.i +.PHONY : src/SLICOT-Reference/src/SB01FY.f.i + +src/SLICOT-Reference/src/SB01FY.s: src/SLICOT-Reference/src/SB01FY.f.s +.PHONY : src/SLICOT-Reference/src/SB01FY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB01FY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01FY.f.s +.PHONY : src/SLICOT-Reference/src/SB01FY.f.s + +src/SLICOT-Reference/src/SB01MD.o: src/SLICOT-Reference/src/SB01MD.f.o +.PHONY : src/SLICOT-Reference/src/SB01MD.o + +# target to build an object file +src/SLICOT-Reference/src/SB01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01MD.f.o +.PHONY : src/SLICOT-Reference/src/SB01MD.f.o + +src/SLICOT-Reference/src/SB01MD.i: src/SLICOT-Reference/src/SB01MD.f.i +.PHONY : src/SLICOT-Reference/src/SB01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01MD.f.i +.PHONY : src/SLICOT-Reference/src/SB01MD.f.i + +src/SLICOT-Reference/src/SB01MD.s: src/SLICOT-Reference/src/SB01MD.f.s +.PHONY : src/SLICOT-Reference/src/SB01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01MD.f.s +.PHONY : src/SLICOT-Reference/src/SB01MD.f.s + +src/SLICOT-Reference/src/SB02CX.o: src/SLICOT-Reference/src/SB02CX.f.o +.PHONY : src/SLICOT-Reference/src/SB02CX.o + +# target to build an object file +src/SLICOT-Reference/src/SB02CX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02CX.f.o +.PHONY : src/SLICOT-Reference/src/SB02CX.f.o + +src/SLICOT-Reference/src/SB02CX.i: src/SLICOT-Reference/src/SB02CX.f.i +.PHONY : src/SLICOT-Reference/src/SB02CX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02CX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02CX.f.i +.PHONY : src/SLICOT-Reference/src/SB02CX.f.i + +src/SLICOT-Reference/src/SB02CX.s: src/SLICOT-Reference/src/SB02CX.f.s +.PHONY : src/SLICOT-Reference/src/SB02CX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02CX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02CX.f.s +.PHONY : src/SLICOT-Reference/src/SB02CX.f.s + +src/SLICOT-Reference/src/SB02MD.o: src/SLICOT-Reference/src/SB02MD.f.o +.PHONY : src/SLICOT-Reference/src/SB02MD.o + +# target to build an object file +src/SLICOT-Reference/src/SB02MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MD.f.o +.PHONY : src/SLICOT-Reference/src/SB02MD.f.o + +src/SLICOT-Reference/src/SB02MD.i: src/SLICOT-Reference/src/SB02MD.f.i +.PHONY : src/SLICOT-Reference/src/SB02MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MD.f.i +.PHONY : src/SLICOT-Reference/src/SB02MD.f.i + +src/SLICOT-Reference/src/SB02MD.s: src/SLICOT-Reference/src/SB02MD.f.s +.PHONY : src/SLICOT-Reference/src/SB02MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MD.f.s +.PHONY : src/SLICOT-Reference/src/SB02MD.f.s + +src/SLICOT-Reference/src/SB02MR.o: src/SLICOT-Reference/src/SB02MR.f.o +.PHONY : src/SLICOT-Reference/src/SB02MR.o + +# target to build an object file +src/SLICOT-Reference/src/SB02MR.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MR.f.o +.PHONY : src/SLICOT-Reference/src/SB02MR.f.o + +src/SLICOT-Reference/src/SB02MR.i: src/SLICOT-Reference/src/SB02MR.f.i +.PHONY : src/SLICOT-Reference/src/SB02MR.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02MR.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MR.f.i +.PHONY : src/SLICOT-Reference/src/SB02MR.f.i + +src/SLICOT-Reference/src/SB02MR.s: src/SLICOT-Reference/src/SB02MR.f.s +.PHONY : src/SLICOT-Reference/src/SB02MR.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02MR.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MR.f.s +.PHONY : src/SLICOT-Reference/src/SB02MR.f.s + +src/SLICOT-Reference/src/SB02MS.o: src/SLICOT-Reference/src/SB02MS.f.o +.PHONY : src/SLICOT-Reference/src/SB02MS.o + +# target to build an object file +src/SLICOT-Reference/src/SB02MS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MS.f.o +.PHONY : src/SLICOT-Reference/src/SB02MS.f.o + +src/SLICOT-Reference/src/SB02MS.i: src/SLICOT-Reference/src/SB02MS.f.i +.PHONY : src/SLICOT-Reference/src/SB02MS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02MS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MS.f.i +.PHONY : src/SLICOT-Reference/src/SB02MS.f.i + +src/SLICOT-Reference/src/SB02MS.s: src/SLICOT-Reference/src/SB02MS.f.s +.PHONY : src/SLICOT-Reference/src/SB02MS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02MS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MS.f.s +.PHONY : src/SLICOT-Reference/src/SB02MS.f.s + +src/SLICOT-Reference/src/SB02MT.o: src/SLICOT-Reference/src/SB02MT.f.o +.PHONY : src/SLICOT-Reference/src/SB02MT.o + +# target to build an object file +src/SLICOT-Reference/src/SB02MT.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MT.f.o +.PHONY : src/SLICOT-Reference/src/SB02MT.f.o + +src/SLICOT-Reference/src/SB02MT.i: src/SLICOT-Reference/src/SB02MT.f.i +.PHONY : src/SLICOT-Reference/src/SB02MT.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02MT.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MT.f.i +.PHONY : src/SLICOT-Reference/src/SB02MT.f.i + +src/SLICOT-Reference/src/SB02MT.s: src/SLICOT-Reference/src/SB02MT.f.s +.PHONY : src/SLICOT-Reference/src/SB02MT.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02MT.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MT.f.s +.PHONY : src/SLICOT-Reference/src/SB02MT.f.s + +src/SLICOT-Reference/src/SB02MU.o: src/SLICOT-Reference/src/SB02MU.f.o +.PHONY : src/SLICOT-Reference/src/SB02MU.o + +# target to build an object file +src/SLICOT-Reference/src/SB02MU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MU.f.o +.PHONY : src/SLICOT-Reference/src/SB02MU.f.o + +src/SLICOT-Reference/src/SB02MU.i: src/SLICOT-Reference/src/SB02MU.f.i +.PHONY : src/SLICOT-Reference/src/SB02MU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02MU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MU.f.i +.PHONY : src/SLICOT-Reference/src/SB02MU.f.i + +src/SLICOT-Reference/src/SB02MU.s: src/SLICOT-Reference/src/SB02MU.f.s +.PHONY : src/SLICOT-Reference/src/SB02MU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02MU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MU.f.s +.PHONY : src/SLICOT-Reference/src/SB02MU.f.s + +src/SLICOT-Reference/src/SB02MV.o: src/SLICOT-Reference/src/SB02MV.f.o +.PHONY : src/SLICOT-Reference/src/SB02MV.o + +# target to build an object file +src/SLICOT-Reference/src/SB02MV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MV.f.o +.PHONY : src/SLICOT-Reference/src/SB02MV.f.o + +src/SLICOT-Reference/src/SB02MV.i: src/SLICOT-Reference/src/SB02MV.f.i +.PHONY : src/SLICOT-Reference/src/SB02MV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02MV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MV.f.i +.PHONY : src/SLICOT-Reference/src/SB02MV.f.i + +src/SLICOT-Reference/src/SB02MV.s: src/SLICOT-Reference/src/SB02MV.f.s +.PHONY : src/SLICOT-Reference/src/SB02MV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02MV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MV.f.s +.PHONY : src/SLICOT-Reference/src/SB02MV.f.s + +src/SLICOT-Reference/src/SB02MW.o: src/SLICOT-Reference/src/SB02MW.f.o +.PHONY : src/SLICOT-Reference/src/SB02MW.o + +# target to build an object file +src/SLICOT-Reference/src/SB02MW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MW.f.o +.PHONY : src/SLICOT-Reference/src/SB02MW.f.o + +src/SLICOT-Reference/src/SB02MW.i: src/SLICOT-Reference/src/SB02MW.f.i +.PHONY : src/SLICOT-Reference/src/SB02MW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02MW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MW.f.i +.PHONY : src/SLICOT-Reference/src/SB02MW.f.i + +src/SLICOT-Reference/src/SB02MW.s: src/SLICOT-Reference/src/SB02MW.f.s +.PHONY : src/SLICOT-Reference/src/SB02MW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02MW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MW.f.s +.PHONY : src/SLICOT-Reference/src/SB02MW.f.s + +src/SLICOT-Reference/src/SB02MX.o: src/SLICOT-Reference/src/SB02MX.f.o +.PHONY : src/SLICOT-Reference/src/SB02MX.o + +# target to build an object file +src/SLICOT-Reference/src/SB02MX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MX.f.o +.PHONY : src/SLICOT-Reference/src/SB02MX.f.o + +src/SLICOT-Reference/src/SB02MX.i: src/SLICOT-Reference/src/SB02MX.f.i +.PHONY : src/SLICOT-Reference/src/SB02MX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02MX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MX.f.i +.PHONY : src/SLICOT-Reference/src/SB02MX.f.i + +src/SLICOT-Reference/src/SB02MX.s: src/SLICOT-Reference/src/SB02MX.f.s +.PHONY : src/SLICOT-Reference/src/SB02MX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02MX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MX.f.s +.PHONY : src/SLICOT-Reference/src/SB02MX.f.s + +src/SLICOT-Reference/src/SB02ND.o: src/SLICOT-Reference/src/SB02ND.f.o +.PHONY : src/SLICOT-Reference/src/SB02ND.o + +# target to build an object file +src/SLICOT-Reference/src/SB02ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02ND.f.o +.PHONY : src/SLICOT-Reference/src/SB02ND.f.o + +src/SLICOT-Reference/src/SB02ND.i: src/SLICOT-Reference/src/SB02ND.f.i +.PHONY : src/SLICOT-Reference/src/SB02ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02ND.f.i +.PHONY : src/SLICOT-Reference/src/SB02ND.f.i + +src/SLICOT-Reference/src/SB02ND.s: src/SLICOT-Reference/src/SB02ND.f.s +.PHONY : src/SLICOT-Reference/src/SB02ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02ND.f.s +.PHONY : src/SLICOT-Reference/src/SB02ND.f.s + +src/SLICOT-Reference/src/SB02OD.o: src/SLICOT-Reference/src/SB02OD.f.o +.PHONY : src/SLICOT-Reference/src/SB02OD.o + +# target to build an object file +src/SLICOT-Reference/src/SB02OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OD.f.o +.PHONY : src/SLICOT-Reference/src/SB02OD.f.o + +src/SLICOT-Reference/src/SB02OD.i: src/SLICOT-Reference/src/SB02OD.f.i +.PHONY : src/SLICOT-Reference/src/SB02OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OD.f.i +.PHONY : src/SLICOT-Reference/src/SB02OD.f.i + +src/SLICOT-Reference/src/SB02OD.s: src/SLICOT-Reference/src/SB02OD.f.s +.PHONY : src/SLICOT-Reference/src/SB02OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OD.f.s +.PHONY : src/SLICOT-Reference/src/SB02OD.f.s + +src/SLICOT-Reference/src/SB02OU.o: src/SLICOT-Reference/src/SB02OU.f.o +.PHONY : src/SLICOT-Reference/src/SB02OU.o + +# target to build an object file +src/SLICOT-Reference/src/SB02OU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OU.f.o +.PHONY : src/SLICOT-Reference/src/SB02OU.f.o + +src/SLICOT-Reference/src/SB02OU.i: src/SLICOT-Reference/src/SB02OU.f.i +.PHONY : src/SLICOT-Reference/src/SB02OU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02OU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OU.f.i +.PHONY : src/SLICOT-Reference/src/SB02OU.f.i + +src/SLICOT-Reference/src/SB02OU.s: src/SLICOT-Reference/src/SB02OU.f.s +.PHONY : src/SLICOT-Reference/src/SB02OU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02OU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OU.f.s +.PHONY : src/SLICOT-Reference/src/SB02OU.f.s + +src/SLICOT-Reference/src/SB02OV.o: src/SLICOT-Reference/src/SB02OV.f.o +.PHONY : src/SLICOT-Reference/src/SB02OV.o + +# target to build an object file +src/SLICOT-Reference/src/SB02OV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OV.f.o +.PHONY : src/SLICOT-Reference/src/SB02OV.f.o + +src/SLICOT-Reference/src/SB02OV.i: src/SLICOT-Reference/src/SB02OV.f.i +.PHONY : src/SLICOT-Reference/src/SB02OV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02OV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OV.f.i +.PHONY : src/SLICOT-Reference/src/SB02OV.f.i + +src/SLICOT-Reference/src/SB02OV.s: src/SLICOT-Reference/src/SB02OV.f.s +.PHONY : src/SLICOT-Reference/src/SB02OV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02OV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OV.f.s +.PHONY : src/SLICOT-Reference/src/SB02OV.f.s + +src/SLICOT-Reference/src/SB02OW.o: src/SLICOT-Reference/src/SB02OW.f.o +.PHONY : src/SLICOT-Reference/src/SB02OW.o + +# target to build an object file +src/SLICOT-Reference/src/SB02OW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OW.f.o +.PHONY : src/SLICOT-Reference/src/SB02OW.f.o + +src/SLICOT-Reference/src/SB02OW.i: src/SLICOT-Reference/src/SB02OW.f.i +.PHONY : src/SLICOT-Reference/src/SB02OW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02OW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OW.f.i +.PHONY : src/SLICOT-Reference/src/SB02OW.f.i + +src/SLICOT-Reference/src/SB02OW.s: src/SLICOT-Reference/src/SB02OW.f.s +.PHONY : src/SLICOT-Reference/src/SB02OW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02OW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OW.f.s +.PHONY : src/SLICOT-Reference/src/SB02OW.f.s + +src/SLICOT-Reference/src/SB02OX.o: src/SLICOT-Reference/src/SB02OX.f.o +.PHONY : src/SLICOT-Reference/src/SB02OX.o + +# target to build an object file +src/SLICOT-Reference/src/SB02OX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OX.f.o +.PHONY : src/SLICOT-Reference/src/SB02OX.f.o + +src/SLICOT-Reference/src/SB02OX.i: src/SLICOT-Reference/src/SB02OX.f.i +.PHONY : src/SLICOT-Reference/src/SB02OX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02OX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OX.f.i +.PHONY : src/SLICOT-Reference/src/SB02OX.f.i + +src/SLICOT-Reference/src/SB02OX.s: src/SLICOT-Reference/src/SB02OX.f.s +.PHONY : src/SLICOT-Reference/src/SB02OX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02OX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OX.f.s +.PHONY : src/SLICOT-Reference/src/SB02OX.f.s + +src/SLICOT-Reference/src/SB02OY.o: src/SLICOT-Reference/src/SB02OY.f.o +.PHONY : src/SLICOT-Reference/src/SB02OY.o + +# target to build an object file +src/SLICOT-Reference/src/SB02OY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OY.f.o +.PHONY : src/SLICOT-Reference/src/SB02OY.f.o + +src/SLICOT-Reference/src/SB02OY.i: src/SLICOT-Reference/src/SB02OY.f.i +.PHONY : src/SLICOT-Reference/src/SB02OY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02OY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OY.f.i +.PHONY : src/SLICOT-Reference/src/SB02OY.f.i + +src/SLICOT-Reference/src/SB02OY.s: src/SLICOT-Reference/src/SB02OY.f.s +.PHONY : src/SLICOT-Reference/src/SB02OY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02OY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OY.f.s +.PHONY : src/SLICOT-Reference/src/SB02OY.f.s + +src/SLICOT-Reference/src/SB02PD.o: src/SLICOT-Reference/src/SB02PD.f.o +.PHONY : src/SLICOT-Reference/src/SB02PD.o + +# target to build an object file +src/SLICOT-Reference/src/SB02PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02PD.f.o +.PHONY : src/SLICOT-Reference/src/SB02PD.f.o + +src/SLICOT-Reference/src/SB02PD.i: src/SLICOT-Reference/src/SB02PD.f.i +.PHONY : src/SLICOT-Reference/src/SB02PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02PD.f.i +.PHONY : src/SLICOT-Reference/src/SB02PD.f.i + +src/SLICOT-Reference/src/SB02PD.s: src/SLICOT-Reference/src/SB02PD.f.s +.PHONY : src/SLICOT-Reference/src/SB02PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02PD.f.s +.PHONY : src/SLICOT-Reference/src/SB02PD.f.s + +src/SLICOT-Reference/src/SB02QD.o: src/SLICOT-Reference/src/SB02QD.f.o +.PHONY : src/SLICOT-Reference/src/SB02QD.o + +# target to build an object file +src/SLICOT-Reference/src/SB02QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02QD.f.o +.PHONY : src/SLICOT-Reference/src/SB02QD.f.o + +src/SLICOT-Reference/src/SB02QD.i: src/SLICOT-Reference/src/SB02QD.f.i +.PHONY : src/SLICOT-Reference/src/SB02QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02QD.f.i +.PHONY : src/SLICOT-Reference/src/SB02QD.f.i + +src/SLICOT-Reference/src/SB02QD.s: src/SLICOT-Reference/src/SB02QD.f.s +.PHONY : src/SLICOT-Reference/src/SB02QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02QD.f.s +.PHONY : src/SLICOT-Reference/src/SB02QD.f.s + +src/SLICOT-Reference/src/SB02RD.o: src/SLICOT-Reference/src/SB02RD.f.o +.PHONY : src/SLICOT-Reference/src/SB02RD.o + +# target to build an object file +src/SLICOT-Reference/src/SB02RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02RD.f.o +.PHONY : src/SLICOT-Reference/src/SB02RD.f.o + +src/SLICOT-Reference/src/SB02RD.i: src/SLICOT-Reference/src/SB02RD.f.i +.PHONY : src/SLICOT-Reference/src/SB02RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02RD.f.i +.PHONY : src/SLICOT-Reference/src/SB02RD.f.i + +src/SLICOT-Reference/src/SB02RD.s: src/SLICOT-Reference/src/SB02RD.f.s +.PHONY : src/SLICOT-Reference/src/SB02RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02RD.f.s +.PHONY : src/SLICOT-Reference/src/SB02RD.f.s + +src/SLICOT-Reference/src/SB02RU.o: src/SLICOT-Reference/src/SB02RU.f.o +.PHONY : src/SLICOT-Reference/src/SB02RU.o + +# target to build an object file +src/SLICOT-Reference/src/SB02RU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02RU.f.o +.PHONY : src/SLICOT-Reference/src/SB02RU.f.o + +src/SLICOT-Reference/src/SB02RU.i: src/SLICOT-Reference/src/SB02RU.f.i +.PHONY : src/SLICOT-Reference/src/SB02RU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02RU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02RU.f.i +.PHONY : src/SLICOT-Reference/src/SB02RU.f.i + +src/SLICOT-Reference/src/SB02RU.s: src/SLICOT-Reference/src/SB02RU.f.s +.PHONY : src/SLICOT-Reference/src/SB02RU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02RU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02RU.f.s +.PHONY : src/SLICOT-Reference/src/SB02RU.f.s + +src/SLICOT-Reference/src/SB02SD.o: src/SLICOT-Reference/src/SB02SD.f.o +.PHONY : src/SLICOT-Reference/src/SB02SD.o + +# target to build an object file +src/SLICOT-Reference/src/SB02SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02SD.f.o +.PHONY : src/SLICOT-Reference/src/SB02SD.f.o + +src/SLICOT-Reference/src/SB02SD.i: src/SLICOT-Reference/src/SB02SD.f.i +.PHONY : src/SLICOT-Reference/src/SB02SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB02SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02SD.f.i +.PHONY : src/SLICOT-Reference/src/SB02SD.f.i + +src/SLICOT-Reference/src/SB02SD.s: src/SLICOT-Reference/src/SB02SD.f.s +.PHONY : src/SLICOT-Reference/src/SB02SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB02SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02SD.f.s +.PHONY : src/SLICOT-Reference/src/SB02SD.f.s + +src/SLICOT-Reference/src/SB03MD.o: src/SLICOT-Reference/src/SB03MD.f.o +.PHONY : src/SLICOT-Reference/src/SB03MD.o + +# target to build an object file +src/SLICOT-Reference/src/SB03MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MD.f.o +.PHONY : src/SLICOT-Reference/src/SB03MD.f.o + +src/SLICOT-Reference/src/SB03MD.i: src/SLICOT-Reference/src/SB03MD.f.i +.PHONY : src/SLICOT-Reference/src/SB03MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MD.f.i +.PHONY : src/SLICOT-Reference/src/SB03MD.f.i + +src/SLICOT-Reference/src/SB03MD.s: src/SLICOT-Reference/src/SB03MD.f.s +.PHONY : src/SLICOT-Reference/src/SB03MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MD.f.s +.PHONY : src/SLICOT-Reference/src/SB03MD.f.s + +src/SLICOT-Reference/src/SB03MU.o: src/SLICOT-Reference/src/SB03MU.f.o +.PHONY : src/SLICOT-Reference/src/SB03MU.o + +# target to build an object file +src/SLICOT-Reference/src/SB03MU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MU.f.o +.PHONY : src/SLICOT-Reference/src/SB03MU.f.o + +src/SLICOT-Reference/src/SB03MU.i: src/SLICOT-Reference/src/SB03MU.f.i +.PHONY : src/SLICOT-Reference/src/SB03MU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03MU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MU.f.i +.PHONY : src/SLICOT-Reference/src/SB03MU.f.i + +src/SLICOT-Reference/src/SB03MU.s: src/SLICOT-Reference/src/SB03MU.f.s +.PHONY : src/SLICOT-Reference/src/SB03MU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03MU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MU.f.s +.PHONY : src/SLICOT-Reference/src/SB03MU.f.s + +src/SLICOT-Reference/src/SB03MV.o: src/SLICOT-Reference/src/SB03MV.f.o +.PHONY : src/SLICOT-Reference/src/SB03MV.o + +# target to build an object file +src/SLICOT-Reference/src/SB03MV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MV.f.o +.PHONY : src/SLICOT-Reference/src/SB03MV.f.o + +src/SLICOT-Reference/src/SB03MV.i: src/SLICOT-Reference/src/SB03MV.f.i +.PHONY : src/SLICOT-Reference/src/SB03MV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03MV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MV.f.i +.PHONY : src/SLICOT-Reference/src/SB03MV.f.i + +src/SLICOT-Reference/src/SB03MV.s: src/SLICOT-Reference/src/SB03MV.f.s +.PHONY : src/SLICOT-Reference/src/SB03MV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03MV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MV.f.s +.PHONY : src/SLICOT-Reference/src/SB03MV.f.s + +src/SLICOT-Reference/src/SB03MW.o: src/SLICOT-Reference/src/SB03MW.f.o +.PHONY : src/SLICOT-Reference/src/SB03MW.o + +# target to build an object file +src/SLICOT-Reference/src/SB03MW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MW.f.o +.PHONY : src/SLICOT-Reference/src/SB03MW.f.o + +src/SLICOT-Reference/src/SB03MW.i: src/SLICOT-Reference/src/SB03MW.f.i +.PHONY : src/SLICOT-Reference/src/SB03MW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03MW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MW.f.i +.PHONY : src/SLICOT-Reference/src/SB03MW.f.i + +src/SLICOT-Reference/src/SB03MW.s: src/SLICOT-Reference/src/SB03MW.f.s +.PHONY : src/SLICOT-Reference/src/SB03MW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03MW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MW.f.s +.PHONY : src/SLICOT-Reference/src/SB03MW.f.s + +src/SLICOT-Reference/src/SB03MX.o: src/SLICOT-Reference/src/SB03MX.f.o +.PHONY : src/SLICOT-Reference/src/SB03MX.o + +# target to build an object file +src/SLICOT-Reference/src/SB03MX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MX.f.o +.PHONY : src/SLICOT-Reference/src/SB03MX.f.o + +src/SLICOT-Reference/src/SB03MX.i: src/SLICOT-Reference/src/SB03MX.f.i +.PHONY : src/SLICOT-Reference/src/SB03MX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03MX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MX.f.i +.PHONY : src/SLICOT-Reference/src/SB03MX.f.i + +src/SLICOT-Reference/src/SB03MX.s: src/SLICOT-Reference/src/SB03MX.f.s +.PHONY : src/SLICOT-Reference/src/SB03MX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03MX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MX.f.s +.PHONY : src/SLICOT-Reference/src/SB03MX.f.s + +src/SLICOT-Reference/src/SB03MY.o: src/SLICOT-Reference/src/SB03MY.f.o +.PHONY : src/SLICOT-Reference/src/SB03MY.o + +# target to build an object file +src/SLICOT-Reference/src/SB03MY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MY.f.o +.PHONY : src/SLICOT-Reference/src/SB03MY.f.o + +src/SLICOT-Reference/src/SB03MY.i: src/SLICOT-Reference/src/SB03MY.f.i +.PHONY : src/SLICOT-Reference/src/SB03MY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03MY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MY.f.i +.PHONY : src/SLICOT-Reference/src/SB03MY.f.i + +src/SLICOT-Reference/src/SB03MY.s: src/SLICOT-Reference/src/SB03MY.f.s +.PHONY : src/SLICOT-Reference/src/SB03MY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03MY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MY.f.s +.PHONY : src/SLICOT-Reference/src/SB03MY.f.s + +src/SLICOT-Reference/src/SB03OD.o: src/SLICOT-Reference/src/SB03OD.f.o +.PHONY : src/SLICOT-Reference/src/SB03OD.o + +# target to build an object file +src/SLICOT-Reference/src/SB03OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OD.f.o +.PHONY : src/SLICOT-Reference/src/SB03OD.f.o + +src/SLICOT-Reference/src/SB03OD.i: src/SLICOT-Reference/src/SB03OD.f.i +.PHONY : src/SLICOT-Reference/src/SB03OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OD.f.i +.PHONY : src/SLICOT-Reference/src/SB03OD.f.i + +src/SLICOT-Reference/src/SB03OD.s: src/SLICOT-Reference/src/SB03OD.f.s +.PHONY : src/SLICOT-Reference/src/SB03OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OD.f.s +.PHONY : src/SLICOT-Reference/src/SB03OD.f.s + +src/SLICOT-Reference/src/SB03OR.o: src/SLICOT-Reference/src/SB03OR.f.o +.PHONY : src/SLICOT-Reference/src/SB03OR.o + +# target to build an object file +src/SLICOT-Reference/src/SB03OR.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OR.f.o +.PHONY : src/SLICOT-Reference/src/SB03OR.f.o + +src/SLICOT-Reference/src/SB03OR.i: src/SLICOT-Reference/src/SB03OR.f.i +.PHONY : src/SLICOT-Reference/src/SB03OR.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03OR.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OR.f.i +.PHONY : src/SLICOT-Reference/src/SB03OR.f.i + +src/SLICOT-Reference/src/SB03OR.s: src/SLICOT-Reference/src/SB03OR.f.s +.PHONY : src/SLICOT-Reference/src/SB03OR.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03OR.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OR.f.s +.PHONY : src/SLICOT-Reference/src/SB03OR.f.s + +src/SLICOT-Reference/src/SB03OS.o: src/SLICOT-Reference/src/SB03OS.f.o +.PHONY : src/SLICOT-Reference/src/SB03OS.o + +# target to build an object file +src/SLICOT-Reference/src/SB03OS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OS.f.o +.PHONY : src/SLICOT-Reference/src/SB03OS.f.o + +src/SLICOT-Reference/src/SB03OS.i: src/SLICOT-Reference/src/SB03OS.f.i +.PHONY : src/SLICOT-Reference/src/SB03OS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03OS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OS.f.i +.PHONY : src/SLICOT-Reference/src/SB03OS.f.i + +src/SLICOT-Reference/src/SB03OS.s: src/SLICOT-Reference/src/SB03OS.f.s +.PHONY : src/SLICOT-Reference/src/SB03OS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03OS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OS.f.s +.PHONY : src/SLICOT-Reference/src/SB03OS.f.s + +src/SLICOT-Reference/src/SB03OT.o: src/SLICOT-Reference/src/SB03OT.f.o +.PHONY : src/SLICOT-Reference/src/SB03OT.o + +# target to build an object file +src/SLICOT-Reference/src/SB03OT.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OT.f.o +.PHONY : src/SLICOT-Reference/src/SB03OT.f.o + +src/SLICOT-Reference/src/SB03OT.i: src/SLICOT-Reference/src/SB03OT.f.i +.PHONY : src/SLICOT-Reference/src/SB03OT.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03OT.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OT.f.i +.PHONY : src/SLICOT-Reference/src/SB03OT.f.i + +src/SLICOT-Reference/src/SB03OT.s: src/SLICOT-Reference/src/SB03OT.f.s +.PHONY : src/SLICOT-Reference/src/SB03OT.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03OT.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OT.f.s +.PHONY : src/SLICOT-Reference/src/SB03OT.f.s + +src/SLICOT-Reference/src/SB03OU.o: src/SLICOT-Reference/src/SB03OU.f.o +.PHONY : src/SLICOT-Reference/src/SB03OU.o + +# target to build an object file +src/SLICOT-Reference/src/SB03OU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OU.f.o +.PHONY : src/SLICOT-Reference/src/SB03OU.f.o + +src/SLICOT-Reference/src/SB03OU.i: src/SLICOT-Reference/src/SB03OU.f.i +.PHONY : src/SLICOT-Reference/src/SB03OU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03OU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OU.f.i +.PHONY : src/SLICOT-Reference/src/SB03OU.f.i + +src/SLICOT-Reference/src/SB03OU.s: src/SLICOT-Reference/src/SB03OU.f.s +.PHONY : src/SLICOT-Reference/src/SB03OU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03OU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OU.f.s +.PHONY : src/SLICOT-Reference/src/SB03OU.f.s + +src/SLICOT-Reference/src/SB03OV.o: src/SLICOT-Reference/src/SB03OV.f.o +.PHONY : src/SLICOT-Reference/src/SB03OV.o + +# target to build an object file +src/SLICOT-Reference/src/SB03OV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OV.f.o +.PHONY : src/SLICOT-Reference/src/SB03OV.f.o + +src/SLICOT-Reference/src/SB03OV.i: src/SLICOT-Reference/src/SB03OV.f.i +.PHONY : src/SLICOT-Reference/src/SB03OV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03OV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OV.f.i +.PHONY : src/SLICOT-Reference/src/SB03OV.f.i + +src/SLICOT-Reference/src/SB03OV.s: src/SLICOT-Reference/src/SB03OV.f.s +.PHONY : src/SLICOT-Reference/src/SB03OV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03OV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OV.f.s +.PHONY : src/SLICOT-Reference/src/SB03OV.f.s + +src/SLICOT-Reference/src/SB03OY.o: src/SLICOT-Reference/src/SB03OY.f.o +.PHONY : src/SLICOT-Reference/src/SB03OY.o + +# target to build an object file +src/SLICOT-Reference/src/SB03OY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OY.f.o +.PHONY : src/SLICOT-Reference/src/SB03OY.f.o + +src/SLICOT-Reference/src/SB03OY.i: src/SLICOT-Reference/src/SB03OY.f.i +.PHONY : src/SLICOT-Reference/src/SB03OY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03OY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OY.f.i +.PHONY : src/SLICOT-Reference/src/SB03OY.f.i + +src/SLICOT-Reference/src/SB03OY.s: src/SLICOT-Reference/src/SB03OY.f.s +.PHONY : src/SLICOT-Reference/src/SB03OY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03OY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OY.f.s +.PHONY : src/SLICOT-Reference/src/SB03OY.f.s + +src/SLICOT-Reference/src/SB03OZ.o: src/SLICOT-Reference/src/SB03OZ.f.o +.PHONY : src/SLICOT-Reference/src/SB03OZ.o + +# target to build an object file +src/SLICOT-Reference/src/SB03OZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OZ.f.o +.PHONY : src/SLICOT-Reference/src/SB03OZ.f.o + +src/SLICOT-Reference/src/SB03OZ.i: src/SLICOT-Reference/src/SB03OZ.f.i +.PHONY : src/SLICOT-Reference/src/SB03OZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03OZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OZ.f.i +.PHONY : src/SLICOT-Reference/src/SB03OZ.f.i + +src/SLICOT-Reference/src/SB03OZ.s: src/SLICOT-Reference/src/SB03OZ.f.s +.PHONY : src/SLICOT-Reference/src/SB03OZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03OZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OZ.f.s +.PHONY : src/SLICOT-Reference/src/SB03OZ.f.s + +src/SLICOT-Reference/src/SB03PD.o: src/SLICOT-Reference/src/SB03PD.f.o +.PHONY : src/SLICOT-Reference/src/SB03PD.o + +# target to build an object file +src/SLICOT-Reference/src/SB03PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03PD.f.o +.PHONY : src/SLICOT-Reference/src/SB03PD.f.o + +src/SLICOT-Reference/src/SB03PD.i: src/SLICOT-Reference/src/SB03PD.f.i +.PHONY : src/SLICOT-Reference/src/SB03PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03PD.f.i +.PHONY : src/SLICOT-Reference/src/SB03PD.f.i + +src/SLICOT-Reference/src/SB03PD.s: src/SLICOT-Reference/src/SB03PD.f.s +.PHONY : src/SLICOT-Reference/src/SB03PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03PD.f.s +.PHONY : src/SLICOT-Reference/src/SB03PD.f.s + +src/SLICOT-Reference/src/SB03QD.o: src/SLICOT-Reference/src/SB03QD.f.o +.PHONY : src/SLICOT-Reference/src/SB03QD.o + +# target to build an object file +src/SLICOT-Reference/src/SB03QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QD.f.o +.PHONY : src/SLICOT-Reference/src/SB03QD.f.o + +src/SLICOT-Reference/src/SB03QD.i: src/SLICOT-Reference/src/SB03QD.f.i +.PHONY : src/SLICOT-Reference/src/SB03QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QD.f.i +.PHONY : src/SLICOT-Reference/src/SB03QD.f.i + +src/SLICOT-Reference/src/SB03QD.s: src/SLICOT-Reference/src/SB03QD.f.s +.PHONY : src/SLICOT-Reference/src/SB03QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QD.f.s +.PHONY : src/SLICOT-Reference/src/SB03QD.f.s + +src/SLICOT-Reference/src/SB03QX.o: src/SLICOT-Reference/src/SB03QX.f.o +.PHONY : src/SLICOT-Reference/src/SB03QX.o + +# target to build an object file +src/SLICOT-Reference/src/SB03QX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QX.f.o +.PHONY : src/SLICOT-Reference/src/SB03QX.f.o + +src/SLICOT-Reference/src/SB03QX.i: src/SLICOT-Reference/src/SB03QX.f.i +.PHONY : src/SLICOT-Reference/src/SB03QX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03QX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QX.f.i +.PHONY : src/SLICOT-Reference/src/SB03QX.f.i + +src/SLICOT-Reference/src/SB03QX.s: src/SLICOT-Reference/src/SB03QX.f.s +.PHONY : src/SLICOT-Reference/src/SB03QX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03QX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QX.f.s +.PHONY : src/SLICOT-Reference/src/SB03QX.f.s + +src/SLICOT-Reference/src/SB03QY.o: src/SLICOT-Reference/src/SB03QY.f.o +.PHONY : src/SLICOT-Reference/src/SB03QY.o + +# target to build an object file +src/SLICOT-Reference/src/SB03QY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QY.f.o +.PHONY : src/SLICOT-Reference/src/SB03QY.f.o + +src/SLICOT-Reference/src/SB03QY.i: src/SLICOT-Reference/src/SB03QY.f.i +.PHONY : src/SLICOT-Reference/src/SB03QY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03QY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QY.f.i +.PHONY : src/SLICOT-Reference/src/SB03QY.f.i + +src/SLICOT-Reference/src/SB03QY.s: src/SLICOT-Reference/src/SB03QY.f.s +.PHONY : src/SLICOT-Reference/src/SB03QY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03QY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QY.f.s +.PHONY : src/SLICOT-Reference/src/SB03QY.f.s + +src/SLICOT-Reference/src/SB03RD.o: src/SLICOT-Reference/src/SB03RD.f.o +.PHONY : src/SLICOT-Reference/src/SB03RD.o + +# target to build an object file +src/SLICOT-Reference/src/SB03RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03RD.f.o +.PHONY : src/SLICOT-Reference/src/SB03RD.f.o + +src/SLICOT-Reference/src/SB03RD.i: src/SLICOT-Reference/src/SB03RD.f.i +.PHONY : src/SLICOT-Reference/src/SB03RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03RD.f.i +.PHONY : src/SLICOT-Reference/src/SB03RD.f.i + +src/SLICOT-Reference/src/SB03RD.s: src/SLICOT-Reference/src/SB03RD.f.s +.PHONY : src/SLICOT-Reference/src/SB03RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03RD.f.s +.PHONY : src/SLICOT-Reference/src/SB03RD.f.s + +src/SLICOT-Reference/src/SB03SD.o: src/SLICOT-Reference/src/SB03SD.f.o +.PHONY : src/SLICOT-Reference/src/SB03SD.o + +# target to build an object file +src/SLICOT-Reference/src/SB03SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SD.f.o +.PHONY : src/SLICOT-Reference/src/SB03SD.f.o + +src/SLICOT-Reference/src/SB03SD.i: src/SLICOT-Reference/src/SB03SD.f.i +.PHONY : src/SLICOT-Reference/src/SB03SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SD.f.i +.PHONY : src/SLICOT-Reference/src/SB03SD.f.i + +src/SLICOT-Reference/src/SB03SD.s: src/SLICOT-Reference/src/SB03SD.f.s +.PHONY : src/SLICOT-Reference/src/SB03SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SD.f.s +.PHONY : src/SLICOT-Reference/src/SB03SD.f.s + +src/SLICOT-Reference/src/SB03SX.o: src/SLICOT-Reference/src/SB03SX.f.o +.PHONY : src/SLICOT-Reference/src/SB03SX.o + +# target to build an object file +src/SLICOT-Reference/src/SB03SX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SX.f.o +.PHONY : src/SLICOT-Reference/src/SB03SX.f.o + +src/SLICOT-Reference/src/SB03SX.i: src/SLICOT-Reference/src/SB03SX.f.i +.PHONY : src/SLICOT-Reference/src/SB03SX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03SX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SX.f.i +.PHONY : src/SLICOT-Reference/src/SB03SX.f.i + +src/SLICOT-Reference/src/SB03SX.s: src/SLICOT-Reference/src/SB03SX.f.s +.PHONY : src/SLICOT-Reference/src/SB03SX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03SX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SX.f.s +.PHONY : src/SLICOT-Reference/src/SB03SX.f.s + +src/SLICOT-Reference/src/SB03SY.o: src/SLICOT-Reference/src/SB03SY.f.o +.PHONY : src/SLICOT-Reference/src/SB03SY.o + +# target to build an object file +src/SLICOT-Reference/src/SB03SY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SY.f.o +.PHONY : src/SLICOT-Reference/src/SB03SY.f.o + +src/SLICOT-Reference/src/SB03SY.i: src/SLICOT-Reference/src/SB03SY.f.i +.PHONY : src/SLICOT-Reference/src/SB03SY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03SY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SY.f.i +.PHONY : src/SLICOT-Reference/src/SB03SY.f.i + +src/SLICOT-Reference/src/SB03SY.s: src/SLICOT-Reference/src/SB03SY.f.s +.PHONY : src/SLICOT-Reference/src/SB03SY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03SY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SY.f.s +.PHONY : src/SLICOT-Reference/src/SB03SY.f.s + +src/SLICOT-Reference/src/SB03TD.o: src/SLICOT-Reference/src/SB03TD.f.o +.PHONY : src/SLICOT-Reference/src/SB03TD.o + +# target to build an object file +src/SLICOT-Reference/src/SB03TD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03TD.f.o +.PHONY : src/SLICOT-Reference/src/SB03TD.f.o + +src/SLICOT-Reference/src/SB03TD.i: src/SLICOT-Reference/src/SB03TD.f.i +.PHONY : src/SLICOT-Reference/src/SB03TD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03TD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03TD.f.i +.PHONY : src/SLICOT-Reference/src/SB03TD.f.i + +src/SLICOT-Reference/src/SB03TD.s: src/SLICOT-Reference/src/SB03TD.f.s +.PHONY : src/SLICOT-Reference/src/SB03TD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03TD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03TD.f.s +.PHONY : src/SLICOT-Reference/src/SB03TD.f.s + +src/SLICOT-Reference/src/SB03UD.o: src/SLICOT-Reference/src/SB03UD.f.o +.PHONY : src/SLICOT-Reference/src/SB03UD.o + +# target to build an object file +src/SLICOT-Reference/src/SB03UD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03UD.f.o +.PHONY : src/SLICOT-Reference/src/SB03UD.f.o + +src/SLICOT-Reference/src/SB03UD.i: src/SLICOT-Reference/src/SB03UD.f.i +.PHONY : src/SLICOT-Reference/src/SB03UD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB03UD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03UD.f.i +.PHONY : src/SLICOT-Reference/src/SB03UD.f.i + +src/SLICOT-Reference/src/SB03UD.s: src/SLICOT-Reference/src/SB03UD.f.s +.PHONY : src/SLICOT-Reference/src/SB03UD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB03UD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03UD.f.s +.PHONY : src/SLICOT-Reference/src/SB03UD.f.s + +src/SLICOT-Reference/src/SB04MD.o: src/SLICOT-Reference/src/SB04MD.f.o +.PHONY : src/SLICOT-Reference/src/SB04MD.o + +# target to build an object file +src/SLICOT-Reference/src/SB04MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MD.f.o +.PHONY : src/SLICOT-Reference/src/SB04MD.f.o + +src/SLICOT-Reference/src/SB04MD.i: src/SLICOT-Reference/src/SB04MD.f.i +.PHONY : src/SLICOT-Reference/src/SB04MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MD.f.i +.PHONY : src/SLICOT-Reference/src/SB04MD.f.i + +src/SLICOT-Reference/src/SB04MD.s: src/SLICOT-Reference/src/SB04MD.f.s +.PHONY : src/SLICOT-Reference/src/SB04MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MD.f.s +.PHONY : src/SLICOT-Reference/src/SB04MD.f.s + +src/SLICOT-Reference/src/SB04MR.o: src/SLICOT-Reference/src/SB04MR.f.o +.PHONY : src/SLICOT-Reference/src/SB04MR.o + +# target to build an object file +src/SLICOT-Reference/src/SB04MR.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MR.f.o +.PHONY : src/SLICOT-Reference/src/SB04MR.f.o + +src/SLICOT-Reference/src/SB04MR.i: src/SLICOT-Reference/src/SB04MR.f.i +.PHONY : src/SLICOT-Reference/src/SB04MR.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04MR.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MR.f.i +.PHONY : src/SLICOT-Reference/src/SB04MR.f.i + +src/SLICOT-Reference/src/SB04MR.s: src/SLICOT-Reference/src/SB04MR.f.s +.PHONY : src/SLICOT-Reference/src/SB04MR.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04MR.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MR.f.s +.PHONY : src/SLICOT-Reference/src/SB04MR.f.s + +src/SLICOT-Reference/src/SB04MU.o: src/SLICOT-Reference/src/SB04MU.f.o +.PHONY : src/SLICOT-Reference/src/SB04MU.o + +# target to build an object file +src/SLICOT-Reference/src/SB04MU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MU.f.o +.PHONY : src/SLICOT-Reference/src/SB04MU.f.o + +src/SLICOT-Reference/src/SB04MU.i: src/SLICOT-Reference/src/SB04MU.f.i +.PHONY : src/SLICOT-Reference/src/SB04MU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04MU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MU.f.i +.PHONY : src/SLICOT-Reference/src/SB04MU.f.i + +src/SLICOT-Reference/src/SB04MU.s: src/SLICOT-Reference/src/SB04MU.f.s +.PHONY : src/SLICOT-Reference/src/SB04MU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04MU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MU.f.s +.PHONY : src/SLICOT-Reference/src/SB04MU.f.s + +src/SLICOT-Reference/src/SB04MW.o: src/SLICOT-Reference/src/SB04MW.f.o +.PHONY : src/SLICOT-Reference/src/SB04MW.o + +# target to build an object file +src/SLICOT-Reference/src/SB04MW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MW.f.o +.PHONY : src/SLICOT-Reference/src/SB04MW.f.o + +src/SLICOT-Reference/src/SB04MW.i: src/SLICOT-Reference/src/SB04MW.f.i +.PHONY : src/SLICOT-Reference/src/SB04MW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04MW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MW.f.i +.PHONY : src/SLICOT-Reference/src/SB04MW.f.i + +src/SLICOT-Reference/src/SB04MW.s: src/SLICOT-Reference/src/SB04MW.f.s +.PHONY : src/SLICOT-Reference/src/SB04MW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04MW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MW.f.s +.PHONY : src/SLICOT-Reference/src/SB04MW.f.s + +src/SLICOT-Reference/src/SB04MY.o: src/SLICOT-Reference/src/SB04MY.f.o +.PHONY : src/SLICOT-Reference/src/SB04MY.o + +# target to build an object file +src/SLICOT-Reference/src/SB04MY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MY.f.o +.PHONY : src/SLICOT-Reference/src/SB04MY.f.o + +src/SLICOT-Reference/src/SB04MY.i: src/SLICOT-Reference/src/SB04MY.f.i +.PHONY : src/SLICOT-Reference/src/SB04MY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04MY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MY.f.i +.PHONY : src/SLICOT-Reference/src/SB04MY.f.i + +src/SLICOT-Reference/src/SB04MY.s: src/SLICOT-Reference/src/SB04MY.f.s +.PHONY : src/SLICOT-Reference/src/SB04MY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04MY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MY.f.s +.PHONY : src/SLICOT-Reference/src/SB04MY.f.s + +src/SLICOT-Reference/src/SB04ND.o: src/SLICOT-Reference/src/SB04ND.f.o +.PHONY : src/SLICOT-Reference/src/SB04ND.o + +# target to build an object file +src/SLICOT-Reference/src/SB04ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04ND.f.o +.PHONY : src/SLICOT-Reference/src/SB04ND.f.o + +src/SLICOT-Reference/src/SB04ND.i: src/SLICOT-Reference/src/SB04ND.f.i +.PHONY : src/SLICOT-Reference/src/SB04ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04ND.f.i +.PHONY : src/SLICOT-Reference/src/SB04ND.f.i + +src/SLICOT-Reference/src/SB04ND.s: src/SLICOT-Reference/src/SB04ND.f.s +.PHONY : src/SLICOT-Reference/src/SB04ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04ND.f.s +.PHONY : src/SLICOT-Reference/src/SB04ND.f.s + +src/SLICOT-Reference/src/SB04NV.o: src/SLICOT-Reference/src/SB04NV.f.o +.PHONY : src/SLICOT-Reference/src/SB04NV.o + +# target to build an object file +src/SLICOT-Reference/src/SB04NV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NV.f.o +.PHONY : src/SLICOT-Reference/src/SB04NV.f.o + +src/SLICOT-Reference/src/SB04NV.i: src/SLICOT-Reference/src/SB04NV.f.i +.PHONY : src/SLICOT-Reference/src/SB04NV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04NV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NV.f.i +.PHONY : src/SLICOT-Reference/src/SB04NV.f.i + +src/SLICOT-Reference/src/SB04NV.s: src/SLICOT-Reference/src/SB04NV.f.s +.PHONY : src/SLICOT-Reference/src/SB04NV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04NV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NV.f.s +.PHONY : src/SLICOT-Reference/src/SB04NV.f.s + +src/SLICOT-Reference/src/SB04NW.o: src/SLICOT-Reference/src/SB04NW.f.o +.PHONY : src/SLICOT-Reference/src/SB04NW.o + +# target to build an object file +src/SLICOT-Reference/src/SB04NW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NW.f.o +.PHONY : src/SLICOT-Reference/src/SB04NW.f.o + +src/SLICOT-Reference/src/SB04NW.i: src/SLICOT-Reference/src/SB04NW.f.i +.PHONY : src/SLICOT-Reference/src/SB04NW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04NW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NW.f.i +.PHONY : src/SLICOT-Reference/src/SB04NW.f.i + +src/SLICOT-Reference/src/SB04NW.s: src/SLICOT-Reference/src/SB04NW.f.s +.PHONY : src/SLICOT-Reference/src/SB04NW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04NW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NW.f.s +.PHONY : src/SLICOT-Reference/src/SB04NW.f.s + +src/SLICOT-Reference/src/SB04NX.o: src/SLICOT-Reference/src/SB04NX.f.o +.PHONY : src/SLICOT-Reference/src/SB04NX.o + +# target to build an object file +src/SLICOT-Reference/src/SB04NX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NX.f.o +.PHONY : src/SLICOT-Reference/src/SB04NX.f.o + +src/SLICOT-Reference/src/SB04NX.i: src/SLICOT-Reference/src/SB04NX.f.i +.PHONY : src/SLICOT-Reference/src/SB04NX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04NX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NX.f.i +.PHONY : src/SLICOT-Reference/src/SB04NX.f.i + +src/SLICOT-Reference/src/SB04NX.s: src/SLICOT-Reference/src/SB04NX.f.s +.PHONY : src/SLICOT-Reference/src/SB04NX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04NX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NX.f.s +.PHONY : src/SLICOT-Reference/src/SB04NX.f.s + +src/SLICOT-Reference/src/SB04NY.o: src/SLICOT-Reference/src/SB04NY.f.o +.PHONY : src/SLICOT-Reference/src/SB04NY.o + +# target to build an object file +src/SLICOT-Reference/src/SB04NY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NY.f.o +.PHONY : src/SLICOT-Reference/src/SB04NY.f.o + +src/SLICOT-Reference/src/SB04NY.i: src/SLICOT-Reference/src/SB04NY.f.i +.PHONY : src/SLICOT-Reference/src/SB04NY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04NY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NY.f.i +.PHONY : src/SLICOT-Reference/src/SB04NY.f.i + +src/SLICOT-Reference/src/SB04NY.s: src/SLICOT-Reference/src/SB04NY.f.s +.PHONY : src/SLICOT-Reference/src/SB04NY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04NY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NY.f.s +.PHONY : src/SLICOT-Reference/src/SB04NY.f.s + +src/SLICOT-Reference/src/SB04OD.o: src/SLICOT-Reference/src/SB04OD.f.o +.PHONY : src/SLICOT-Reference/src/SB04OD.o + +# target to build an object file +src/SLICOT-Reference/src/SB04OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04OD.f.o +.PHONY : src/SLICOT-Reference/src/SB04OD.f.o + +src/SLICOT-Reference/src/SB04OD.i: src/SLICOT-Reference/src/SB04OD.f.i +.PHONY : src/SLICOT-Reference/src/SB04OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04OD.f.i +.PHONY : src/SLICOT-Reference/src/SB04OD.f.i + +src/SLICOT-Reference/src/SB04OD.s: src/SLICOT-Reference/src/SB04OD.f.s +.PHONY : src/SLICOT-Reference/src/SB04OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04OD.f.s +.PHONY : src/SLICOT-Reference/src/SB04OD.f.s + +src/SLICOT-Reference/src/SB04OW.o: src/SLICOT-Reference/src/SB04OW.f.o +.PHONY : src/SLICOT-Reference/src/SB04OW.o + +# target to build an object file +src/SLICOT-Reference/src/SB04OW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04OW.f.o +.PHONY : src/SLICOT-Reference/src/SB04OW.f.o + +src/SLICOT-Reference/src/SB04OW.i: src/SLICOT-Reference/src/SB04OW.f.i +.PHONY : src/SLICOT-Reference/src/SB04OW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04OW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04OW.f.i +.PHONY : src/SLICOT-Reference/src/SB04OW.f.i + +src/SLICOT-Reference/src/SB04OW.s: src/SLICOT-Reference/src/SB04OW.f.s +.PHONY : src/SLICOT-Reference/src/SB04OW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04OW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04OW.f.s +.PHONY : src/SLICOT-Reference/src/SB04OW.f.s + +src/SLICOT-Reference/src/SB04PD.o: src/SLICOT-Reference/src/SB04PD.f.o +.PHONY : src/SLICOT-Reference/src/SB04PD.o + +# target to build an object file +src/SLICOT-Reference/src/SB04PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PD.f.o +.PHONY : src/SLICOT-Reference/src/SB04PD.f.o + +src/SLICOT-Reference/src/SB04PD.i: src/SLICOT-Reference/src/SB04PD.f.i +.PHONY : src/SLICOT-Reference/src/SB04PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PD.f.i +.PHONY : src/SLICOT-Reference/src/SB04PD.f.i + +src/SLICOT-Reference/src/SB04PD.s: src/SLICOT-Reference/src/SB04PD.f.s +.PHONY : src/SLICOT-Reference/src/SB04PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PD.f.s +.PHONY : src/SLICOT-Reference/src/SB04PD.f.s + +src/SLICOT-Reference/src/SB04PX.o: src/SLICOT-Reference/src/SB04PX.f.o +.PHONY : src/SLICOT-Reference/src/SB04PX.o + +# target to build an object file +src/SLICOT-Reference/src/SB04PX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PX.f.o +.PHONY : src/SLICOT-Reference/src/SB04PX.f.o + +src/SLICOT-Reference/src/SB04PX.i: src/SLICOT-Reference/src/SB04PX.f.i +.PHONY : src/SLICOT-Reference/src/SB04PX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04PX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PX.f.i +.PHONY : src/SLICOT-Reference/src/SB04PX.f.i + +src/SLICOT-Reference/src/SB04PX.s: src/SLICOT-Reference/src/SB04PX.f.s +.PHONY : src/SLICOT-Reference/src/SB04PX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04PX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PX.f.s +.PHONY : src/SLICOT-Reference/src/SB04PX.f.s + +src/SLICOT-Reference/src/SB04PY.o: src/SLICOT-Reference/src/SB04PY.f.o +.PHONY : src/SLICOT-Reference/src/SB04PY.o + +# target to build an object file +src/SLICOT-Reference/src/SB04PY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PY.f.o +.PHONY : src/SLICOT-Reference/src/SB04PY.f.o + +src/SLICOT-Reference/src/SB04PY.i: src/SLICOT-Reference/src/SB04PY.f.i +.PHONY : src/SLICOT-Reference/src/SB04PY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04PY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PY.f.i +.PHONY : src/SLICOT-Reference/src/SB04PY.f.i + +src/SLICOT-Reference/src/SB04PY.s: src/SLICOT-Reference/src/SB04PY.f.s +.PHONY : src/SLICOT-Reference/src/SB04PY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04PY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PY.f.s +.PHONY : src/SLICOT-Reference/src/SB04PY.f.s + +src/SLICOT-Reference/src/SB04QD.o: src/SLICOT-Reference/src/SB04QD.f.o +.PHONY : src/SLICOT-Reference/src/SB04QD.o + +# target to build an object file +src/SLICOT-Reference/src/SB04QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QD.f.o +.PHONY : src/SLICOT-Reference/src/SB04QD.f.o + +src/SLICOT-Reference/src/SB04QD.i: src/SLICOT-Reference/src/SB04QD.f.i +.PHONY : src/SLICOT-Reference/src/SB04QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QD.f.i +.PHONY : src/SLICOT-Reference/src/SB04QD.f.i + +src/SLICOT-Reference/src/SB04QD.s: src/SLICOT-Reference/src/SB04QD.f.s +.PHONY : src/SLICOT-Reference/src/SB04QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QD.f.s +.PHONY : src/SLICOT-Reference/src/SB04QD.f.s + +src/SLICOT-Reference/src/SB04QR.o: src/SLICOT-Reference/src/SB04QR.f.o +.PHONY : src/SLICOT-Reference/src/SB04QR.o + +# target to build an object file +src/SLICOT-Reference/src/SB04QR.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QR.f.o +.PHONY : src/SLICOT-Reference/src/SB04QR.f.o + +src/SLICOT-Reference/src/SB04QR.i: src/SLICOT-Reference/src/SB04QR.f.i +.PHONY : src/SLICOT-Reference/src/SB04QR.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04QR.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QR.f.i +.PHONY : src/SLICOT-Reference/src/SB04QR.f.i + +src/SLICOT-Reference/src/SB04QR.s: src/SLICOT-Reference/src/SB04QR.f.s +.PHONY : src/SLICOT-Reference/src/SB04QR.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04QR.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QR.f.s +.PHONY : src/SLICOT-Reference/src/SB04QR.f.s + +src/SLICOT-Reference/src/SB04QU.o: src/SLICOT-Reference/src/SB04QU.f.o +.PHONY : src/SLICOT-Reference/src/SB04QU.o + +# target to build an object file +src/SLICOT-Reference/src/SB04QU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QU.f.o +.PHONY : src/SLICOT-Reference/src/SB04QU.f.o + +src/SLICOT-Reference/src/SB04QU.i: src/SLICOT-Reference/src/SB04QU.f.i +.PHONY : src/SLICOT-Reference/src/SB04QU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04QU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QU.f.i +.PHONY : src/SLICOT-Reference/src/SB04QU.f.i + +src/SLICOT-Reference/src/SB04QU.s: src/SLICOT-Reference/src/SB04QU.f.s +.PHONY : src/SLICOT-Reference/src/SB04QU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04QU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QU.f.s +.PHONY : src/SLICOT-Reference/src/SB04QU.f.s + +src/SLICOT-Reference/src/SB04QY.o: src/SLICOT-Reference/src/SB04QY.f.o +.PHONY : src/SLICOT-Reference/src/SB04QY.o + +# target to build an object file +src/SLICOT-Reference/src/SB04QY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QY.f.o +.PHONY : src/SLICOT-Reference/src/SB04QY.f.o + +src/SLICOT-Reference/src/SB04QY.i: src/SLICOT-Reference/src/SB04QY.f.i +.PHONY : src/SLICOT-Reference/src/SB04QY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04QY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QY.f.i +.PHONY : src/SLICOT-Reference/src/SB04QY.f.i + +src/SLICOT-Reference/src/SB04QY.s: src/SLICOT-Reference/src/SB04QY.f.s +.PHONY : src/SLICOT-Reference/src/SB04QY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04QY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QY.f.s +.PHONY : src/SLICOT-Reference/src/SB04QY.f.s + +src/SLICOT-Reference/src/SB04RD.o: src/SLICOT-Reference/src/SB04RD.f.o +.PHONY : src/SLICOT-Reference/src/SB04RD.o + +# target to build an object file +src/SLICOT-Reference/src/SB04RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RD.f.o +.PHONY : src/SLICOT-Reference/src/SB04RD.f.o + +src/SLICOT-Reference/src/SB04RD.i: src/SLICOT-Reference/src/SB04RD.f.i +.PHONY : src/SLICOT-Reference/src/SB04RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RD.f.i +.PHONY : src/SLICOT-Reference/src/SB04RD.f.i + +src/SLICOT-Reference/src/SB04RD.s: src/SLICOT-Reference/src/SB04RD.f.s +.PHONY : src/SLICOT-Reference/src/SB04RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RD.f.s +.PHONY : src/SLICOT-Reference/src/SB04RD.f.s + +src/SLICOT-Reference/src/SB04RV.o: src/SLICOT-Reference/src/SB04RV.f.o +.PHONY : src/SLICOT-Reference/src/SB04RV.o + +# target to build an object file +src/SLICOT-Reference/src/SB04RV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RV.f.o +.PHONY : src/SLICOT-Reference/src/SB04RV.f.o + +src/SLICOT-Reference/src/SB04RV.i: src/SLICOT-Reference/src/SB04RV.f.i +.PHONY : src/SLICOT-Reference/src/SB04RV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04RV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RV.f.i +.PHONY : src/SLICOT-Reference/src/SB04RV.f.i + +src/SLICOT-Reference/src/SB04RV.s: src/SLICOT-Reference/src/SB04RV.f.s +.PHONY : src/SLICOT-Reference/src/SB04RV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04RV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RV.f.s +.PHONY : src/SLICOT-Reference/src/SB04RV.f.s + +src/SLICOT-Reference/src/SB04RW.o: src/SLICOT-Reference/src/SB04RW.f.o +.PHONY : src/SLICOT-Reference/src/SB04RW.o + +# target to build an object file +src/SLICOT-Reference/src/SB04RW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RW.f.o +.PHONY : src/SLICOT-Reference/src/SB04RW.f.o + +src/SLICOT-Reference/src/SB04RW.i: src/SLICOT-Reference/src/SB04RW.f.i +.PHONY : src/SLICOT-Reference/src/SB04RW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04RW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RW.f.i +.PHONY : src/SLICOT-Reference/src/SB04RW.f.i + +src/SLICOT-Reference/src/SB04RW.s: src/SLICOT-Reference/src/SB04RW.f.s +.PHONY : src/SLICOT-Reference/src/SB04RW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04RW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RW.f.s +.PHONY : src/SLICOT-Reference/src/SB04RW.f.s + +src/SLICOT-Reference/src/SB04RX.o: src/SLICOT-Reference/src/SB04RX.f.o +.PHONY : src/SLICOT-Reference/src/SB04RX.o + +# target to build an object file +src/SLICOT-Reference/src/SB04RX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RX.f.o +.PHONY : src/SLICOT-Reference/src/SB04RX.f.o + +src/SLICOT-Reference/src/SB04RX.i: src/SLICOT-Reference/src/SB04RX.f.i +.PHONY : src/SLICOT-Reference/src/SB04RX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04RX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RX.f.i +.PHONY : src/SLICOT-Reference/src/SB04RX.f.i + +src/SLICOT-Reference/src/SB04RX.s: src/SLICOT-Reference/src/SB04RX.f.s +.PHONY : src/SLICOT-Reference/src/SB04RX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04RX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RX.f.s +.PHONY : src/SLICOT-Reference/src/SB04RX.f.s + +src/SLICOT-Reference/src/SB04RY.o: src/SLICOT-Reference/src/SB04RY.f.o +.PHONY : src/SLICOT-Reference/src/SB04RY.o + +# target to build an object file +src/SLICOT-Reference/src/SB04RY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RY.f.o +.PHONY : src/SLICOT-Reference/src/SB04RY.f.o + +src/SLICOT-Reference/src/SB04RY.i: src/SLICOT-Reference/src/SB04RY.f.i +.PHONY : src/SLICOT-Reference/src/SB04RY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB04RY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RY.f.i +.PHONY : src/SLICOT-Reference/src/SB04RY.f.i + +src/SLICOT-Reference/src/SB04RY.s: src/SLICOT-Reference/src/SB04RY.f.s +.PHONY : src/SLICOT-Reference/src/SB04RY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB04RY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RY.f.s +.PHONY : src/SLICOT-Reference/src/SB04RY.f.s + +src/SLICOT-Reference/src/SB06ND.o: src/SLICOT-Reference/src/SB06ND.f.o +.PHONY : src/SLICOT-Reference/src/SB06ND.o + +# target to build an object file +src/SLICOT-Reference/src/SB06ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB06ND.f.o +.PHONY : src/SLICOT-Reference/src/SB06ND.f.o + +src/SLICOT-Reference/src/SB06ND.i: src/SLICOT-Reference/src/SB06ND.f.i +.PHONY : src/SLICOT-Reference/src/SB06ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB06ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB06ND.f.i +.PHONY : src/SLICOT-Reference/src/SB06ND.f.i + +src/SLICOT-Reference/src/SB06ND.s: src/SLICOT-Reference/src/SB06ND.f.s +.PHONY : src/SLICOT-Reference/src/SB06ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB06ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB06ND.f.s +.PHONY : src/SLICOT-Reference/src/SB06ND.f.s + +src/SLICOT-Reference/src/SB08CD.o: src/SLICOT-Reference/src/SB08CD.f.o +.PHONY : src/SLICOT-Reference/src/SB08CD.o + +# target to build an object file +src/SLICOT-Reference/src/SB08CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08CD.f.o +.PHONY : src/SLICOT-Reference/src/SB08CD.f.o + +src/SLICOT-Reference/src/SB08CD.i: src/SLICOT-Reference/src/SB08CD.f.i +.PHONY : src/SLICOT-Reference/src/SB08CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08CD.f.i +.PHONY : src/SLICOT-Reference/src/SB08CD.f.i + +src/SLICOT-Reference/src/SB08CD.s: src/SLICOT-Reference/src/SB08CD.f.s +.PHONY : src/SLICOT-Reference/src/SB08CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08CD.f.s +.PHONY : src/SLICOT-Reference/src/SB08CD.f.s + +src/SLICOT-Reference/src/SB08DD.o: src/SLICOT-Reference/src/SB08DD.f.o +.PHONY : src/SLICOT-Reference/src/SB08DD.o + +# target to build an object file +src/SLICOT-Reference/src/SB08DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08DD.f.o +.PHONY : src/SLICOT-Reference/src/SB08DD.f.o + +src/SLICOT-Reference/src/SB08DD.i: src/SLICOT-Reference/src/SB08DD.f.i +.PHONY : src/SLICOT-Reference/src/SB08DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08DD.f.i +.PHONY : src/SLICOT-Reference/src/SB08DD.f.i + +src/SLICOT-Reference/src/SB08DD.s: src/SLICOT-Reference/src/SB08DD.f.s +.PHONY : src/SLICOT-Reference/src/SB08DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08DD.f.s +.PHONY : src/SLICOT-Reference/src/SB08DD.f.s + +src/SLICOT-Reference/src/SB08ED.o: src/SLICOT-Reference/src/SB08ED.f.o +.PHONY : src/SLICOT-Reference/src/SB08ED.o + +# target to build an object file +src/SLICOT-Reference/src/SB08ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08ED.f.o +.PHONY : src/SLICOT-Reference/src/SB08ED.f.o + +src/SLICOT-Reference/src/SB08ED.i: src/SLICOT-Reference/src/SB08ED.f.i +.PHONY : src/SLICOT-Reference/src/SB08ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08ED.f.i +.PHONY : src/SLICOT-Reference/src/SB08ED.f.i + +src/SLICOT-Reference/src/SB08ED.s: src/SLICOT-Reference/src/SB08ED.f.s +.PHONY : src/SLICOT-Reference/src/SB08ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08ED.f.s +.PHONY : src/SLICOT-Reference/src/SB08ED.f.s + +src/SLICOT-Reference/src/SB08FD.o: src/SLICOT-Reference/src/SB08FD.f.o +.PHONY : src/SLICOT-Reference/src/SB08FD.o + +# target to build an object file +src/SLICOT-Reference/src/SB08FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08FD.f.o +.PHONY : src/SLICOT-Reference/src/SB08FD.f.o + +src/SLICOT-Reference/src/SB08FD.i: src/SLICOT-Reference/src/SB08FD.f.i +.PHONY : src/SLICOT-Reference/src/SB08FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08FD.f.i +.PHONY : src/SLICOT-Reference/src/SB08FD.f.i + +src/SLICOT-Reference/src/SB08FD.s: src/SLICOT-Reference/src/SB08FD.f.s +.PHONY : src/SLICOT-Reference/src/SB08FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08FD.f.s +.PHONY : src/SLICOT-Reference/src/SB08FD.f.s + +src/SLICOT-Reference/src/SB08GD.o: src/SLICOT-Reference/src/SB08GD.f.o +.PHONY : src/SLICOT-Reference/src/SB08GD.o + +# target to build an object file +src/SLICOT-Reference/src/SB08GD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08GD.f.o +.PHONY : src/SLICOT-Reference/src/SB08GD.f.o + +src/SLICOT-Reference/src/SB08GD.i: src/SLICOT-Reference/src/SB08GD.f.i +.PHONY : src/SLICOT-Reference/src/SB08GD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08GD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08GD.f.i +.PHONY : src/SLICOT-Reference/src/SB08GD.f.i + +src/SLICOT-Reference/src/SB08GD.s: src/SLICOT-Reference/src/SB08GD.f.s +.PHONY : src/SLICOT-Reference/src/SB08GD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08GD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08GD.f.s +.PHONY : src/SLICOT-Reference/src/SB08GD.f.s + +src/SLICOT-Reference/src/SB08HD.o: src/SLICOT-Reference/src/SB08HD.f.o +.PHONY : src/SLICOT-Reference/src/SB08HD.o + +# target to build an object file +src/SLICOT-Reference/src/SB08HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08HD.f.o +.PHONY : src/SLICOT-Reference/src/SB08HD.f.o + +src/SLICOT-Reference/src/SB08HD.i: src/SLICOT-Reference/src/SB08HD.f.i +.PHONY : src/SLICOT-Reference/src/SB08HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08HD.f.i +.PHONY : src/SLICOT-Reference/src/SB08HD.f.i + +src/SLICOT-Reference/src/SB08HD.s: src/SLICOT-Reference/src/SB08HD.f.s +.PHONY : src/SLICOT-Reference/src/SB08HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08HD.f.s +.PHONY : src/SLICOT-Reference/src/SB08HD.f.s + +src/SLICOT-Reference/src/SB08MD.o: src/SLICOT-Reference/src/SB08MD.f.o +.PHONY : src/SLICOT-Reference/src/SB08MD.o + +# target to build an object file +src/SLICOT-Reference/src/SB08MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08MD.f.o +.PHONY : src/SLICOT-Reference/src/SB08MD.f.o + +src/SLICOT-Reference/src/SB08MD.i: src/SLICOT-Reference/src/SB08MD.f.i +.PHONY : src/SLICOT-Reference/src/SB08MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08MD.f.i +.PHONY : src/SLICOT-Reference/src/SB08MD.f.i + +src/SLICOT-Reference/src/SB08MD.s: src/SLICOT-Reference/src/SB08MD.f.s +.PHONY : src/SLICOT-Reference/src/SB08MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08MD.f.s +.PHONY : src/SLICOT-Reference/src/SB08MD.f.s + +src/SLICOT-Reference/src/SB08MY.o: src/SLICOT-Reference/src/SB08MY.f.o +.PHONY : src/SLICOT-Reference/src/SB08MY.o + +# target to build an object file +src/SLICOT-Reference/src/SB08MY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08MY.f.o +.PHONY : src/SLICOT-Reference/src/SB08MY.f.o + +src/SLICOT-Reference/src/SB08MY.i: src/SLICOT-Reference/src/SB08MY.f.i +.PHONY : src/SLICOT-Reference/src/SB08MY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08MY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08MY.f.i +.PHONY : src/SLICOT-Reference/src/SB08MY.f.i + +src/SLICOT-Reference/src/SB08MY.s: src/SLICOT-Reference/src/SB08MY.f.s +.PHONY : src/SLICOT-Reference/src/SB08MY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08MY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08MY.f.s +.PHONY : src/SLICOT-Reference/src/SB08MY.f.s + +src/SLICOT-Reference/src/SB08ND.o: src/SLICOT-Reference/src/SB08ND.f.o +.PHONY : src/SLICOT-Reference/src/SB08ND.o + +# target to build an object file +src/SLICOT-Reference/src/SB08ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08ND.f.o +.PHONY : src/SLICOT-Reference/src/SB08ND.f.o + +src/SLICOT-Reference/src/SB08ND.i: src/SLICOT-Reference/src/SB08ND.f.i +.PHONY : src/SLICOT-Reference/src/SB08ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08ND.f.i +.PHONY : src/SLICOT-Reference/src/SB08ND.f.i + +src/SLICOT-Reference/src/SB08ND.s: src/SLICOT-Reference/src/SB08ND.f.s +.PHONY : src/SLICOT-Reference/src/SB08ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08ND.f.s +.PHONY : src/SLICOT-Reference/src/SB08ND.f.s + +src/SLICOT-Reference/src/SB08NY.o: src/SLICOT-Reference/src/SB08NY.f.o +.PHONY : src/SLICOT-Reference/src/SB08NY.o + +# target to build an object file +src/SLICOT-Reference/src/SB08NY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08NY.f.o +.PHONY : src/SLICOT-Reference/src/SB08NY.f.o + +src/SLICOT-Reference/src/SB08NY.i: src/SLICOT-Reference/src/SB08NY.f.i +.PHONY : src/SLICOT-Reference/src/SB08NY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB08NY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08NY.f.i +.PHONY : src/SLICOT-Reference/src/SB08NY.f.i + +src/SLICOT-Reference/src/SB08NY.s: src/SLICOT-Reference/src/SB08NY.f.s +.PHONY : src/SLICOT-Reference/src/SB08NY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB08NY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08NY.f.s +.PHONY : src/SLICOT-Reference/src/SB08NY.f.s + +src/SLICOT-Reference/src/SB09MD.o: src/SLICOT-Reference/src/SB09MD.f.o +.PHONY : src/SLICOT-Reference/src/SB09MD.o + +# target to build an object file +src/SLICOT-Reference/src/SB09MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB09MD.f.o +.PHONY : src/SLICOT-Reference/src/SB09MD.f.o + +src/SLICOT-Reference/src/SB09MD.i: src/SLICOT-Reference/src/SB09MD.f.i +.PHONY : src/SLICOT-Reference/src/SB09MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB09MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB09MD.f.i +.PHONY : src/SLICOT-Reference/src/SB09MD.f.i + +src/SLICOT-Reference/src/SB09MD.s: src/SLICOT-Reference/src/SB09MD.f.s +.PHONY : src/SLICOT-Reference/src/SB09MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB09MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB09MD.f.s +.PHONY : src/SLICOT-Reference/src/SB09MD.f.s + +src/SLICOT-Reference/src/SB10AD.o: src/SLICOT-Reference/src/SB10AD.f.o +.PHONY : src/SLICOT-Reference/src/SB10AD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10AD.f.o +.PHONY : src/SLICOT-Reference/src/SB10AD.f.o + +src/SLICOT-Reference/src/SB10AD.i: src/SLICOT-Reference/src/SB10AD.f.i +.PHONY : src/SLICOT-Reference/src/SB10AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10AD.f.i +.PHONY : src/SLICOT-Reference/src/SB10AD.f.i + +src/SLICOT-Reference/src/SB10AD.s: src/SLICOT-Reference/src/SB10AD.f.s +.PHONY : src/SLICOT-Reference/src/SB10AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10AD.f.s +.PHONY : src/SLICOT-Reference/src/SB10AD.f.s + +src/SLICOT-Reference/src/SB10DD.o: src/SLICOT-Reference/src/SB10DD.f.o +.PHONY : src/SLICOT-Reference/src/SB10DD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10DD.f.o +.PHONY : src/SLICOT-Reference/src/SB10DD.f.o + +src/SLICOT-Reference/src/SB10DD.i: src/SLICOT-Reference/src/SB10DD.f.i +.PHONY : src/SLICOT-Reference/src/SB10DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10DD.f.i +.PHONY : src/SLICOT-Reference/src/SB10DD.f.i + +src/SLICOT-Reference/src/SB10DD.s: src/SLICOT-Reference/src/SB10DD.f.s +.PHONY : src/SLICOT-Reference/src/SB10DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10DD.f.s +.PHONY : src/SLICOT-Reference/src/SB10DD.f.s + +src/SLICOT-Reference/src/SB10ED.o: src/SLICOT-Reference/src/SB10ED.f.o +.PHONY : src/SLICOT-Reference/src/SB10ED.o + +# target to build an object file +src/SLICOT-Reference/src/SB10ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ED.f.o +.PHONY : src/SLICOT-Reference/src/SB10ED.f.o + +src/SLICOT-Reference/src/SB10ED.i: src/SLICOT-Reference/src/SB10ED.f.i +.PHONY : src/SLICOT-Reference/src/SB10ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ED.f.i +.PHONY : src/SLICOT-Reference/src/SB10ED.f.i + +src/SLICOT-Reference/src/SB10ED.s: src/SLICOT-Reference/src/SB10ED.f.s +.PHONY : src/SLICOT-Reference/src/SB10ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ED.f.s +.PHONY : src/SLICOT-Reference/src/SB10ED.f.s + +src/SLICOT-Reference/src/SB10FD.o: src/SLICOT-Reference/src/SB10FD.f.o +.PHONY : src/SLICOT-Reference/src/SB10FD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10FD.f.o +.PHONY : src/SLICOT-Reference/src/SB10FD.f.o + +src/SLICOT-Reference/src/SB10FD.i: src/SLICOT-Reference/src/SB10FD.f.i +.PHONY : src/SLICOT-Reference/src/SB10FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10FD.f.i +.PHONY : src/SLICOT-Reference/src/SB10FD.f.i + +src/SLICOT-Reference/src/SB10FD.s: src/SLICOT-Reference/src/SB10FD.f.s +.PHONY : src/SLICOT-Reference/src/SB10FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10FD.f.s +.PHONY : src/SLICOT-Reference/src/SB10FD.f.s + +src/SLICOT-Reference/src/SB10HD.o: src/SLICOT-Reference/src/SB10HD.f.o +.PHONY : src/SLICOT-Reference/src/SB10HD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10HD.f.o +.PHONY : src/SLICOT-Reference/src/SB10HD.f.o + +src/SLICOT-Reference/src/SB10HD.i: src/SLICOT-Reference/src/SB10HD.f.i +.PHONY : src/SLICOT-Reference/src/SB10HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10HD.f.i +.PHONY : src/SLICOT-Reference/src/SB10HD.f.i + +src/SLICOT-Reference/src/SB10HD.s: src/SLICOT-Reference/src/SB10HD.f.s +.PHONY : src/SLICOT-Reference/src/SB10HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10HD.f.s +.PHONY : src/SLICOT-Reference/src/SB10HD.f.s + +src/SLICOT-Reference/src/SB10ID.o: src/SLICOT-Reference/src/SB10ID.f.o +.PHONY : src/SLICOT-Reference/src/SB10ID.o + +# target to build an object file +src/SLICOT-Reference/src/SB10ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ID.f.o +.PHONY : src/SLICOT-Reference/src/SB10ID.f.o + +src/SLICOT-Reference/src/SB10ID.i: src/SLICOT-Reference/src/SB10ID.f.i +.PHONY : src/SLICOT-Reference/src/SB10ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ID.f.i +.PHONY : src/SLICOT-Reference/src/SB10ID.f.i + +src/SLICOT-Reference/src/SB10ID.s: src/SLICOT-Reference/src/SB10ID.f.s +.PHONY : src/SLICOT-Reference/src/SB10ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ID.f.s +.PHONY : src/SLICOT-Reference/src/SB10ID.f.s + +src/SLICOT-Reference/src/SB10JD.o: src/SLICOT-Reference/src/SB10JD.f.o +.PHONY : src/SLICOT-Reference/src/SB10JD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10JD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10JD.f.o +.PHONY : src/SLICOT-Reference/src/SB10JD.f.o + +src/SLICOT-Reference/src/SB10JD.i: src/SLICOT-Reference/src/SB10JD.f.i +.PHONY : src/SLICOT-Reference/src/SB10JD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10JD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10JD.f.i +.PHONY : src/SLICOT-Reference/src/SB10JD.f.i + +src/SLICOT-Reference/src/SB10JD.s: src/SLICOT-Reference/src/SB10JD.f.s +.PHONY : src/SLICOT-Reference/src/SB10JD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10JD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10JD.f.s +.PHONY : src/SLICOT-Reference/src/SB10JD.f.s + +src/SLICOT-Reference/src/SB10KD.o: src/SLICOT-Reference/src/SB10KD.f.o +.PHONY : src/SLICOT-Reference/src/SB10KD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10KD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10KD.f.o +.PHONY : src/SLICOT-Reference/src/SB10KD.f.o + +src/SLICOT-Reference/src/SB10KD.i: src/SLICOT-Reference/src/SB10KD.f.i +.PHONY : src/SLICOT-Reference/src/SB10KD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10KD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10KD.f.i +.PHONY : src/SLICOT-Reference/src/SB10KD.f.i + +src/SLICOT-Reference/src/SB10KD.s: src/SLICOT-Reference/src/SB10KD.f.s +.PHONY : src/SLICOT-Reference/src/SB10KD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10KD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10KD.f.s +.PHONY : src/SLICOT-Reference/src/SB10KD.f.s + +src/SLICOT-Reference/src/SB10LD.o: src/SLICOT-Reference/src/SB10LD.f.o +.PHONY : src/SLICOT-Reference/src/SB10LD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10LD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10LD.f.o +.PHONY : src/SLICOT-Reference/src/SB10LD.f.o + +src/SLICOT-Reference/src/SB10LD.i: src/SLICOT-Reference/src/SB10LD.f.i +.PHONY : src/SLICOT-Reference/src/SB10LD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10LD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10LD.f.i +.PHONY : src/SLICOT-Reference/src/SB10LD.f.i + +src/SLICOT-Reference/src/SB10LD.s: src/SLICOT-Reference/src/SB10LD.f.s +.PHONY : src/SLICOT-Reference/src/SB10LD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10LD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10LD.f.s +.PHONY : src/SLICOT-Reference/src/SB10LD.f.s + +src/SLICOT-Reference/src/SB10MD.o: src/SLICOT-Reference/src/SB10MD.f.o +.PHONY : src/SLICOT-Reference/src/SB10MD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10MD.f.o +.PHONY : src/SLICOT-Reference/src/SB10MD.f.o + +src/SLICOT-Reference/src/SB10MD.i: src/SLICOT-Reference/src/SB10MD.f.i +.PHONY : src/SLICOT-Reference/src/SB10MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10MD.f.i +.PHONY : src/SLICOT-Reference/src/SB10MD.f.i + +src/SLICOT-Reference/src/SB10MD.s: src/SLICOT-Reference/src/SB10MD.f.s +.PHONY : src/SLICOT-Reference/src/SB10MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10MD.f.s +.PHONY : src/SLICOT-Reference/src/SB10MD.f.s + +src/SLICOT-Reference/src/SB10PD.o: src/SLICOT-Reference/src/SB10PD.f.o +.PHONY : src/SLICOT-Reference/src/SB10PD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10PD.f.o +.PHONY : src/SLICOT-Reference/src/SB10PD.f.o + +src/SLICOT-Reference/src/SB10PD.i: src/SLICOT-Reference/src/SB10PD.f.i +.PHONY : src/SLICOT-Reference/src/SB10PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10PD.f.i +.PHONY : src/SLICOT-Reference/src/SB10PD.f.i + +src/SLICOT-Reference/src/SB10PD.s: src/SLICOT-Reference/src/SB10PD.f.s +.PHONY : src/SLICOT-Reference/src/SB10PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10PD.f.s +.PHONY : src/SLICOT-Reference/src/SB10PD.f.s + +src/SLICOT-Reference/src/SB10QD.o: src/SLICOT-Reference/src/SB10QD.f.o +.PHONY : src/SLICOT-Reference/src/SB10QD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10QD.f.o +.PHONY : src/SLICOT-Reference/src/SB10QD.f.o + +src/SLICOT-Reference/src/SB10QD.i: src/SLICOT-Reference/src/SB10QD.f.i +.PHONY : src/SLICOT-Reference/src/SB10QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10QD.f.i +.PHONY : src/SLICOT-Reference/src/SB10QD.f.i + +src/SLICOT-Reference/src/SB10QD.s: src/SLICOT-Reference/src/SB10QD.f.s +.PHONY : src/SLICOT-Reference/src/SB10QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10QD.f.s +.PHONY : src/SLICOT-Reference/src/SB10QD.f.s + +src/SLICOT-Reference/src/SB10RD.o: src/SLICOT-Reference/src/SB10RD.f.o +.PHONY : src/SLICOT-Reference/src/SB10RD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10RD.f.o +.PHONY : src/SLICOT-Reference/src/SB10RD.f.o + +src/SLICOT-Reference/src/SB10RD.i: src/SLICOT-Reference/src/SB10RD.f.i +.PHONY : src/SLICOT-Reference/src/SB10RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10RD.f.i +.PHONY : src/SLICOT-Reference/src/SB10RD.f.i + +src/SLICOT-Reference/src/SB10RD.s: src/SLICOT-Reference/src/SB10RD.f.s +.PHONY : src/SLICOT-Reference/src/SB10RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10RD.f.s +.PHONY : src/SLICOT-Reference/src/SB10RD.f.s + +src/SLICOT-Reference/src/SB10SD.o: src/SLICOT-Reference/src/SB10SD.f.o +.PHONY : src/SLICOT-Reference/src/SB10SD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10SD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10SD.f.o +.PHONY : src/SLICOT-Reference/src/SB10SD.f.o + +src/SLICOT-Reference/src/SB10SD.i: src/SLICOT-Reference/src/SB10SD.f.i +.PHONY : src/SLICOT-Reference/src/SB10SD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10SD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10SD.f.i +.PHONY : src/SLICOT-Reference/src/SB10SD.f.i + +src/SLICOT-Reference/src/SB10SD.s: src/SLICOT-Reference/src/SB10SD.f.s +.PHONY : src/SLICOT-Reference/src/SB10SD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10SD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10SD.f.s +.PHONY : src/SLICOT-Reference/src/SB10SD.f.s + +src/SLICOT-Reference/src/SB10TD.o: src/SLICOT-Reference/src/SB10TD.f.o +.PHONY : src/SLICOT-Reference/src/SB10TD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10TD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10TD.f.o +.PHONY : src/SLICOT-Reference/src/SB10TD.f.o + +src/SLICOT-Reference/src/SB10TD.i: src/SLICOT-Reference/src/SB10TD.f.i +.PHONY : src/SLICOT-Reference/src/SB10TD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10TD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10TD.f.i +.PHONY : src/SLICOT-Reference/src/SB10TD.f.i + +src/SLICOT-Reference/src/SB10TD.s: src/SLICOT-Reference/src/SB10TD.f.s +.PHONY : src/SLICOT-Reference/src/SB10TD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10TD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10TD.f.s +.PHONY : src/SLICOT-Reference/src/SB10TD.f.s + +src/SLICOT-Reference/src/SB10UD.o: src/SLICOT-Reference/src/SB10UD.f.o +.PHONY : src/SLICOT-Reference/src/SB10UD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10UD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10UD.f.o +.PHONY : src/SLICOT-Reference/src/SB10UD.f.o + +src/SLICOT-Reference/src/SB10UD.i: src/SLICOT-Reference/src/SB10UD.f.i +.PHONY : src/SLICOT-Reference/src/SB10UD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10UD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10UD.f.i +.PHONY : src/SLICOT-Reference/src/SB10UD.f.i + +src/SLICOT-Reference/src/SB10UD.s: src/SLICOT-Reference/src/SB10UD.f.s +.PHONY : src/SLICOT-Reference/src/SB10UD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10UD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10UD.f.s +.PHONY : src/SLICOT-Reference/src/SB10UD.f.s + +src/SLICOT-Reference/src/SB10VD.o: src/SLICOT-Reference/src/SB10VD.f.o +.PHONY : src/SLICOT-Reference/src/SB10VD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10VD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10VD.f.o +.PHONY : src/SLICOT-Reference/src/SB10VD.f.o + +src/SLICOT-Reference/src/SB10VD.i: src/SLICOT-Reference/src/SB10VD.f.i +.PHONY : src/SLICOT-Reference/src/SB10VD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10VD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10VD.f.i +.PHONY : src/SLICOT-Reference/src/SB10VD.f.i + +src/SLICOT-Reference/src/SB10VD.s: src/SLICOT-Reference/src/SB10VD.f.s +.PHONY : src/SLICOT-Reference/src/SB10VD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10VD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10VD.f.s +.PHONY : src/SLICOT-Reference/src/SB10VD.f.s + +src/SLICOT-Reference/src/SB10WD.o: src/SLICOT-Reference/src/SB10WD.f.o +.PHONY : src/SLICOT-Reference/src/SB10WD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10WD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10WD.f.o +.PHONY : src/SLICOT-Reference/src/SB10WD.f.o + +src/SLICOT-Reference/src/SB10WD.i: src/SLICOT-Reference/src/SB10WD.f.i +.PHONY : src/SLICOT-Reference/src/SB10WD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10WD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10WD.f.i +.PHONY : src/SLICOT-Reference/src/SB10WD.f.i + +src/SLICOT-Reference/src/SB10WD.s: src/SLICOT-Reference/src/SB10WD.f.s +.PHONY : src/SLICOT-Reference/src/SB10WD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10WD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10WD.f.s +.PHONY : src/SLICOT-Reference/src/SB10WD.f.s + +src/SLICOT-Reference/src/SB10YD.o: src/SLICOT-Reference/src/SB10YD.f.o +.PHONY : src/SLICOT-Reference/src/SB10YD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10YD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10YD.f.o +.PHONY : src/SLICOT-Reference/src/SB10YD.f.o + +src/SLICOT-Reference/src/SB10YD.i: src/SLICOT-Reference/src/SB10YD.f.i +.PHONY : src/SLICOT-Reference/src/SB10YD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10YD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10YD.f.i +.PHONY : src/SLICOT-Reference/src/SB10YD.f.i + +src/SLICOT-Reference/src/SB10YD.s: src/SLICOT-Reference/src/SB10YD.f.s +.PHONY : src/SLICOT-Reference/src/SB10YD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10YD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10YD.f.s +.PHONY : src/SLICOT-Reference/src/SB10YD.f.s + +src/SLICOT-Reference/src/SB10ZD.o: src/SLICOT-Reference/src/SB10ZD.f.o +.PHONY : src/SLICOT-Reference/src/SB10ZD.o + +# target to build an object file +src/SLICOT-Reference/src/SB10ZD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ZD.f.o +.PHONY : src/SLICOT-Reference/src/SB10ZD.f.o + +src/SLICOT-Reference/src/SB10ZD.i: src/SLICOT-Reference/src/SB10ZD.f.i +.PHONY : src/SLICOT-Reference/src/SB10ZD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10ZD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ZD.f.i +.PHONY : src/SLICOT-Reference/src/SB10ZD.f.i + +src/SLICOT-Reference/src/SB10ZD.s: src/SLICOT-Reference/src/SB10ZD.f.s +.PHONY : src/SLICOT-Reference/src/SB10ZD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10ZD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ZD.f.s +.PHONY : src/SLICOT-Reference/src/SB10ZD.f.s + +src/SLICOT-Reference/src/SB10ZP.o: src/SLICOT-Reference/src/SB10ZP.f.o +.PHONY : src/SLICOT-Reference/src/SB10ZP.o + +# target to build an object file +src/SLICOT-Reference/src/SB10ZP.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ZP.f.o +.PHONY : src/SLICOT-Reference/src/SB10ZP.f.o + +src/SLICOT-Reference/src/SB10ZP.i: src/SLICOT-Reference/src/SB10ZP.f.i +.PHONY : src/SLICOT-Reference/src/SB10ZP.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB10ZP.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ZP.f.i +.PHONY : src/SLICOT-Reference/src/SB10ZP.f.i + +src/SLICOT-Reference/src/SB10ZP.s: src/SLICOT-Reference/src/SB10ZP.f.s +.PHONY : src/SLICOT-Reference/src/SB10ZP.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB10ZP.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ZP.f.s +.PHONY : src/SLICOT-Reference/src/SB10ZP.f.s + +src/SLICOT-Reference/src/SB16AD.o: src/SLICOT-Reference/src/SB16AD.f.o +.PHONY : src/SLICOT-Reference/src/SB16AD.o + +# target to build an object file +src/SLICOT-Reference/src/SB16AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16AD.f.o +.PHONY : src/SLICOT-Reference/src/SB16AD.f.o + +src/SLICOT-Reference/src/SB16AD.i: src/SLICOT-Reference/src/SB16AD.f.i +.PHONY : src/SLICOT-Reference/src/SB16AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB16AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16AD.f.i +.PHONY : src/SLICOT-Reference/src/SB16AD.f.i + +src/SLICOT-Reference/src/SB16AD.s: src/SLICOT-Reference/src/SB16AD.f.s +.PHONY : src/SLICOT-Reference/src/SB16AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB16AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16AD.f.s +.PHONY : src/SLICOT-Reference/src/SB16AD.f.s + +src/SLICOT-Reference/src/SB16AY.o: src/SLICOT-Reference/src/SB16AY.f.o +.PHONY : src/SLICOT-Reference/src/SB16AY.o + +# target to build an object file +src/SLICOT-Reference/src/SB16AY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16AY.f.o +.PHONY : src/SLICOT-Reference/src/SB16AY.f.o + +src/SLICOT-Reference/src/SB16AY.i: src/SLICOT-Reference/src/SB16AY.f.i +.PHONY : src/SLICOT-Reference/src/SB16AY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB16AY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16AY.f.i +.PHONY : src/SLICOT-Reference/src/SB16AY.f.i + +src/SLICOT-Reference/src/SB16AY.s: src/SLICOT-Reference/src/SB16AY.f.s +.PHONY : src/SLICOT-Reference/src/SB16AY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB16AY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16AY.f.s +.PHONY : src/SLICOT-Reference/src/SB16AY.f.s + +src/SLICOT-Reference/src/SB16BD.o: src/SLICOT-Reference/src/SB16BD.f.o +.PHONY : src/SLICOT-Reference/src/SB16BD.o + +# target to build an object file +src/SLICOT-Reference/src/SB16BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16BD.f.o +.PHONY : src/SLICOT-Reference/src/SB16BD.f.o + +src/SLICOT-Reference/src/SB16BD.i: src/SLICOT-Reference/src/SB16BD.f.i +.PHONY : src/SLICOT-Reference/src/SB16BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB16BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16BD.f.i +.PHONY : src/SLICOT-Reference/src/SB16BD.f.i + +src/SLICOT-Reference/src/SB16BD.s: src/SLICOT-Reference/src/SB16BD.f.s +.PHONY : src/SLICOT-Reference/src/SB16BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB16BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16BD.f.s +.PHONY : src/SLICOT-Reference/src/SB16BD.f.s + +src/SLICOT-Reference/src/SB16CD.o: src/SLICOT-Reference/src/SB16CD.f.o +.PHONY : src/SLICOT-Reference/src/SB16CD.o + +# target to build an object file +src/SLICOT-Reference/src/SB16CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16CD.f.o +.PHONY : src/SLICOT-Reference/src/SB16CD.f.o + +src/SLICOT-Reference/src/SB16CD.i: src/SLICOT-Reference/src/SB16CD.f.i +.PHONY : src/SLICOT-Reference/src/SB16CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB16CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16CD.f.i +.PHONY : src/SLICOT-Reference/src/SB16CD.f.i + +src/SLICOT-Reference/src/SB16CD.s: src/SLICOT-Reference/src/SB16CD.f.s +.PHONY : src/SLICOT-Reference/src/SB16CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB16CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16CD.f.s +.PHONY : src/SLICOT-Reference/src/SB16CD.f.s + +src/SLICOT-Reference/src/SB16CY.o: src/SLICOT-Reference/src/SB16CY.f.o +.PHONY : src/SLICOT-Reference/src/SB16CY.o + +# target to build an object file +src/SLICOT-Reference/src/SB16CY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16CY.f.o +.PHONY : src/SLICOT-Reference/src/SB16CY.f.o + +src/SLICOT-Reference/src/SB16CY.i: src/SLICOT-Reference/src/SB16CY.f.i +.PHONY : src/SLICOT-Reference/src/SB16CY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SB16CY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16CY.f.i +.PHONY : src/SLICOT-Reference/src/SB16CY.f.i + +src/SLICOT-Reference/src/SB16CY.s: src/SLICOT-Reference/src/SB16CY.f.s +.PHONY : src/SLICOT-Reference/src/SB16CY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SB16CY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16CY.f.s +.PHONY : src/SLICOT-Reference/src/SB16CY.f.s + +src/SLICOT-Reference/src/SG02AD.o: src/SLICOT-Reference/src/SG02AD.f.o +.PHONY : src/SLICOT-Reference/src/SG02AD.o + +# target to build an object file +src/SLICOT-Reference/src/SG02AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02AD.f.o +.PHONY : src/SLICOT-Reference/src/SG02AD.f.o + +src/SLICOT-Reference/src/SG02AD.i: src/SLICOT-Reference/src/SG02AD.f.i +.PHONY : src/SLICOT-Reference/src/SG02AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG02AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02AD.f.i +.PHONY : src/SLICOT-Reference/src/SG02AD.f.i + +src/SLICOT-Reference/src/SG02AD.s: src/SLICOT-Reference/src/SG02AD.f.s +.PHONY : src/SLICOT-Reference/src/SG02AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG02AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02AD.f.s +.PHONY : src/SLICOT-Reference/src/SG02AD.f.s + +src/SLICOT-Reference/src/SG02CV.o: src/SLICOT-Reference/src/SG02CV.f.o +.PHONY : src/SLICOT-Reference/src/SG02CV.o + +# target to build an object file +src/SLICOT-Reference/src/SG02CV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CV.f.o +.PHONY : src/SLICOT-Reference/src/SG02CV.f.o + +src/SLICOT-Reference/src/SG02CV.i: src/SLICOT-Reference/src/SG02CV.f.i +.PHONY : src/SLICOT-Reference/src/SG02CV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG02CV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CV.f.i +.PHONY : src/SLICOT-Reference/src/SG02CV.f.i + +src/SLICOT-Reference/src/SG02CV.s: src/SLICOT-Reference/src/SG02CV.f.s +.PHONY : src/SLICOT-Reference/src/SG02CV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG02CV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CV.f.s +.PHONY : src/SLICOT-Reference/src/SG02CV.f.s + +src/SLICOT-Reference/src/SG02CW.o: src/SLICOT-Reference/src/SG02CW.f.o +.PHONY : src/SLICOT-Reference/src/SG02CW.o + +# target to build an object file +src/SLICOT-Reference/src/SG02CW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CW.f.o +.PHONY : src/SLICOT-Reference/src/SG02CW.f.o + +src/SLICOT-Reference/src/SG02CW.i: src/SLICOT-Reference/src/SG02CW.f.i +.PHONY : src/SLICOT-Reference/src/SG02CW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG02CW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CW.f.i +.PHONY : src/SLICOT-Reference/src/SG02CW.f.i + +src/SLICOT-Reference/src/SG02CW.s: src/SLICOT-Reference/src/SG02CW.f.s +.PHONY : src/SLICOT-Reference/src/SG02CW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG02CW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CW.f.s +.PHONY : src/SLICOT-Reference/src/SG02CW.f.s + +src/SLICOT-Reference/src/SG02CX.o: src/SLICOT-Reference/src/SG02CX.f.o +.PHONY : src/SLICOT-Reference/src/SG02CX.o + +# target to build an object file +src/SLICOT-Reference/src/SG02CX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CX.f.o +.PHONY : src/SLICOT-Reference/src/SG02CX.f.o + +src/SLICOT-Reference/src/SG02CX.i: src/SLICOT-Reference/src/SG02CX.f.i +.PHONY : src/SLICOT-Reference/src/SG02CX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG02CX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CX.f.i +.PHONY : src/SLICOT-Reference/src/SG02CX.f.i + +src/SLICOT-Reference/src/SG02CX.s: src/SLICOT-Reference/src/SG02CX.f.s +.PHONY : src/SLICOT-Reference/src/SG02CX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG02CX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CX.f.s +.PHONY : src/SLICOT-Reference/src/SG02CX.f.s + +src/SLICOT-Reference/src/SG02ND.o: src/SLICOT-Reference/src/SG02ND.f.o +.PHONY : src/SLICOT-Reference/src/SG02ND.o + +# target to build an object file +src/SLICOT-Reference/src/SG02ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02ND.f.o +.PHONY : src/SLICOT-Reference/src/SG02ND.f.o + +src/SLICOT-Reference/src/SG02ND.i: src/SLICOT-Reference/src/SG02ND.f.i +.PHONY : src/SLICOT-Reference/src/SG02ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG02ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02ND.f.i +.PHONY : src/SLICOT-Reference/src/SG02ND.f.i + +src/SLICOT-Reference/src/SG02ND.s: src/SLICOT-Reference/src/SG02ND.f.s +.PHONY : src/SLICOT-Reference/src/SG02ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG02ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02ND.f.s +.PHONY : src/SLICOT-Reference/src/SG02ND.f.s + +src/SLICOT-Reference/src/SG03AD.o: src/SLICOT-Reference/src/SG03AD.f.o +.PHONY : src/SLICOT-Reference/src/SG03AD.o + +# target to build an object file +src/SLICOT-Reference/src/SG03AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AD.f.o +.PHONY : src/SLICOT-Reference/src/SG03AD.f.o + +src/SLICOT-Reference/src/SG03AD.i: src/SLICOT-Reference/src/SG03AD.f.i +.PHONY : src/SLICOT-Reference/src/SG03AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AD.f.i +.PHONY : src/SLICOT-Reference/src/SG03AD.f.i + +src/SLICOT-Reference/src/SG03AD.s: src/SLICOT-Reference/src/SG03AD.f.s +.PHONY : src/SLICOT-Reference/src/SG03AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AD.f.s +.PHONY : src/SLICOT-Reference/src/SG03AD.f.s + +src/SLICOT-Reference/src/SG03AX.o: src/SLICOT-Reference/src/SG03AX.f.o +.PHONY : src/SLICOT-Reference/src/SG03AX.o + +# target to build an object file +src/SLICOT-Reference/src/SG03AX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AX.f.o +.PHONY : src/SLICOT-Reference/src/SG03AX.f.o + +src/SLICOT-Reference/src/SG03AX.i: src/SLICOT-Reference/src/SG03AX.f.i +.PHONY : src/SLICOT-Reference/src/SG03AX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03AX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AX.f.i +.PHONY : src/SLICOT-Reference/src/SG03AX.f.i + +src/SLICOT-Reference/src/SG03AX.s: src/SLICOT-Reference/src/SG03AX.f.s +.PHONY : src/SLICOT-Reference/src/SG03AX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03AX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AX.f.s +.PHONY : src/SLICOT-Reference/src/SG03AX.f.s + +src/SLICOT-Reference/src/SG03AY.o: src/SLICOT-Reference/src/SG03AY.f.o +.PHONY : src/SLICOT-Reference/src/SG03AY.o + +# target to build an object file +src/SLICOT-Reference/src/SG03AY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AY.f.o +.PHONY : src/SLICOT-Reference/src/SG03AY.f.o + +src/SLICOT-Reference/src/SG03AY.i: src/SLICOT-Reference/src/SG03AY.f.i +.PHONY : src/SLICOT-Reference/src/SG03AY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03AY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AY.f.i +.PHONY : src/SLICOT-Reference/src/SG03AY.f.i + +src/SLICOT-Reference/src/SG03AY.s: src/SLICOT-Reference/src/SG03AY.f.s +.PHONY : src/SLICOT-Reference/src/SG03AY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03AY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AY.f.s +.PHONY : src/SLICOT-Reference/src/SG03AY.f.s + +src/SLICOT-Reference/src/SG03BD.o: src/SLICOT-Reference/src/SG03BD.f.o +.PHONY : src/SLICOT-Reference/src/SG03BD.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BD.f.o +.PHONY : src/SLICOT-Reference/src/SG03BD.f.o + +src/SLICOT-Reference/src/SG03BD.i: src/SLICOT-Reference/src/SG03BD.f.i +.PHONY : src/SLICOT-Reference/src/SG03BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BD.f.i +.PHONY : src/SLICOT-Reference/src/SG03BD.f.i + +src/SLICOT-Reference/src/SG03BD.s: src/SLICOT-Reference/src/SG03BD.f.s +.PHONY : src/SLICOT-Reference/src/SG03BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BD.f.s +.PHONY : src/SLICOT-Reference/src/SG03BD.f.s + +src/SLICOT-Reference/src/SG03BR.o: src/SLICOT-Reference/src/SG03BR.f.o +.PHONY : src/SLICOT-Reference/src/SG03BR.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BR.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BR.f.o +.PHONY : src/SLICOT-Reference/src/SG03BR.f.o + +src/SLICOT-Reference/src/SG03BR.i: src/SLICOT-Reference/src/SG03BR.f.i +.PHONY : src/SLICOT-Reference/src/SG03BR.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BR.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BR.f.i +.PHONY : src/SLICOT-Reference/src/SG03BR.f.i + +src/SLICOT-Reference/src/SG03BR.s: src/SLICOT-Reference/src/SG03BR.f.s +.PHONY : src/SLICOT-Reference/src/SG03BR.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BR.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BR.f.s +.PHONY : src/SLICOT-Reference/src/SG03BR.f.s + +src/SLICOT-Reference/src/SG03BS.o: src/SLICOT-Reference/src/SG03BS.f.o +.PHONY : src/SLICOT-Reference/src/SG03BS.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BS.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BS.f.o +.PHONY : src/SLICOT-Reference/src/SG03BS.f.o + +src/SLICOT-Reference/src/SG03BS.i: src/SLICOT-Reference/src/SG03BS.f.i +.PHONY : src/SLICOT-Reference/src/SG03BS.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BS.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BS.f.i +.PHONY : src/SLICOT-Reference/src/SG03BS.f.i + +src/SLICOT-Reference/src/SG03BS.s: src/SLICOT-Reference/src/SG03BS.f.s +.PHONY : src/SLICOT-Reference/src/SG03BS.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BS.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BS.f.s +.PHONY : src/SLICOT-Reference/src/SG03BS.f.s + +src/SLICOT-Reference/src/SG03BT.o: src/SLICOT-Reference/src/SG03BT.f.o +.PHONY : src/SLICOT-Reference/src/SG03BT.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BT.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BT.f.o +.PHONY : src/SLICOT-Reference/src/SG03BT.f.o + +src/SLICOT-Reference/src/SG03BT.i: src/SLICOT-Reference/src/SG03BT.f.i +.PHONY : src/SLICOT-Reference/src/SG03BT.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BT.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BT.f.i +.PHONY : src/SLICOT-Reference/src/SG03BT.f.i + +src/SLICOT-Reference/src/SG03BT.s: src/SLICOT-Reference/src/SG03BT.f.s +.PHONY : src/SLICOT-Reference/src/SG03BT.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BT.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BT.f.s +.PHONY : src/SLICOT-Reference/src/SG03BT.f.s + +src/SLICOT-Reference/src/SG03BU.o: src/SLICOT-Reference/src/SG03BU.f.o +.PHONY : src/SLICOT-Reference/src/SG03BU.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BU.f.o +.PHONY : src/SLICOT-Reference/src/SG03BU.f.o + +src/SLICOT-Reference/src/SG03BU.i: src/SLICOT-Reference/src/SG03BU.f.i +.PHONY : src/SLICOT-Reference/src/SG03BU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BU.f.i +.PHONY : src/SLICOT-Reference/src/SG03BU.f.i + +src/SLICOT-Reference/src/SG03BU.s: src/SLICOT-Reference/src/SG03BU.f.s +.PHONY : src/SLICOT-Reference/src/SG03BU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BU.f.s +.PHONY : src/SLICOT-Reference/src/SG03BU.f.s + +src/SLICOT-Reference/src/SG03BV.o: src/SLICOT-Reference/src/SG03BV.f.o +.PHONY : src/SLICOT-Reference/src/SG03BV.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BV.f.o +.PHONY : src/SLICOT-Reference/src/SG03BV.f.o + +src/SLICOT-Reference/src/SG03BV.i: src/SLICOT-Reference/src/SG03BV.f.i +.PHONY : src/SLICOT-Reference/src/SG03BV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BV.f.i +.PHONY : src/SLICOT-Reference/src/SG03BV.f.i + +src/SLICOT-Reference/src/SG03BV.s: src/SLICOT-Reference/src/SG03BV.f.s +.PHONY : src/SLICOT-Reference/src/SG03BV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BV.f.s +.PHONY : src/SLICOT-Reference/src/SG03BV.f.s + +src/SLICOT-Reference/src/SG03BW.o: src/SLICOT-Reference/src/SG03BW.f.o +.PHONY : src/SLICOT-Reference/src/SG03BW.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BW.f.o +.PHONY : src/SLICOT-Reference/src/SG03BW.f.o + +src/SLICOT-Reference/src/SG03BW.i: src/SLICOT-Reference/src/SG03BW.f.i +.PHONY : src/SLICOT-Reference/src/SG03BW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BW.f.i +.PHONY : src/SLICOT-Reference/src/SG03BW.f.i + +src/SLICOT-Reference/src/SG03BW.s: src/SLICOT-Reference/src/SG03BW.f.s +.PHONY : src/SLICOT-Reference/src/SG03BW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BW.f.s +.PHONY : src/SLICOT-Reference/src/SG03BW.f.s + +src/SLICOT-Reference/src/SG03BX.o: src/SLICOT-Reference/src/SG03BX.f.o +.PHONY : src/SLICOT-Reference/src/SG03BX.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BX.f.o +.PHONY : src/SLICOT-Reference/src/SG03BX.f.o + +src/SLICOT-Reference/src/SG03BX.i: src/SLICOT-Reference/src/SG03BX.f.i +.PHONY : src/SLICOT-Reference/src/SG03BX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BX.f.i +.PHONY : src/SLICOT-Reference/src/SG03BX.f.i + +src/SLICOT-Reference/src/SG03BX.s: src/SLICOT-Reference/src/SG03BX.f.s +.PHONY : src/SLICOT-Reference/src/SG03BX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BX.f.s +.PHONY : src/SLICOT-Reference/src/SG03BX.f.s + +src/SLICOT-Reference/src/SG03BY.o: src/SLICOT-Reference/src/SG03BY.f.o +.PHONY : src/SLICOT-Reference/src/SG03BY.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BY.f.o +.PHONY : src/SLICOT-Reference/src/SG03BY.f.o + +src/SLICOT-Reference/src/SG03BY.i: src/SLICOT-Reference/src/SG03BY.f.i +.PHONY : src/SLICOT-Reference/src/SG03BY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BY.f.i +.PHONY : src/SLICOT-Reference/src/SG03BY.f.i + +src/SLICOT-Reference/src/SG03BY.s: src/SLICOT-Reference/src/SG03BY.f.s +.PHONY : src/SLICOT-Reference/src/SG03BY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BY.f.s +.PHONY : src/SLICOT-Reference/src/SG03BY.f.s + +src/SLICOT-Reference/src/SG03BZ.o: src/SLICOT-Reference/src/SG03BZ.f.o +.PHONY : src/SLICOT-Reference/src/SG03BZ.o + +# target to build an object file +src/SLICOT-Reference/src/SG03BZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BZ.f.o +.PHONY : src/SLICOT-Reference/src/SG03BZ.f.o + +src/SLICOT-Reference/src/SG03BZ.i: src/SLICOT-Reference/src/SG03BZ.f.i +.PHONY : src/SLICOT-Reference/src/SG03BZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SG03BZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BZ.f.i +.PHONY : src/SLICOT-Reference/src/SG03BZ.f.i + +src/SLICOT-Reference/src/SG03BZ.s: src/SLICOT-Reference/src/SG03BZ.f.s +.PHONY : src/SLICOT-Reference/src/SG03BZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SG03BZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BZ.f.s +.PHONY : src/SLICOT-Reference/src/SG03BZ.f.s + +src/SLICOT-Reference/src/SLCT_DLATZM.o: src/SLICOT-Reference/src/SLCT_DLATZM.f.o +.PHONY : src/SLICOT-Reference/src/SLCT_DLATZM.o + +# target to build an object file +src/SLICOT-Reference/src/SLCT_DLATZM.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SLCT_DLATZM.f.o +.PHONY : src/SLICOT-Reference/src/SLCT_DLATZM.f.o + +src/SLICOT-Reference/src/SLCT_DLATZM.i: src/SLICOT-Reference/src/SLCT_DLATZM.f.i +.PHONY : src/SLICOT-Reference/src/SLCT_DLATZM.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SLCT_DLATZM.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SLCT_DLATZM.f.i +.PHONY : src/SLICOT-Reference/src/SLCT_DLATZM.f.i + +src/SLICOT-Reference/src/SLCT_DLATZM.s: src/SLICOT-Reference/src/SLCT_DLATZM.f.s +.PHONY : src/SLICOT-Reference/src/SLCT_DLATZM.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SLCT_DLATZM.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SLCT_DLATZM.f.s +.PHONY : src/SLICOT-Reference/src/SLCT_DLATZM.f.s + +src/SLICOT-Reference/src/SLCT_ZLATZM.o: src/SLICOT-Reference/src/SLCT_ZLATZM.f.o +.PHONY : src/SLICOT-Reference/src/SLCT_ZLATZM.o + +# target to build an object file +src/SLICOT-Reference/src/SLCT_ZLATZM.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SLCT_ZLATZM.f.o +.PHONY : src/SLICOT-Reference/src/SLCT_ZLATZM.f.o + +src/SLICOT-Reference/src/SLCT_ZLATZM.i: src/SLICOT-Reference/src/SLCT_ZLATZM.f.i +.PHONY : src/SLICOT-Reference/src/SLCT_ZLATZM.i + +# target to preprocess a source file +src/SLICOT-Reference/src/SLCT_ZLATZM.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SLCT_ZLATZM.f.i +.PHONY : src/SLICOT-Reference/src/SLCT_ZLATZM.f.i + +src/SLICOT-Reference/src/SLCT_ZLATZM.s: src/SLICOT-Reference/src/SLCT_ZLATZM.f.s +.PHONY : src/SLICOT-Reference/src/SLCT_ZLATZM.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/SLCT_ZLATZM.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SLCT_ZLATZM.f.s +.PHONY : src/SLICOT-Reference/src/SLCT_ZLATZM.f.s + +src/SLICOT-Reference/src/TB01ID.o: src/SLICOT-Reference/src/TB01ID.f.o +.PHONY : src/SLICOT-Reference/src/TB01ID.o + +# target to build an object file +src/SLICOT-Reference/src/TB01ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ID.f.o +.PHONY : src/SLICOT-Reference/src/TB01ID.f.o + +src/SLICOT-Reference/src/TB01ID.i: src/SLICOT-Reference/src/TB01ID.f.i +.PHONY : src/SLICOT-Reference/src/TB01ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ID.f.i +.PHONY : src/SLICOT-Reference/src/TB01ID.f.i + +src/SLICOT-Reference/src/TB01ID.s: src/SLICOT-Reference/src/TB01ID.f.s +.PHONY : src/SLICOT-Reference/src/TB01ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ID.f.s +.PHONY : src/SLICOT-Reference/src/TB01ID.f.s + +src/SLICOT-Reference/src/TB01IZ.o: src/SLICOT-Reference/src/TB01IZ.f.o +.PHONY : src/SLICOT-Reference/src/TB01IZ.o + +# target to build an object file +src/SLICOT-Reference/src/TB01IZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01IZ.f.o +.PHONY : src/SLICOT-Reference/src/TB01IZ.f.o + +src/SLICOT-Reference/src/TB01IZ.i: src/SLICOT-Reference/src/TB01IZ.f.i +.PHONY : src/SLICOT-Reference/src/TB01IZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01IZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01IZ.f.i +.PHONY : src/SLICOT-Reference/src/TB01IZ.f.i + +src/SLICOT-Reference/src/TB01IZ.s: src/SLICOT-Reference/src/TB01IZ.f.s +.PHONY : src/SLICOT-Reference/src/TB01IZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01IZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01IZ.f.s +.PHONY : src/SLICOT-Reference/src/TB01IZ.f.s + +src/SLICOT-Reference/src/TB01KD.o: src/SLICOT-Reference/src/TB01KD.f.o +.PHONY : src/SLICOT-Reference/src/TB01KD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01KD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01KD.f.o +.PHONY : src/SLICOT-Reference/src/TB01KD.f.o + +src/SLICOT-Reference/src/TB01KD.i: src/SLICOT-Reference/src/TB01KD.f.i +.PHONY : src/SLICOT-Reference/src/TB01KD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01KD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01KD.f.i +.PHONY : src/SLICOT-Reference/src/TB01KD.f.i + +src/SLICOT-Reference/src/TB01KD.s: src/SLICOT-Reference/src/TB01KD.f.s +.PHONY : src/SLICOT-Reference/src/TB01KD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01KD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01KD.f.s +.PHONY : src/SLICOT-Reference/src/TB01KD.f.s + +src/SLICOT-Reference/src/TB01KX.o: src/SLICOT-Reference/src/TB01KX.f.o +.PHONY : src/SLICOT-Reference/src/TB01KX.o + +# target to build an object file +src/SLICOT-Reference/src/TB01KX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01KX.f.o +.PHONY : src/SLICOT-Reference/src/TB01KX.f.o + +src/SLICOT-Reference/src/TB01KX.i: src/SLICOT-Reference/src/TB01KX.f.i +.PHONY : src/SLICOT-Reference/src/TB01KX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01KX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01KX.f.i +.PHONY : src/SLICOT-Reference/src/TB01KX.f.i + +src/SLICOT-Reference/src/TB01KX.s: src/SLICOT-Reference/src/TB01KX.f.s +.PHONY : src/SLICOT-Reference/src/TB01KX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01KX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01KX.f.s +.PHONY : src/SLICOT-Reference/src/TB01KX.f.s + +src/SLICOT-Reference/src/TB01LD.o: src/SLICOT-Reference/src/TB01LD.f.o +.PHONY : src/SLICOT-Reference/src/TB01LD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01LD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01LD.f.o +.PHONY : src/SLICOT-Reference/src/TB01LD.f.o + +src/SLICOT-Reference/src/TB01LD.i: src/SLICOT-Reference/src/TB01LD.f.i +.PHONY : src/SLICOT-Reference/src/TB01LD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01LD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01LD.f.i +.PHONY : src/SLICOT-Reference/src/TB01LD.f.i + +src/SLICOT-Reference/src/TB01LD.s: src/SLICOT-Reference/src/TB01LD.f.s +.PHONY : src/SLICOT-Reference/src/TB01LD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01LD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01LD.f.s +.PHONY : src/SLICOT-Reference/src/TB01LD.f.s + +src/SLICOT-Reference/src/TB01MD.o: src/SLICOT-Reference/src/TB01MD.f.o +.PHONY : src/SLICOT-Reference/src/TB01MD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01MD.f.o +.PHONY : src/SLICOT-Reference/src/TB01MD.f.o + +src/SLICOT-Reference/src/TB01MD.i: src/SLICOT-Reference/src/TB01MD.f.i +.PHONY : src/SLICOT-Reference/src/TB01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01MD.f.i +.PHONY : src/SLICOT-Reference/src/TB01MD.f.i + +src/SLICOT-Reference/src/TB01MD.s: src/SLICOT-Reference/src/TB01MD.f.s +.PHONY : src/SLICOT-Reference/src/TB01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01MD.f.s +.PHONY : src/SLICOT-Reference/src/TB01MD.f.s + +src/SLICOT-Reference/src/TB01ND.o: src/SLICOT-Reference/src/TB01ND.f.o +.PHONY : src/SLICOT-Reference/src/TB01ND.o + +# target to build an object file +src/SLICOT-Reference/src/TB01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ND.f.o +.PHONY : src/SLICOT-Reference/src/TB01ND.f.o + +src/SLICOT-Reference/src/TB01ND.i: src/SLICOT-Reference/src/TB01ND.f.i +.PHONY : src/SLICOT-Reference/src/TB01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ND.f.i +.PHONY : src/SLICOT-Reference/src/TB01ND.f.i + +src/SLICOT-Reference/src/TB01ND.s: src/SLICOT-Reference/src/TB01ND.f.s +.PHONY : src/SLICOT-Reference/src/TB01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ND.f.s +.PHONY : src/SLICOT-Reference/src/TB01ND.f.s + +src/SLICOT-Reference/src/TB01PD.o: src/SLICOT-Reference/src/TB01PD.f.o +.PHONY : src/SLICOT-Reference/src/TB01PD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01PD.f.o +.PHONY : src/SLICOT-Reference/src/TB01PD.f.o + +src/SLICOT-Reference/src/TB01PD.i: src/SLICOT-Reference/src/TB01PD.f.i +.PHONY : src/SLICOT-Reference/src/TB01PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01PD.f.i +.PHONY : src/SLICOT-Reference/src/TB01PD.f.i + +src/SLICOT-Reference/src/TB01PD.s: src/SLICOT-Reference/src/TB01PD.f.s +.PHONY : src/SLICOT-Reference/src/TB01PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01PD.f.s +.PHONY : src/SLICOT-Reference/src/TB01PD.f.s + +src/SLICOT-Reference/src/TB01PX.o: src/SLICOT-Reference/src/TB01PX.f.o +.PHONY : src/SLICOT-Reference/src/TB01PX.o + +# target to build an object file +src/SLICOT-Reference/src/TB01PX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01PX.f.o +.PHONY : src/SLICOT-Reference/src/TB01PX.f.o + +src/SLICOT-Reference/src/TB01PX.i: src/SLICOT-Reference/src/TB01PX.f.i +.PHONY : src/SLICOT-Reference/src/TB01PX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01PX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01PX.f.i +.PHONY : src/SLICOT-Reference/src/TB01PX.f.i + +src/SLICOT-Reference/src/TB01PX.s: src/SLICOT-Reference/src/TB01PX.f.s +.PHONY : src/SLICOT-Reference/src/TB01PX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01PX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01PX.f.s +.PHONY : src/SLICOT-Reference/src/TB01PX.f.s + +src/SLICOT-Reference/src/TB01TD.o: src/SLICOT-Reference/src/TB01TD.f.o +.PHONY : src/SLICOT-Reference/src/TB01TD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01TD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01TD.f.o +.PHONY : src/SLICOT-Reference/src/TB01TD.f.o + +src/SLICOT-Reference/src/TB01TD.i: src/SLICOT-Reference/src/TB01TD.f.i +.PHONY : src/SLICOT-Reference/src/TB01TD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01TD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01TD.f.i +.PHONY : src/SLICOT-Reference/src/TB01TD.f.i + +src/SLICOT-Reference/src/TB01TD.s: src/SLICOT-Reference/src/TB01TD.f.s +.PHONY : src/SLICOT-Reference/src/TB01TD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01TD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01TD.f.s +.PHONY : src/SLICOT-Reference/src/TB01TD.f.s + +src/SLICOT-Reference/src/TB01TY.o: src/SLICOT-Reference/src/TB01TY.f.o +.PHONY : src/SLICOT-Reference/src/TB01TY.o + +# target to build an object file +src/SLICOT-Reference/src/TB01TY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01TY.f.o +.PHONY : src/SLICOT-Reference/src/TB01TY.f.o + +src/SLICOT-Reference/src/TB01TY.i: src/SLICOT-Reference/src/TB01TY.f.i +.PHONY : src/SLICOT-Reference/src/TB01TY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01TY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01TY.f.i +.PHONY : src/SLICOT-Reference/src/TB01TY.f.i + +src/SLICOT-Reference/src/TB01TY.s: src/SLICOT-Reference/src/TB01TY.f.s +.PHONY : src/SLICOT-Reference/src/TB01TY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01TY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01TY.f.s +.PHONY : src/SLICOT-Reference/src/TB01TY.f.s + +src/SLICOT-Reference/src/TB01UD.o: src/SLICOT-Reference/src/TB01UD.f.o +.PHONY : src/SLICOT-Reference/src/TB01UD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01UD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UD.f.o +.PHONY : src/SLICOT-Reference/src/TB01UD.f.o + +src/SLICOT-Reference/src/TB01UD.i: src/SLICOT-Reference/src/TB01UD.f.i +.PHONY : src/SLICOT-Reference/src/TB01UD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01UD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UD.f.i +.PHONY : src/SLICOT-Reference/src/TB01UD.f.i + +src/SLICOT-Reference/src/TB01UD.s: src/SLICOT-Reference/src/TB01UD.f.s +.PHONY : src/SLICOT-Reference/src/TB01UD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01UD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UD.f.s +.PHONY : src/SLICOT-Reference/src/TB01UD.f.s + +src/SLICOT-Reference/src/TB01UX.o: src/SLICOT-Reference/src/TB01UX.f.o +.PHONY : src/SLICOT-Reference/src/TB01UX.o + +# target to build an object file +src/SLICOT-Reference/src/TB01UX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UX.f.o +.PHONY : src/SLICOT-Reference/src/TB01UX.f.o + +src/SLICOT-Reference/src/TB01UX.i: src/SLICOT-Reference/src/TB01UX.f.i +.PHONY : src/SLICOT-Reference/src/TB01UX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01UX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UX.f.i +.PHONY : src/SLICOT-Reference/src/TB01UX.f.i + +src/SLICOT-Reference/src/TB01UX.s: src/SLICOT-Reference/src/TB01UX.f.s +.PHONY : src/SLICOT-Reference/src/TB01UX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01UX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UX.f.s +.PHONY : src/SLICOT-Reference/src/TB01UX.f.s + +src/SLICOT-Reference/src/TB01UY.o: src/SLICOT-Reference/src/TB01UY.f.o +.PHONY : src/SLICOT-Reference/src/TB01UY.o + +# target to build an object file +src/SLICOT-Reference/src/TB01UY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UY.f.o +.PHONY : src/SLICOT-Reference/src/TB01UY.f.o + +src/SLICOT-Reference/src/TB01UY.i: src/SLICOT-Reference/src/TB01UY.f.i +.PHONY : src/SLICOT-Reference/src/TB01UY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01UY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UY.f.i +.PHONY : src/SLICOT-Reference/src/TB01UY.f.i + +src/SLICOT-Reference/src/TB01UY.s: src/SLICOT-Reference/src/TB01UY.f.s +.PHONY : src/SLICOT-Reference/src/TB01UY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01UY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UY.f.s +.PHONY : src/SLICOT-Reference/src/TB01UY.f.s + +src/SLICOT-Reference/src/TB01VD.o: src/SLICOT-Reference/src/TB01VD.f.o +.PHONY : src/SLICOT-Reference/src/TB01VD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01VD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01VD.f.o +.PHONY : src/SLICOT-Reference/src/TB01VD.f.o + +src/SLICOT-Reference/src/TB01VD.i: src/SLICOT-Reference/src/TB01VD.f.i +.PHONY : src/SLICOT-Reference/src/TB01VD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01VD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01VD.f.i +.PHONY : src/SLICOT-Reference/src/TB01VD.f.i + +src/SLICOT-Reference/src/TB01VD.s: src/SLICOT-Reference/src/TB01VD.f.s +.PHONY : src/SLICOT-Reference/src/TB01VD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01VD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01VD.f.s +.PHONY : src/SLICOT-Reference/src/TB01VD.f.s + +src/SLICOT-Reference/src/TB01VY.o: src/SLICOT-Reference/src/TB01VY.f.o +.PHONY : src/SLICOT-Reference/src/TB01VY.o + +# target to build an object file +src/SLICOT-Reference/src/TB01VY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01VY.f.o +.PHONY : src/SLICOT-Reference/src/TB01VY.f.o + +src/SLICOT-Reference/src/TB01VY.i: src/SLICOT-Reference/src/TB01VY.f.i +.PHONY : src/SLICOT-Reference/src/TB01VY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01VY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01VY.f.i +.PHONY : src/SLICOT-Reference/src/TB01VY.f.i + +src/SLICOT-Reference/src/TB01VY.s: src/SLICOT-Reference/src/TB01VY.f.s +.PHONY : src/SLICOT-Reference/src/TB01VY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01VY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01VY.f.s +.PHONY : src/SLICOT-Reference/src/TB01VY.f.s + +src/SLICOT-Reference/src/TB01WD.o: src/SLICOT-Reference/src/TB01WD.f.o +.PHONY : src/SLICOT-Reference/src/TB01WD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01WD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01WD.f.o +.PHONY : src/SLICOT-Reference/src/TB01WD.f.o + +src/SLICOT-Reference/src/TB01WD.i: src/SLICOT-Reference/src/TB01WD.f.i +.PHONY : src/SLICOT-Reference/src/TB01WD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01WD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01WD.f.i +.PHONY : src/SLICOT-Reference/src/TB01WD.f.i + +src/SLICOT-Reference/src/TB01WD.s: src/SLICOT-Reference/src/TB01WD.f.s +.PHONY : src/SLICOT-Reference/src/TB01WD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01WD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01WD.f.s +.PHONY : src/SLICOT-Reference/src/TB01WD.f.s + +src/SLICOT-Reference/src/TB01WX.o: src/SLICOT-Reference/src/TB01WX.f.o +.PHONY : src/SLICOT-Reference/src/TB01WX.o + +# target to build an object file +src/SLICOT-Reference/src/TB01WX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01WX.f.o +.PHONY : src/SLICOT-Reference/src/TB01WX.f.o + +src/SLICOT-Reference/src/TB01WX.i: src/SLICOT-Reference/src/TB01WX.f.i +.PHONY : src/SLICOT-Reference/src/TB01WX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01WX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01WX.f.i +.PHONY : src/SLICOT-Reference/src/TB01WX.f.i + +src/SLICOT-Reference/src/TB01WX.s: src/SLICOT-Reference/src/TB01WX.f.s +.PHONY : src/SLICOT-Reference/src/TB01WX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01WX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01WX.f.s +.PHONY : src/SLICOT-Reference/src/TB01WX.f.s + +src/SLICOT-Reference/src/TB01XD.o: src/SLICOT-Reference/src/TB01XD.f.o +.PHONY : src/SLICOT-Reference/src/TB01XD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01XD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01XD.f.o +.PHONY : src/SLICOT-Reference/src/TB01XD.f.o + +src/SLICOT-Reference/src/TB01XD.i: src/SLICOT-Reference/src/TB01XD.f.i +.PHONY : src/SLICOT-Reference/src/TB01XD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01XD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01XD.f.i +.PHONY : src/SLICOT-Reference/src/TB01XD.f.i + +src/SLICOT-Reference/src/TB01XD.s: src/SLICOT-Reference/src/TB01XD.f.s +.PHONY : src/SLICOT-Reference/src/TB01XD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01XD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01XD.f.s +.PHONY : src/SLICOT-Reference/src/TB01XD.f.s + +src/SLICOT-Reference/src/TB01XZ.o: src/SLICOT-Reference/src/TB01XZ.f.o +.PHONY : src/SLICOT-Reference/src/TB01XZ.o + +# target to build an object file +src/SLICOT-Reference/src/TB01XZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01XZ.f.o +.PHONY : src/SLICOT-Reference/src/TB01XZ.f.o + +src/SLICOT-Reference/src/TB01XZ.i: src/SLICOT-Reference/src/TB01XZ.f.i +.PHONY : src/SLICOT-Reference/src/TB01XZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01XZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01XZ.f.i +.PHONY : src/SLICOT-Reference/src/TB01XZ.f.i + +src/SLICOT-Reference/src/TB01XZ.s: src/SLICOT-Reference/src/TB01XZ.f.s +.PHONY : src/SLICOT-Reference/src/TB01XZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01XZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01XZ.f.s +.PHONY : src/SLICOT-Reference/src/TB01XZ.f.s + +src/SLICOT-Reference/src/TB01YD.o: src/SLICOT-Reference/src/TB01YD.f.o +.PHONY : src/SLICOT-Reference/src/TB01YD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01YD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01YD.f.o +.PHONY : src/SLICOT-Reference/src/TB01YD.f.o + +src/SLICOT-Reference/src/TB01YD.i: src/SLICOT-Reference/src/TB01YD.f.i +.PHONY : src/SLICOT-Reference/src/TB01YD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01YD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01YD.f.i +.PHONY : src/SLICOT-Reference/src/TB01YD.f.i + +src/SLICOT-Reference/src/TB01YD.s: src/SLICOT-Reference/src/TB01YD.f.s +.PHONY : src/SLICOT-Reference/src/TB01YD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01YD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01YD.f.s +.PHONY : src/SLICOT-Reference/src/TB01YD.f.s + +src/SLICOT-Reference/src/TB01ZD.o: src/SLICOT-Reference/src/TB01ZD.f.o +.PHONY : src/SLICOT-Reference/src/TB01ZD.o + +# target to build an object file +src/SLICOT-Reference/src/TB01ZD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ZD.f.o +.PHONY : src/SLICOT-Reference/src/TB01ZD.f.o + +src/SLICOT-Reference/src/TB01ZD.i: src/SLICOT-Reference/src/TB01ZD.f.i +.PHONY : src/SLICOT-Reference/src/TB01ZD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB01ZD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ZD.f.i +.PHONY : src/SLICOT-Reference/src/TB01ZD.f.i + +src/SLICOT-Reference/src/TB01ZD.s: src/SLICOT-Reference/src/TB01ZD.f.s +.PHONY : src/SLICOT-Reference/src/TB01ZD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB01ZD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ZD.f.s +.PHONY : src/SLICOT-Reference/src/TB01ZD.f.s + +src/SLICOT-Reference/src/TB03AD.o: src/SLICOT-Reference/src/TB03AD.f.o +.PHONY : src/SLICOT-Reference/src/TB03AD.o + +# target to build an object file +src/SLICOT-Reference/src/TB03AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB03AD.f.o +.PHONY : src/SLICOT-Reference/src/TB03AD.f.o + +src/SLICOT-Reference/src/TB03AD.i: src/SLICOT-Reference/src/TB03AD.f.i +.PHONY : src/SLICOT-Reference/src/TB03AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB03AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB03AD.f.i +.PHONY : src/SLICOT-Reference/src/TB03AD.f.i + +src/SLICOT-Reference/src/TB03AD.s: src/SLICOT-Reference/src/TB03AD.f.s +.PHONY : src/SLICOT-Reference/src/TB03AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB03AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB03AD.f.s +.PHONY : src/SLICOT-Reference/src/TB03AD.f.s + +src/SLICOT-Reference/src/TB03AY.o: src/SLICOT-Reference/src/TB03AY.f.o +.PHONY : src/SLICOT-Reference/src/TB03AY.o + +# target to build an object file +src/SLICOT-Reference/src/TB03AY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB03AY.f.o +.PHONY : src/SLICOT-Reference/src/TB03AY.f.o + +src/SLICOT-Reference/src/TB03AY.i: src/SLICOT-Reference/src/TB03AY.f.i +.PHONY : src/SLICOT-Reference/src/TB03AY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB03AY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB03AY.f.i +.PHONY : src/SLICOT-Reference/src/TB03AY.f.i + +src/SLICOT-Reference/src/TB03AY.s: src/SLICOT-Reference/src/TB03AY.f.s +.PHONY : src/SLICOT-Reference/src/TB03AY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB03AY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB03AY.f.s +.PHONY : src/SLICOT-Reference/src/TB03AY.f.s + +src/SLICOT-Reference/src/TB04AD.o: src/SLICOT-Reference/src/TB04AD.f.o +.PHONY : src/SLICOT-Reference/src/TB04AD.o + +# target to build an object file +src/SLICOT-Reference/src/TB04AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04AD.f.o +.PHONY : src/SLICOT-Reference/src/TB04AD.f.o + +src/SLICOT-Reference/src/TB04AD.i: src/SLICOT-Reference/src/TB04AD.f.i +.PHONY : src/SLICOT-Reference/src/TB04AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB04AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04AD.f.i +.PHONY : src/SLICOT-Reference/src/TB04AD.f.i + +src/SLICOT-Reference/src/TB04AD.s: src/SLICOT-Reference/src/TB04AD.f.s +.PHONY : src/SLICOT-Reference/src/TB04AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB04AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04AD.f.s +.PHONY : src/SLICOT-Reference/src/TB04AD.f.s + +src/SLICOT-Reference/src/TB04AY.o: src/SLICOT-Reference/src/TB04AY.f.o +.PHONY : src/SLICOT-Reference/src/TB04AY.o + +# target to build an object file +src/SLICOT-Reference/src/TB04AY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04AY.f.o +.PHONY : src/SLICOT-Reference/src/TB04AY.f.o + +src/SLICOT-Reference/src/TB04AY.i: src/SLICOT-Reference/src/TB04AY.f.i +.PHONY : src/SLICOT-Reference/src/TB04AY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB04AY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04AY.f.i +.PHONY : src/SLICOT-Reference/src/TB04AY.f.i + +src/SLICOT-Reference/src/TB04AY.s: src/SLICOT-Reference/src/TB04AY.f.s +.PHONY : src/SLICOT-Reference/src/TB04AY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB04AY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04AY.f.s +.PHONY : src/SLICOT-Reference/src/TB04AY.f.s + +src/SLICOT-Reference/src/TB04BD.o: src/SLICOT-Reference/src/TB04BD.f.o +.PHONY : src/SLICOT-Reference/src/TB04BD.o + +# target to build an object file +src/SLICOT-Reference/src/TB04BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BD.f.o +.PHONY : src/SLICOT-Reference/src/TB04BD.f.o + +src/SLICOT-Reference/src/TB04BD.i: src/SLICOT-Reference/src/TB04BD.f.i +.PHONY : src/SLICOT-Reference/src/TB04BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB04BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BD.f.i +.PHONY : src/SLICOT-Reference/src/TB04BD.f.i + +src/SLICOT-Reference/src/TB04BD.s: src/SLICOT-Reference/src/TB04BD.f.s +.PHONY : src/SLICOT-Reference/src/TB04BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB04BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BD.f.s +.PHONY : src/SLICOT-Reference/src/TB04BD.f.s + +src/SLICOT-Reference/src/TB04BV.o: src/SLICOT-Reference/src/TB04BV.f.o +.PHONY : src/SLICOT-Reference/src/TB04BV.o + +# target to build an object file +src/SLICOT-Reference/src/TB04BV.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BV.f.o +.PHONY : src/SLICOT-Reference/src/TB04BV.f.o + +src/SLICOT-Reference/src/TB04BV.i: src/SLICOT-Reference/src/TB04BV.f.i +.PHONY : src/SLICOT-Reference/src/TB04BV.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB04BV.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BV.f.i +.PHONY : src/SLICOT-Reference/src/TB04BV.f.i + +src/SLICOT-Reference/src/TB04BV.s: src/SLICOT-Reference/src/TB04BV.f.s +.PHONY : src/SLICOT-Reference/src/TB04BV.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB04BV.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BV.f.s +.PHONY : src/SLICOT-Reference/src/TB04BV.f.s + +src/SLICOT-Reference/src/TB04BW.o: src/SLICOT-Reference/src/TB04BW.f.o +.PHONY : src/SLICOT-Reference/src/TB04BW.o + +# target to build an object file +src/SLICOT-Reference/src/TB04BW.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BW.f.o +.PHONY : src/SLICOT-Reference/src/TB04BW.f.o + +src/SLICOT-Reference/src/TB04BW.i: src/SLICOT-Reference/src/TB04BW.f.i +.PHONY : src/SLICOT-Reference/src/TB04BW.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB04BW.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BW.f.i +.PHONY : src/SLICOT-Reference/src/TB04BW.f.i + +src/SLICOT-Reference/src/TB04BW.s: src/SLICOT-Reference/src/TB04BW.f.s +.PHONY : src/SLICOT-Reference/src/TB04BW.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB04BW.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BW.f.s +.PHONY : src/SLICOT-Reference/src/TB04BW.f.s + +src/SLICOT-Reference/src/TB04BX.o: src/SLICOT-Reference/src/TB04BX.f.o +.PHONY : src/SLICOT-Reference/src/TB04BX.o + +# target to build an object file +src/SLICOT-Reference/src/TB04BX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BX.f.o +.PHONY : src/SLICOT-Reference/src/TB04BX.f.o + +src/SLICOT-Reference/src/TB04BX.i: src/SLICOT-Reference/src/TB04BX.f.i +.PHONY : src/SLICOT-Reference/src/TB04BX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB04BX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BX.f.i +.PHONY : src/SLICOT-Reference/src/TB04BX.f.i + +src/SLICOT-Reference/src/TB04BX.s: src/SLICOT-Reference/src/TB04BX.f.s +.PHONY : src/SLICOT-Reference/src/TB04BX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB04BX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BX.f.s +.PHONY : src/SLICOT-Reference/src/TB04BX.f.s + +src/SLICOT-Reference/src/TB04CD.o: src/SLICOT-Reference/src/TB04CD.f.o +.PHONY : src/SLICOT-Reference/src/TB04CD.o + +# target to build an object file +src/SLICOT-Reference/src/TB04CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04CD.f.o +.PHONY : src/SLICOT-Reference/src/TB04CD.f.o + +src/SLICOT-Reference/src/TB04CD.i: src/SLICOT-Reference/src/TB04CD.f.i +.PHONY : src/SLICOT-Reference/src/TB04CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB04CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04CD.f.i +.PHONY : src/SLICOT-Reference/src/TB04CD.f.i + +src/SLICOT-Reference/src/TB04CD.s: src/SLICOT-Reference/src/TB04CD.f.s +.PHONY : src/SLICOT-Reference/src/TB04CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB04CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04CD.f.s +.PHONY : src/SLICOT-Reference/src/TB04CD.f.s + +src/SLICOT-Reference/src/TB05AD.o: src/SLICOT-Reference/src/TB05AD.f.o +.PHONY : src/SLICOT-Reference/src/TB05AD.o + +# target to build an object file +src/SLICOT-Reference/src/TB05AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB05AD.f.o +.PHONY : src/SLICOT-Reference/src/TB05AD.f.o + +src/SLICOT-Reference/src/TB05AD.i: src/SLICOT-Reference/src/TB05AD.f.i +.PHONY : src/SLICOT-Reference/src/TB05AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TB05AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB05AD.f.i +.PHONY : src/SLICOT-Reference/src/TB05AD.f.i + +src/SLICOT-Reference/src/TB05AD.s: src/SLICOT-Reference/src/TB05AD.f.s +.PHONY : src/SLICOT-Reference/src/TB05AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TB05AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB05AD.f.s +.PHONY : src/SLICOT-Reference/src/TB05AD.f.s + +src/SLICOT-Reference/src/TC01OD.o: src/SLICOT-Reference/src/TC01OD.f.o +.PHONY : src/SLICOT-Reference/src/TC01OD.o + +# target to build an object file +src/SLICOT-Reference/src/TC01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC01OD.f.o +.PHONY : src/SLICOT-Reference/src/TC01OD.f.o + +src/SLICOT-Reference/src/TC01OD.i: src/SLICOT-Reference/src/TC01OD.f.i +.PHONY : src/SLICOT-Reference/src/TC01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TC01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC01OD.f.i +.PHONY : src/SLICOT-Reference/src/TC01OD.f.i + +src/SLICOT-Reference/src/TC01OD.s: src/SLICOT-Reference/src/TC01OD.f.s +.PHONY : src/SLICOT-Reference/src/TC01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TC01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC01OD.f.s +.PHONY : src/SLICOT-Reference/src/TC01OD.f.s + +src/SLICOT-Reference/src/TC04AD.o: src/SLICOT-Reference/src/TC04AD.f.o +.PHONY : src/SLICOT-Reference/src/TC04AD.o + +# target to build an object file +src/SLICOT-Reference/src/TC04AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC04AD.f.o +.PHONY : src/SLICOT-Reference/src/TC04AD.f.o + +src/SLICOT-Reference/src/TC04AD.i: src/SLICOT-Reference/src/TC04AD.f.i +.PHONY : src/SLICOT-Reference/src/TC04AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TC04AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC04AD.f.i +.PHONY : src/SLICOT-Reference/src/TC04AD.f.i + +src/SLICOT-Reference/src/TC04AD.s: src/SLICOT-Reference/src/TC04AD.f.s +.PHONY : src/SLICOT-Reference/src/TC04AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TC04AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC04AD.f.s +.PHONY : src/SLICOT-Reference/src/TC04AD.f.s + +src/SLICOT-Reference/src/TC05AD.o: src/SLICOT-Reference/src/TC05AD.f.o +.PHONY : src/SLICOT-Reference/src/TC05AD.o + +# target to build an object file +src/SLICOT-Reference/src/TC05AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC05AD.f.o +.PHONY : src/SLICOT-Reference/src/TC05AD.f.o + +src/SLICOT-Reference/src/TC05AD.i: src/SLICOT-Reference/src/TC05AD.f.i +.PHONY : src/SLICOT-Reference/src/TC05AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TC05AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC05AD.f.i +.PHONY : src/SLICOT-Reference/src/TC05AD.f.i + +src/SLICOT-Reference/src/TC05AD.s: src/SLICOT-Reference/src/TC05AD.f.s +.PHONY : src/SLICOT-Reference/src/TC05AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TC05AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC05AD.f.s +.PHONY : src/SLICOT-Reference/src/TC05AD.f.s + +src/SLICOT-Reference/src/TD03AD.o: src/SLICOT-Reference/src/TD03AD.f.o +.PHONY : src/SLICOT-Reference/src/TD03AD.o + +# target to build an object file +src/SLICOT-Reference/src/TD03AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD03AD.f.o +.PHONY : src/SLICOT-Reference/src/TD03AD.f.o + +src/SLICOT-Reference/src/TD03AD.i: src/SLICOT-Reference/src/TD03AD.f.i +.PHONY : src/SLICOT-Reference/src/TD03AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TD03AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD03AD.f.i +.PHONY : src/SLICOT-Reference/src/TD03AD.f.i + +src/SLICOT-Reference/src/TD03AD.s: src/SLICOT-Reference/src/TD03AD.f.s +.PHONY : src/SLICOT-Reference/src/TD03AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TD03AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD03AD.f.s +.PHONY : src/SLICOT-Reference/src/TD03AD.f.s + +src/SLICOT-Reference/src/TD03AY.o: src/SLICOT-Reference/src/TD03AY.f.o +.PHONY : src/SLICOT-Reference/src/TD03AY.o + +# target to build an object file +src/SLICOT-Reference/src/TD03AY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD03AY.f.o +.PHONY : src/SLICOT-Reference/src/TD03AY.f.o + +src/SLICOT-Reference/src/TD03AY.i: src/SLICOT-Reference/src/TD03AY.f.i +.PHONY : src/SLICOT-Reference/src/TD03AY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TD03AY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD03AY.f.i +.PHONY : src/SLICOT-Reference/src/TD03AY.f.i + +src/SLICOT-Reference/src/TD03AY.s: src/SLICOT-Reference/src/TD03AY.f.s +.PHONY : src/SLICOT-Reference/src/TD03AY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TD03AY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD03AY.f.s +.PHONY : src/SLICOT-Reference/src/TD03AY.f.s + +src/SLICOT-Reference/src/TD04AD.o: src/SLICOT-Reference/src/TD04AD.f.o +.PHONY : src/SLICOT-Reference/src/TD04AD.o + +# target to build an object file +src/SLICOT-Reference/src/TD04AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD04AD.f.o +.PHONY : src/SLICOT-Reference/src/TD04AD.f.o + +src/SLICOT-Reference/src/TD04AD.i: src/SLICOT-Reference/src/TD04AD.f.i +.PHONY : src/SLICOT-Reference/src/TD04AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TD04AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD04AD.f.i +.PHONY : src/SLICOT-Reference/src/TD04AD.f.i + +src/SLICOT-Reference/src/TD04AD.s: src/SLICOT-Reference/src/TD04AD.f.s +.PHONY : src/SLICOT-Reference/src/TD04AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TD04AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD04AD.f.s +.PHONY : src/SLICOT-Reference/src/TD04AD.f.s + +src/SLICOT-Reference/src/TD05AD.o: src/SLICOT-Reference/src/TD05AD.f.o +.PHONY : src/SLICOT-Reference/src/TD05AD.o + +# target to build an object file +src/SLICOT-Reference/src/TD05AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD05AD.f.o +.PHONY : src/SLICOT-Reference/src/TD05AD.f.o + +src/SLICOT-Reference/src/TD05AD.i: src/SLICOT-Reference/src/TD05AD.f.i +.PHONY : src/SLICOT-Reference/src/TD05AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TD05AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD05AD.f.i +.PHONY : src/SLICOT-Reference/src/TD05AD.f.i + +src/SLICOT-Reference/src/TD05AD.s: src/SLICOT-Reference/src/TD05AD.f.s +.PHONY : src/SLICOT-Reference/src/TD05AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TD05AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD05AD.f.s +.PHONY : src/SLICOT-Reference/src/TD05AD.f.s + +src/SLICOT-Reference/src/TF01MD.o: src/SLICOT-Reference/src/TF01MD.f.o +.PHONY : src/SLICOT-Reference/src/TF01MD.o + +# target to build an object file +src/SLICOT-Reference/src/TF01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MD.f.o +.PHONY : src/SLICOT-Reference/src/TF01MD.f.o + +src/SLICOT-Reference/src/TF01MD.i: src/SLICOT-Reference/src/TF01MD.f.i +.PHONY : src/SLICOT-Reference/src/TF01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TF01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MD.f.i +.PHONY : src/SLICOT-Reference/src/TF01MD.f.i + +src/SLICOT-Reference/src/TF01MD.s: src/SLICOT-Reference/src/TF01MD.f.s +.PHONY : src/SLICOT-Reference/src/TF01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TF01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MD.f.s +.PHONY : src/SLICOT-Reference/src/TF01MD.f.s + +src/SLICOT-Reference/src/TF01MX.o: src/SLICOT-Reference/src/TF01MX.f.o +.PHONY : src/SLICOT-Reference/src/TF01MX.o + +# target to build an object file +src/SLICOT-Reference/src/TF01MX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MX.f.o +.PHONY : src/SLICOT-Reference/src/TF01MX.f.o + +src/SLICOT-Reference/src/TF01MX.i: src/SLICOT-Reference/src/TF01MX.f.i +.PHONY : src/SLICOT-Reference/src/TF01MX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TF01MX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MX.f.i +.PHONY : src/SLICOT-Reference/src/TF01MX.f.i + +src/SLICOT-Reference/src/TF01MX.s: src/SLICOT-Reference/src/TF01MX.f.s +.PHONY : src/SLICOT-Reference/src/TF01MX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TF01MX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MX.f.s +.PHONY : src/SLICOT-Reference/src/TF01MX.f.s + +src/SLICOT-Reference/src/TF01MY.o: src/SLICOT-Reference/src/TF01MY.f.o +.PHONY : src/SLICOT-Reference/src/TF01MY.o + +# target to build an object file +src/SLICOT-Reference/src/TF01MY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MY.f.o +.PHONY : src/SLICOT-Reference/src/TF01MY.f.o + +src/SLICOT-Reference/src/TF01MY.i: src/SLICOT-Reference/src/TF01MY.f.i +.PHONY : src/SLICOT-Reference/src/TF01MY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TF01MY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MY.f.i +.PHONY : src/SLICOT-Reference/src/TF01MY.f.i + +src/SLICOT-Reference/src/TF01MY.s: src/SLICOT-Reference/src/TF01MY.f.s +.PHONY : src/SLICOT-Reference/src/TF01MY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TF01MY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MY.f.s +.PHONY : src/SLICOT-Reference/src/TF01MY.f.s + +src/SLICOT-Reference/src/TF01ND.o: src/SLICOT-Reference/src/TF01ND.f.o +.PHONY : src/SLICOT-Reference/src/TF01ND.o + +# target to build an object file +src/SLICOT-Reference/src/TF01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01ND.f.o +.PHONY : src/SLICOT-Reference/src/TF01ND.f.o + +src/SLICOT-Reference/src/TF01ND.i: src/SLICOT-Reference/src/TF01ND.f.i +.PHONY : src/SLICOT-Reference/src/TF01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TF01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01ND.f.i +.PHONY : src/SLICOT-Reference/src/TF01ND.f.i + +src/SLICOT-Reference/src/TF01ND.s: src/SLICOT-Reference/src/TF01ND.f.s +.PHONY : src/SLICOT-Reference/src/TF01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TF01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01ND.f.s +.PHONY : src/SLICOT-Reference/src/TF01ND.f.s + +src/SLICOT-Reference/src/TF01OD.o: src/SLICOT-Reference/src/TF01OD.f.o +.PHONY : src/SLICOT-Reference/src/TF01OD.o + +# target to build an object file +src/SLICOT-Reference/src/TF01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01OD.f.o +.PHONY : src/SLICOT-Reference/src/TF01OD.f.o + +src/SLICOT-Reference/src/TF01OD.i: src/SLICOT-Reference/src/TF01OD.f.i +.PHONY : src/SLICOT-Reference/src/TF01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TF01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01OD.f.i +.PHONY : src/SLICOT-Reference/src/TF01OD.f.i + +src/SLICOT-Reference/src/TF01OD.s: src/SLICOT-Reference/src/TF01OD.f.s +.PHONY : src/SLICOT-Reference/src/TF01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TF01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01OD.f.s +.PHONY : src/SLICOT-Reference/src/TF01OD.f.s + +src/SLICOT-Reference/src/TF01PD.o: src/SLICOT-Reference/src/TF01PD.f.o +.PHONY : src/SLICOT-Reference/src/TF01PD.o + +# target to build an object file +src/SLICOT-Reference/src/TF01PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01PD.f.o +.PHONY : src/SLICOT-Reference/src/TF01PD.f.o + +src/SLICOT-Reference/src/TF01PD.i: src/SLICOT-Reference/src/TF01PD.f.i +.PHONY : src/SLICOT-Reference/src/TF01PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TF01PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01PD.f.i +.PHONY : src/SLICOT-Reference/src/TF01PD.f.i + +src/SLICOT-Reference/src/TF01PD.s: src/SLICOT-Reference/src/TF01PD.f.s +.PHONY : src/SLICOT-Reference/src/TF01PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TF01PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01PD.f.s +.PHONY : src/SLICOT-Reference/src/TF01PD.f.s + +src/SLICOT-Reference/src/TF01QD.o: src/SLICOT-Reference/src/TF01QD.f.o +.PHONY : src/SLICOT-Reference/src/TF01QD.o + +# target to build an object file +src/SLICOT-Reference/src/TF01QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01QD.f.o +.PHONY : src/SLICOT-Reference/src/TF01QD.f.o + +src/SLICOT-Reference/src/TF01QD.i: src/SLICOT-Reference/src/TF01QD.f.i +.PHONY : src/SLICOT-Reference/src/TF01QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TF01QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01QD.f.i +.PHONY : src/SLICOT-Reference/src/TF01QD.f.i + +src/SLICOT-Reference/src/TF01QD.s: src/SLICOT-Reference/src/TF01QD.f.s +.PHONY : src/SLICOT-Reference/src/TF01QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TF01QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01QD.f.s +.PHONY : src/SLICOT-Reference/src/TF01QD.f.s + +src/SLICOT-Reference/src/TF01RD.o: src/SLICOT-Reference/src/TF01RD.f.o +.PHONY : src/SLICOT-Reference/src/TF01RD.o + +# target to build an object file +src/SLICOT-Reference/src/TF01RD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01RD.f.o +.PHONY : src/SLICOT-Reference/src/TF01RD.f.o + +src/SLICOT-Reference/src/TF01RD.i: src/SLICOT-Reference/src/TF01RD.f.i +.PHONY : src/SLICOT-Reference/src/TF01RD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TF01RD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01RD.f.i +.PHONY : src/SLICOT-Reference/src/TF01RD.f.i + +src/SLICOT-Reference/src/TF01RD.s: src/SLICOT-Reference/src/TF01RD.f.s +.PHONY : src/SLICOT-Reference/src/TF01RD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TF01RD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01RD.f.s +.PHONY : src/SLICOT-Reference/src/TF01RD.f.s + +src/SLICOT-Reference/src/TG01AD.o: src/SLICOT-Reference/src/TG01AD.f.o +.PHONY : src/SLICOT-Reference/src/TG01AD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01AD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01AD.f.o +.PHONY : src/SLICOT-Reference/src/TG01AD.f.o + +src/SLICOT-Reference/src/TG01AD.i: src/SLICOT-Reference/src/TG01AD.f.i +.PHONY : src/SLICOT-Reference/src/TG01AD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01AD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01AD.f.i +.PHONY : src/SLICOT-Reference/src/TG01AD.f.i + +src/SLICOT-Reference/src/TG01AD.s: src/SLICOT-Reference/src/TG01AD.f.s +.PHONY : src/SLICOT-Reference/src/TG01AD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01AD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01AD.f.s +.PHONY : src/SLICOT-Reference/src/TG01AD.f.s + +src/SLICOT-Reference/src/TG01AZ.o: src/SLICOT-Reference/src/TG01AZ.f.o +.PHONY : src/SLICOT-Reference/src/TG01AZ.o + +# target to build an object file +src/SLICOT-Reference/src/TG01AZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01AZ.f.o +.PHONY : src/SLICOT-Reference/src/TG01AZ.f.o + +src/SLICOT-Reference/src/TG01AZ.i: src/SLICOT-Reference/src/TG01AZ.f.i +.PHONY : src/SLICOT-Reference/src/TG01AZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01AZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01AZ.f.i +.PHONY : src/SLICOT-Reference/src/TG01AZ.f.i + +src/SLICOT-Reference/src/TG01AZ.s: src/SLICOT-Reference/src/TG01AZ.f.s +.PHONY : src/SLICOT-Reference/src/TG01AZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01AZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01AZ.f.s +.PHONY : src/SLICOT-Reference/src/TG01AZ.f.s + +src/SLICOT-Reference/src/TG01BD.o: src/SLICOT-Reference/src/TG01BD.f.o +.PHONY : src/SLICOT-Reference/src/TG01BD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01BD.f.o +.PHONY : src/SLICOT-Reference/src/TG01BD.f.o + +src/SLICOT-Reference/src/TG01BD.i: src/SLICOT-Reference/src/TG01BD.f.i +.PHONY : src/SLICOT-Reference/src/TG01BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01BD.f.i +.PHONY : src/SLICOT-Reference/src/TG01BD.f.i + +src/SLICOT-Reference/src/TG01BD.s: src/SLICOT-Reference/src/TG01BD.f.s +.PHONY : src/SLICOT-Reference/src/TG01BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01BD.f.s +.PHONY : src/SLICOT-Reference/src/TG01BD.f.s + +src/SLICOT-Reference/src/TG01CD.o: src/SLICOT-Reference/src/TG01CD.f.o +.PHONY : src/SLICOT-Reference/src/TG01CD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01CD.f.o +.PHONY : src/SLICOT-Reference/src/TG01CD.f.o + +src/SLICOT-Reference/src/TG01CD.i: src/SLICOT-Reference/src/TG01CD.f.i +.PHONY : src/SLICOT-Reference/src/TG01CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01CD.f.i +.PHONY : src/SLICOT-Reference/src/TG01CD.f.i + +src/SLICOT-Reference/src/TG01CD.s: src/SLICOT-Reference/src/TG01CD.f.s +.PHONY : src/SLICOT-Reference/src/TG01CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01CD.f.s +.PHONY : src/SLICOT-Reference/src/TG01CD.f.s + +src/SLICOT-Reference/src/TG01DD.o: src/SLICOT-Reference/src/TG01DD.f.o +.PHONY : src/SLICOT-Reference/src/TG01DD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01DD.f.o +.PHONY : src/SLICOT-Reference/src/TG01DD.f.o + +src/SLICOT-Reference/src/TG01DD.i: src/SLICOT-Reference/src/TG01DD.f.i +.PHONY : src/SLICOT-Reference/src/TG01DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01DD.f.i +.PHONY : src/SLICOT-Reference/src/TG01DD.f.i + +src/SLICOT-Reference/src/TG01DD.s: src/SLICOT-Reference/src/TG01DD.f.s +.PHONY : src/SLICOT-Reference/src/TG01DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01DD.f.s +.PHONY : src/SLICOT-Reference/src/TG01DD.f.s + +src/SLICOT-Reference/src/TG01ED.o: src/SLICOT-Reference/src/TG01ED.f.o +.PHONY : src/SLICOT-Reference/src/TG01ED.o + +# target to build an object file +src/SLICOT-Reference/src/TG01ED.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ED.f.o +.PHONY : src/SLICOT-Reference/src/TG01ED.f.o + +src/SLICOT-Reference/src/TG01ED.i: src/SLICOT-Reference/src/TG01ED.f.i +.PHONY : src/SLICOT-Reference/src/TG01ED.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01ED.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ED.f.i +.PHONY : src/SLICOT-Reference/src/TG01ED.f.i + +src/SLICOT-Reference/src/TG01ED.s: src/SLICOT-Reference/src/TG01ED.f.s +.PHONY : src/SLICOT-Reference/src/TG01ED.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01ED.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ED.f.s +.PHONY : src/SLICOT-Reference/src/TG01ED.f.s + +src/SLICOT-Reference/src/TG01FD.o: src/SLICOT-Reference/src/TG01FD.f.o +.PHONY : src/SLICOT-Reference/src/TG01FD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01FD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01FD.f.o +.PHONY : src/SLICOT-Reference/src/TG01FD.f.o + +src/SLICOT-Reference/src/TG01FD.i: src/SLICOT-Reference/src/TG01FD.f.i +.PHONY : src/SLICOT-Reference/src/TG01FD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01FD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01FD.f.i +.PHONY : src/SLICOT-Reference/src/TG01FD.f.i + +src/SLICOT-Reference/src/TG01FD.s: src/SLICOT-Reference/src/TG01FD.f.s +.PHONY : src/SLICOT-Reference/src/TG01FD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01FD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01FD.f.s +.PHONY : src/SLICOT-Reference/src/TG01FD.f.s + +src/SLICOT-Reference/src/TG01FZ.o: src/SLICOT-Reference/src/TG01FZ.f.o +.PHONY : src/SLICOT-Reference/src/TG01FZ.o + +# target to build an object file +src/SLICOT-Reference/src/TG01FZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01FZ.f.o +.PHONY : src/SLICOT-Reference/src/TG01FZ.f.o + +src/SLICOT-Reference/src/TG01FZ.i: src/SLICOT-Reference/src/TG01FZ.f.i +.PHONY : src/SLICOT-Reference/src/TG01FZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01FZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01FZ.f.i +.PHONY : src/SLICOT-Reference/src/TG01FZ.f.i + +src/SLICOT-Reference/src/TG01FZ.s: src/SLICOT-Reference/src/TG01FZ.f.s +.PHONY : src/SLICOT-Reference/src/TG01FZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01FZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01FZ.f.s +.PHONY : src/SLICOT-Reference/src/TG01FZ.f.s + +src/SLICOT-Reference/src/TG01GD.o: src/SLICOT-Reference/src/TG01GD.f.o +.PHONY : src/SLICOT-Reference/src/TG01GD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01GD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01GD.f.o +.PHONY : src/SLICOT-Reference/src/TG01GD.f.o + +src/SLICOT-Reference/src/TG01GD.i: src/SLICOT-Reference/src/TG01GD.f.i +.PHONY : src/SLICOT-Reference/src/TG01GD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01GD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01GD.f.i +.PHONY : src/SLICOT-Reference/src/TG01GD.f.i + +src/SLICOT-Reference/src/TG01GD.s: src/SLICOT-Reference/src/TG01GD.f.s +.PHONY : src/SLICOT-Reference/src/TG01GD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01GD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01GD.f.s +.PHONY : src/SLICOT-Reference/src/TG01GD.f.s + +src/SLICOT-Reference/src/TG01HD.o: src/SLICOT-Reference/src/TG01HD.f.o +.PHONY : src/SLICOT-Reference/src/TG01HD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01HD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HD.f.o +.PHONY : src/SLICOT-Reference/src/TG01HD.f.o + +src/SLICOT-Reference/src/TG01HD.i: src/SLICOT-Reference/src/TG01HD.f.i +.PHONY : src/SLICOT-Reference/src/TG01HD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01HD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HD.f.i +.PHONY : src/SLICOT-Reference/src/TG01HD.f.i + +src/SLICOT-Reference/src/TG01HD.s: src/SLICOT-Reference/src/TG01HD.f.s +.PHONY : src/SLICOT-Reference/src/TG01HD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01HD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HD.f.s +.PHONY : src/SLICOT-Reference/src/TG01HD.f.s + +src/SLICOT-Reference/src/TG01HU.o: src/SLICOT-Reference/src/TG01HU.f.o +.PHONY : src/SLICOT-Reference/src/TG01HU.o + +# target to build an object file +src/SLICOT-Reference/src/TG01HU.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HU.f.o +.PHONY : src/SLICOT-Reference/src/TG01HU.f.o + +src/SLICOT-Reference/src/TG01HU.i: src/SLICOT-Reference/src/TG01HU.f.i +.PHONY : src/SLICOT-Reference/src/TG01HU.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01HU.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HU.f.i +.PHONY : src/SLICOT-Reference/src/TG01HU.f.i + +src/SLICOT-Reference/src/TG01HU.s: src/SLICOT-Reference/src/TG01HU.f.s +.PHONY : src/SLICOT-Reference/src/TG01HU.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01HU.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HU.f.s +.PHONY : src/SLICOT-Reference/src/TG01HU.f.s + +src/SLICOT-Reference/src/TG01HX.o: src/SLICOT-Reference/src/TG01HX.f.o +.PHONY : src/SLICOT-Reference/src/TG01HX.o + +# target to build an object file +src/SLICOT-Reference/src/TG01HX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HX.f.o +.PHONY : src/SLICOT-Reference/src/TG01HX.f.o + +src/SLICOT-Reference/src/TG01HX.i: src/SLICOT-Reference/src/TG01HX.f.i +.PHONY : src/SLICOT-Reference/src/TG01HX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01HX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HX.f.i +.PHONY : src/SLICOT-Reference/src/TG01HX.f.i + +src/SLICOT-Reference/src/TG01HX.s: src/SLICOT-Reference/src/TG01HX.f.s +.PHONY : src/SLICOT-Reference/src/TG01HX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01HX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HX.f.s +.PHONY : src/SLICOT-Reference/src/TG01HX.f.s + +src/SLICOT-Reference/src/TG01HY.o: src/SLICOT-Reference/src/TG01HY.f.o +.PHONY : src/SLICOT-Reference/src/TG01HY.o + +# target to build an object file +src/SLICOT-Reference/src/TG01HY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HY.f.o +.PHONY : src/SLICOT-Reference/src/TG01HY.f.o + +src/SLICOT-Reference/src/TG01HY.i: src/SLICOT-Reference/src/TG01HY.f.i +.PHONY : src/SLICOT-Reference/src/TG01HY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01HY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HY.f.i +.PHONY : src/SLICOT-Reference/src/TG01HY.f.i + +src/SLICOT-Reference/src/TG01HY.s: src/SLICOT-Reference/src/TG01HY.f.s +.PHONY : src/SLICOT-Reference/src/TG01HY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01HY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HY.f.s +.PHONY : src/SLICOT-Reference/src/TG01HY.f.s + +src/SLICOT-Reference/src/TG01ID.o: src/SLICOT-Reference/src/TG01ID.f.o +.PHONY : src/SLICOT-Reference/src/TG01ID.o + +# target to build an object file +src/SLICOT-Reference/src/TG01ID.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ID.f.o +.PHONY : src/SLICOT-Reference/src/TG01ID.f.o + +src/SLICOT-Reference/src/TG01ID.i: src/SLICOT-Reference/src/TG01ID.f.i +.PHONY : src/SLICOT-Reference/src/TG01ID.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01ID.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ID.f.i +.PHONY : src/SLICOT-Reference/src/TG01ID.f.i + +src/SLICOT-Reference/src/TG01ID.s: src/SLICOT-Reference/src/TG01ID.f.s +.PHONY : src/SLICOT-Reference/src/TG01ID.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01ID.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ID.f.s +.PHONY : src/SLICOT-Reference/src/TG01ID.f.s + +src/SLICOT-Reference/src/TG01JD.o: src/SLICOT-Reference/src/TG01JD.f.o +.PHONY : src/SLICOT-Reference/src/TG01JD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01JD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01JD.f.o +.PHONY : src/SLICOT-Reference/src/TG01JD.f.o + +src/SLICOT-Reference/src/TG01JD.i: src/SLICOT-Reference/src/TG01JD.f.i +.PHONY : src/SLICOT-Reference/src/TG01JD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01JD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01JD.f.i +.PHONY : src/SLICOT-Reference/src/TG01JD.f.i + +src/SLICOT-Reference/src/TG01JD.s: src/SLICOT-Reference/src/TG01JD.f.s +.PHONY : src/SLICOT-Reference/src/TG01JD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01JD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01JD.f.s +.PHONY : src/SLICOT-Reference/src/TG01JD.f.s + +src/SLICOT-Reference/src/TG01JY.o: src/SLICOT-Reference/src/TG01JY.f.o +.PHONY : src/SLICOT-Reference/src/TG01JY.o + +# target to build an object file +src/SLICOT-Reference/src/TG01JY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01JY.f.o +.PHONY : src/SLICOT-Reference/src/TG01JY.f.o + +src/SLICOT-Reference/src/TG01JY.i: src/SLICOT-Reference/src/TG01JY.f.i +.PHONY : src/SLICOT-Reference/src/TG01JY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01JY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01JY.f.i +.PHONY : src/SLICOT-Reference/src/TG01JY.f.i + +src/SLICOT-Reference/src/TG01JY.s: src/SLICOT-Reference/src/TG01JY.f.s +.PHONY : src/SLICOT-Reference/src/TG01JY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01JY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01JY.f.s +.PHONY : src/SLICOT-Reference/src/TG01JY.f.s + +src/SLICOT-Reference/src/TG01KD.o: src/SLICOT-Reference/src/TG01KD.f.o +.PHONY : src/SLICOT-Reference/src/TG01KD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01KD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01KD.f.o +.PHONY : src/SLICOT-Reference/src/TG01KD.f.o + +src/SLICOT-Reference/src/TG01KD.i: src/SLICOT-Reference/src/TG01KD.f.i +.PHONY : src/SLICOT-Reference/src/TG01KD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01KD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01KD.f.i +.PHONY : src/SLICOT-Reference/src/TG01KD.f.i + +src/SLICOT-Reference/src/TG01KD.s: src/SLICOT-Reference/src/TG01KD.f.s +.PHONY : src/SLICOT-Reference/src/TG01KD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01KD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01KD.f.s +.PHONY : src/SLICOT-Reference/src/TG01KD.f.s + +src/SLICOT-Reference/src/TG01KZ.o: src/SLICOT-Reference/src/TG01KZ.f.o +.PHONY : src/SLICOT-Reference/src/TG01KZ.o + +# target to build an object file +src/SLICOT-Reference/src/TG01KZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01KZ.f.o +.PHONY : src/SLICOT-Reference/src/TG01KZ.f.o + +src/SLICOT-Reference/src/TG01KZ.i: src/SLICOT-Reference/src/TG01KZ.f.i +.PHONY : src/SLICOT-Reference/src/TG01KZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01KZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01KZ.f.i +.PHONY : src/SLICOT-Reference/src/TG01KZ.f.i + +src/SLICOT-Reference/src/TG01KZ.s: src/SLICOT-Reference/src/TG01KZ.f.s +.PHONY : src/SLICOT-Reference/src/TG01KZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01KZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01KZ.f.s +.PHONY : src/SLICOT-Reference/src/TG01KZ.f.s + +src/SLICOT-Reference/src/TG01LD.o: src/SLICOT-Reference/src/TG01LD.f.o +.PHONY : src/SLICOT-Reference/src/TG01LD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01LD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01LD.f.o +.PHONY : src/SLICOT-Reference/src/TG01LD.f.o + +src/SLICOT-Reference/src/TG01LD.i: src/SLICOT-Reference/src/TG01LD.f.i +.PHONY : src/SLICOT-Reference/src/TG01LD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01LD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01LD.f.i +.PHONY : src/SLICOT-Reference/src/TG01LD.f.i + +src/SLICOT-Reference/src/TG01LD.s: src/SLICOT-Reference/src/TG01LD.f.s +.PHONY : src/SLICOT-Reference/src/TG01LD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01LD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01LD.f.s +.PHONY : src/SLICOT-Reference/src/TG01LD.f.s + +src/SLICOT-Reference/src/TG01LY.o: src/SLICOT-Reference/src/TG01LY.f.o +.PHONY : src/SLICOT-Reference/src/TG01LY.o + +# target to build an object file +src/SLICOT-Reference/src/TG01LY.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01LY.f.o +.PHONY : src/SLICOT-Reference/src/TG01LY.f.o + +src/SLICOT-Reference/src/TG01LY.i: src/SLICOT-Reference/src/TG01LY.f.i +.PHONY : src/SLICOT-Reference/src/TG01LY.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01LY.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01LY.f.i +.PHONY : src/SLICOT-Reference/src/TG01LY.f.i + +src/SLICOT-Reference/src/TG01LY.s: src/SLICOT-Reference/src/TG01LY.f.s +.PHONY : src/SLICOT-Reference/src/TG01LY.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01LY.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01LY.f.s +.PHONY : src/SLICOT-Reference/src/TG01LY.f.s + +src/SLICOT-Reference/src/TG01MD.o: src/SLICOT-Reference/src/TG01MD.f.o +.PHONY : src/SLICOT-Reference/src/TG01MD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01MD.f.o +.PHONY : src/SLICOT-Reference/src/TG01MD.f.o + +src/SLICOT-Reference/src/TG01MD.i: src/SLICOT-Reference/src/TG01MD.f.i +.PHONY : src/SLICOT-Reference/src/TG01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01MD.f.i +.PHONY : src/SLICOT-Reference/src/TG01MD.f.i + +src/SLICOT-Reference/src/TG01MD.s: src/SLICOT-Reference/src/TG01MD.f.s +.PHONY : src/SLICOT-Reference/src/TG01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01MD.f.s +.PHONY : src/SLICOT-Reference/src/TG01MD.f.s + +src/SLICOT-Reference/src/TG01ND.o: src/SLICOT-Reference/src/TG01ND.f.o +.PHONY : src/SLICOT-Reference/src/TG01ND.o + +# target to build an object file +src/SLICOT-Reference/src/TG01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ND.f.o +.PHONY : src/SLICOT-Reference/src/TG01ND.f.o + +src/SLICOT-Reference/src/TG01ND.i: src/SLICOT-Reference/src/TG01ND.f.i +.PHONY : src/SLICOT-Reference/src/TG01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ND.f.i +.PHONY : src/SLICOT-Reference/src/TG01ND.f.i + +src/SLICOT-Reference/src/TG01ND.s: src/SLICOT-Reference/src/TG01ND.f.s +.PHONY : src/SLICOT-Reference/src/TG01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ND.f.s +.PHONY : src/SLICOT-Reference/src/TG01ND.f.s + +src/SLICOT-Reference/src/TG01NX.o: src/SLICOT-Reference/src/TG01NX.f.o +.PHONY : src/SLICOT-Reference/src/TG01NX.o + +# target to build an object file +src/SLICOT-Reference/src/TG01NX.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01NX.f.o +.PHONY : src/SLICOT-Reference/src/TG01NX.f.o + +src/SLICOT-Reference/src/TG01NX.i: src/SLICOT-Reference/src/TG01NX.f.i +.PHONY : src/SLICOT-Reference/src/TG01NX.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01NX.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01NX.f.i +.PHONY : src/SLICOT-Reference/src/TG01NX.f.i + +src/SLICOT-Reference/src/TG01NX.s: src/SLICOT-Reference/src/TG01NX.f.s +.PHONY : src/SLICOT-Reference/src/TG01NX.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01NX.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01NX.f.s +.PHONY : src/SLICOT-Reference/src/TG01NX.f.s + +src/SLICOT-Reference/src/TG01OA.o: src/SLICOT-Reference/src/TG01OA.f.o +.PHONY : src/SLICOT-Reference/src/TG01OA.o + +# target to build an object file +src/SLICOT-Reference/src/TG01OA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OA.f.o +.PHONY : src/SLICOT-Reference/src/TG01OA.f.o + +src/SLICOT-Reference/src/TG01OA.i: src/SLICOT-Reference/src/TG01OA.f.i +.PHONY : src/SLICOT-Reference/src/TG01OA.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01OA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OA.f.i +.PHONY : src/SLICOT-Reference/src/TG01OA.f.i + +src/SLICOT-Reference/src/TG01OA.s: src/SLICOT-Reference/src/TG01OA.f.s +.PHONY : src/SLICOT-Reference/src/TG01OA.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01OA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OA.f.s +.PHONY : src/SLICOT-Reference/src/TG01OA.f.s + +src/SLICOT-Reference/src/TG01OB.o: src/SLICOT-Reference/src/TG01OB.f.o +.PHONY : src/SLICOT-Reference/src/TG01OB.o + +# target to build an object file +src/SLICOT-Reference/src/TG01OB.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OB.f.o +.PHONY : src/SLICOT-Reference/src/TG01OB.f.o + +src/SLICOT-Reference/src/TG01OB.i: src/SLICOT-Reference/src/TG01OB.f.i +.PHONY : src/SLICOT-Reference/src/TG01OB.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01OB.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OB.f.i +.PHONY : src/SLICOT-Reference/src/TG01OB.f.i + +src/SLICOT-Reference/src/TG01OB.s: src/SLICOT-Reference/src/TG01OB.f.s +.PHONY : src/SLICOT-Reference/src/TG01OB.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01OB.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OB.f.s +.PHONY : src/SLICOT-Reference/src/TG01OB.f.s + +src/SLICOT-Reference/src/TG01OD.o: src/SLICOT-Reference/src/TG01OD.f.o +.PHONY : src/SLICOT-Reference/src/TG01OD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01OD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OD.f.o +.PHONY : src/SLICOT-Reference/src/TG01OD.f.o + +src/SLICOT-Reference/src/TG01OD.i: src/SLICOT-Reference/src/TG01OD.f.i +.PHONY : src/SLICOT-Reference/src/TG01OD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01OD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OD.f.i +.PHONY : src/SLICOT-Reference/src/TG01OD.f.i + +src/SLICOT-Reference/src/TG01OD.s: src/SLICOT-Reference/src/TG01OD.f.s +.PHONY : src/SLICOT-Reference/src/TG01OD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01OD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OD.f.s +.PHONY : src/SLICOT-Reference/src/TG01OD.f.s + +src/SLICOT-Reference/src/TG01OZ.o: src/SLICOT-Reference/src/TG01OZ.f.o +.PHONY : src/SLICOT-Reference/src/TG01OZ.o + +# target to build an object file +src/SLICOT-Reference/src/TG01OZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OZ.f.o +.PHONY : src/SLICOT-Reference/src/TG01OZ.f.o + +src/SLICOT-Reference/src/TG01OZ.i: src/SLICOT-Reference/src/TG01OZ.f.i +.PHONY : src/SLICOT-Reference/src/TG01OZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01OZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OZ.f.i +.PHONY : src/SLICOT-Reference/src/TG01OZ.f.i + +src/SLICOT-Reference/src/TG01OZ.s: src/SLICOT-Reference/src/TG01OZ.f.s +.PHONY : src/SLICOT-Reference/src/TG01OZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01OZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OZ.f.s +.PHONY : src/SLICOT-Reference/src/TG01OZ.f.s + +src/SLICOT-Reference/src/TG01PD.o: src/SLICOT-Reference/src/TG01PD.f.o +.PHONY : src/SLICOT-Reference/src/TG01PD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01PD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01PD.f.o +.PHONY : src/SLICOT-Reference/src/TG01PD.f.o + +src/SLICOT-Reference/src/TG01PD.i: src/SLICOT-Reference/src/TG01PD.f.i +.PHONY : src/SLICOT-Reference/src/TG01PD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01PD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01PD.f.i +.PHONY : src/SLICOT-Reference/src/TG01PD.f.i + +src/SLICOT-Reference/src/TG01PD.s: src/SLICOT-Reference/src/TG01PD.f.s +.PHONY : src/SLICOT-Reference/src/TG01PD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01PD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01PD.f.s +.PHONY : src/SLICOT-Reference/src/TG01PD.f.s + +src/SLICOT-Reference/src/TG01QD.o: src/SLICOT-Reference/src/TG01QD.f.o +.PHONY : src/SLICOT-Reference/src/TG01QD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01QD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01QD.f.o +.PHONY : src/SLICOT-Reference/src/TG01QD.f.o + +src/SLICOT-Reference/src/TG01QD.i: src/SLICOT-Reference/src/TG01QD.f.i +.PHONY : src/SLICOT-Reference/src/TG01QD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01QD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01QD.f.i +.PHONY : src/SLICOT-Reference/src/TG01QD.f.i + +src/SLICOT-Reference/src/TG01QD.s: src/SLICOT-Reference/src/TG01QD.f.s +.PHONY : src/SLICOT-Reference/src/TG01QD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01QD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01QD.f.s +.PHONY : src/SLICOT-Reference/src/TG01QD.f.s + +src/SLICOT-Reference/src/TG01WD.o: src/SLICOT-Reference/src/TG01WD.f.o +.PHONY : src/SLICOT-Reference/src/TG01WD.o + +# target to build an object file +src/SLICOT-Reference/src/TG01WD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01WD.f.o +.PHONY : src/SLICOT-Reference/src/TG01WD.f.o + +src/SLICOT-Reference/src/TG01WD.i: src/SLICOT-Reference/src/TG01WD.f.i +.PHONY : src/SLICOT-Reference/src/TG01WD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/TG01WD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01WD.f.i +.PHONY : src/SLICOT-Reference/src/TG01WD.f.i + +src/SLICOT-Reference/src/TG01WD.s: src/SLICOT-Reference/src/TG01WD.f.s +.PHONY : src/SLICOT-Reference/src/TG01WD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/TG01WD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01WD.f.s +.PHONY : src/SLICOT-Reference/src/TG01WD.f.s + +src/SLICOT-Reference/src/UD01BD.o: src/SLICOT-Reference/src/UD01BD.f.o +.PHONY : src/SLICOT-Reference/src/UD01BD.o + +# target to build an object file +src/SLICOT-Reference/src/UD01BD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01BD.f.o +.PHONY : src/SLICOT-Reference/src/UD01BD.f.o + +src/SLICOT-Reference/src/UD01BD.i: src/SLICOT-Reference/src/UD01BD.f.i +.PHONY : src/SLICOT-Reference/src/UD01BD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/UD01BD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01BD.f.i +.PHONY : src/SLICOT-Reference/src/UD01BD.f.i + +src/SLICOT-Reference/src/UD01BD.s: src/SLICOT-Reference/src/UD01BD.f.s +.PHONY : src/SLICOT-Reference/src/UD01BD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/UD01BD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01BD.f.s +.PHONY : src/SLICOT-Reference/src/UD01BD.f.s + +src/SLICOT-Reference/src/UD01CD.o: src/SLICOT-Reference/src/UD01CD.f.o +.PHONY : src/SLICOT-Reference/src/UD01CD.o + +# target to build an object file +src/SLICOT-Reference/src/UD01CD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01CD.f.o +.PHONY : src/SLICOT-Reference/src/UD01CD.f.o + +src/SLICOT-Reference/src/UD01CD.i: src/SLICOT-Reference/src/UD01CD.f.i +.PHONY : src/SLICOT-Reference/src/UD01CD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/UD01CD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01CD.f.i +.PHONY : src/SLICOT-Reference/src/UD01CD.f.i + +src/SLICOT-Reference/src/UD01CD.s: src/SLICOT-Reference/src/UD01CD.f.s +.PHONY : src/SLICOT-Reference/src/UD01CD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/UD01CD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01CD.f.s +.PHONY : src/SLICOT-Reference/src/UD01CD.f.s + +src/SLICOT-Reference/src/UD01DD.o: src/SLICOT-Reference/src/UD01DD.f.o +.PHONY : src/SLICOT-Reference/src/UD01DD.o + +# target to build an object file +src/SLICOT-Reference/src/UD01DD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01DD.f.o +.PHONY : src/SLICOT-Reference/src/UD01DD.f.o + +src/SLICOT-Reference/src/UD01DD.i: src/SLICOT-Reference/src/UD01DD.f.i +.PHONY : src/SLICOT-Reference/src/UD01DD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/UD01DD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01DD.f.i +.PHONY : src/SLICOT-Reference/src/UD01DD.f.i + +src/SLICOT-Reference/src/UD01DD.s: src/SLICOT-Reference/src/UD01DD.f.s +.PHONY : src/SLICOT-Reference/src/UD01DD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/UD01DD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01DD.f.s +.PHONY : src/SLICOT-Reference/src/UD01DD.f.s + +src/SLICOT-Reference/src/UD01MD.o: src/SLICOT-Reference/src/UD01MD.f.o +.PHONY : src/SLICOT-Reference/src/UD01MD.o + +# target to build an object file +src/SLICOT-Reference/src/UD01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01MD.f.o +.PHONY : src/SLICOT-Reference/src/UD01MD.f.o + +src/SLICOT-Reference/src/UD01MD.i: src/SLICOT-Reference/src/UD01MD.f.i +.PHONY : src/SLICOT-Reference/src/UD01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/UD01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01MD.f.i +.PHONY : src/SLICOT-Reference/src/UD01MD.f.i + +src/SLICOT-Reference/src/UD01MD.s: src/SLICOT-Reference/src/UD01MD.f.s +.PHONY : src/SLICOT-Reference/src/UD01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/UD01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01MD.f.s +.PHONY : src/SLICOT-Reference/src/UD01MD.f.s + +src/SLICOT-Reference/src/UD01MZ.o: src/SLICOT-Reference/src/UD01MZ.f.o +.PHONY : src/SLICOT-Reference/src/UD01MZ.o + +# target to build an object file +src/SLICOT-Reference/src/UD01MZ.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01MZ.f.o +.PHONY : src/SLICOT-Reference/src/UD01MZ.f.o + +src/SLICOT-Reference/src/UD01MZ.i: src/SLICOT-Reference/src/UD01MZ.f.i +.PHONY : src/SLICOT-Reference/src/UD01MZ.i + +# target to preprocess a source file +src/SLICOT-Reference/src/UD01MZ.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01MZ.f.i +.PHONY : src/SLICOT-Reference/src/UD01MZ.f.i + +src/SLICOT-Reference/src/UD01MZ.s: src/SLICOT-Reference/src/UD01MZ.f.s +.PHONY : src/SLICOT-Reference/src/UD01MZ.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/UD01MZ.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01MZ.f.s +.PHONY : src/SLICOT-Reference/src/UD01MZ.f.s + +src/SLICOT-Reference/src/UD01ND.o: src/SLICOT-Reference/src/UD01ND.f.o +.PHONY : src/SLICOT-Reference/src/UD01ND.o + +# target to build an object file +src/SLICOT-Reference/src/UD01ND.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01ND.f.o +.PHONY : src/SLICOT-Reference/src/UD01ND.f.o + +src/SLICOT-Reference/src/UD01ND.i: src/SLICOT-Reference/src/UD01ND.f.i +.PHONY : src/SLICOT-Reference/src/UD01ND.i + +# target to preprocess a source file +src/SLICOT-Reference/src/UD01ND.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01ND.f.i +.PHONY : src/SLICOT-Reference/src/UD01ND.f.i + +src/SLICOT-Reference/src/UD01ND.s: src/SLICOT-Reference/src/UD01ND.f.s +.PHONY : src/SLICOT-Reference/src/UD01ND.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/UD01ND.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01ND.f.s +.PHONY : src/SLICOT-Reference/src/UD01ND.f.s + +src/SLICOT-Reference/src/UE01MD.o: src/SLICOT-Reference/src/UE01MD.f.o +.PHONY : src/SLICOT-Reference/src/UE01MD.o + +# target to build an object file +src/SLICOT-Reference/src/UE01MD.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UE01MD.f.o +.PHONY : src/SLICOT-Reference/src/UE01MD.f.o + +src/SLICOT-Reference/src/UE01MD.i: src/SLICOT-Reference/src/UE01MD.f.i +.PHONY : src/SLICOT-Reference/src/UE01MD.i + +# target to preprocess a source file +src/SLICOT-Reference/src/UE01MD.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UE01MD.f.i +.PHONY : src/SLICOT-Reference/src/UE01MD.f.i + +src/SLICOT-Reference/src/UE01MD.s: src/SLICOT-Reference/src/UE01MD.f.s +.PHONY : src/SLICOT-Reference/src/UE01MD.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/UE01MD.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UE01MD.f.s +.PHONY : src/SLICOT-Reference/src/UE01MD.f.s + +src/SLICOT-Reference/src/delctg.o: src/SLICOT-Reference/src/delctg.f.o +.PHONY : src/SLICOT-Reference/src/delctg.o + +# target to build an object file +src/SLICOT-Reference/src/delctg.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/delctg.f.o +.PHONY : src/SLICOT-Reference/src/delctg.f.o + +src/SLICOT-Reference/src/delctg.i: src/SLICOT-Reference/src/delctg.f.i +.PHONY : src/SLICOT-Reference/src/delctg.i + +# target to preprocess a source file +src/SLICOT-Reference/src/delctg.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/delctg.f.i +.PHONY : src/SLICOT-Reference/src/delctg.f.i + +src/SLICOT-Reference/src/delctg.s: src/SLICOT-Reference/src/delctg.f.s +.PHONY : src/SLICOT-Reference/src/delctg.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/delctg.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/delctg.f.s +.PHONY : src/SLICOT-Reference/src/delctg.f.s + +src/SLICOT-Reference/src/select.o: src/SLICOT-Reference/src/select.f.o +.PHONY : src/SLICOT-Reference/src/select.o + +# target to build an object file +src/SLICOT-Reference/src/select.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/select.f.o +.PHONY : src/SLICOT-Reference/src/select.f.o + +src/SLICOT-Reference/src/select.i: src/SLICOT-Reference/src/select.f.i +.PHONY : src/SLICOT-Reference/src/select.i + +# target to preprocess a source file +src/SLICOT-Reference/src/select.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/select.f.i +.PHONY : src/SLICOT-Reference/src/select.f.i + +src/SLICOT-Reference/src/select.s: src/SLICOT-Reference/src/select.f.s +.PHONY : src/SLICOT-Reference/src/select.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/select.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/select.f.s +.PHONY : src/SLICOT-Reference/src/select.f.s + +src/SLICOT-Reference/src/zelctg.o: src/SLICOT-Reference/src/zelctg.f.o +.PHONY : src/SLICOT-Reference/src/zelctg.o + +# target to build an object file +src/SLICOT-Reference/src/zelctg.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/zelctg.f.o +.PHONY : src/SLICOT-Reference/src/zelctg.f.o + +src/SLICOT-Reference/src/zelctg.i: src/SLICOT-Reference/src/zelctg.f.i +.PHONY : src/SLICOT-Reference/src/zelctg.i + +# target to preprocess a source file +src/SLICOT-Reference/src/zelctg.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/zelctg.f.i +.PHONY : src/SLICOT-Reference/src/zelctg.f.i + +src/SLICOT-Reference/src/zelctg.s: src/SLICOT-Reference/src/zelctg.f.s +.PHONY : src/SLICOT-Reference/src/zelctg.s + +# target to generate assembly for a file +src/SLICOT-Reference/src/zelctg.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/zelctg.f.s +.PHONY : src/SLICOT-Reference/src/zelctg.f.s + +src/XERBLA.o: src/XERBLA.f.o +.PHONY : src/XERBLA.o + +# target to build an object file +src/XERBLA.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/XERBLA.f.o +.PHONY : src/XERBLA.f.o + +src/XERBLA.i: src/XERBLA.f.i +.PHONY : src/XERBLA.i + +# target to preprocess a source file +src/XERBLA.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/XERBLA.f.i +.PHONY : src/XERBLA.f.i + +src/XERBLA.s: src/XERBLA.f.s +.PHONY : src/XERBLA.s + +# target to generate assembly for a file +src/XERBLA.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/XERBLA.f.s +.PHONY : src/XERBLA.f.s + +src/ftruefalse.o: src/ftruefalse.f.o +.PHONY : src/ftruefalse.o + +# target to build an object file +src/ftruefalse.f.o: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/ftruefalse.f.o +.PHONY : src/ftruefalse.f.o + +src/ftruefalse.i: src/ftruefalse.f.i +.PHONY : src/ftruefalse.i + +# target to preprocess a source file +src/ftruefalse.f.i: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/ftruefalse.f.i +.PHONY : src/ftruefalse.f.i + +src/ftruefalse.s: src/ftruefalse.f.s +.PHONY : src/ftruefalse.s + +# target to generate assembly for a file +src/ftruefalse.f.s: + cd /home/mcculler/local/projects_sync/Slycot && $(MAKE) $(MAKESILENT) -f slycot/CMakeFiles/_wrapper.dir/build.make slycot/CMakeFiles/_wrapper.dir/src/ftruefalse.f.s +.PHONY : src/ftruefalse.f.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 "... rebuild_cache" + @echo "... wrapper" + @echo "... _wrapper" + @echo "... _wrapper-f2pywrappers.o" + @echo "... _wrapper-f2pywrappers.i" + @echo "... _wrapper-f2pywrappers.s" + @echo "... _wrappermodule.o" + @echo "... _wrappermodule.i" + @echo "... _wrappermodule.s" + @echo "... opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.o" + @echo "... opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.i" + @echo "... opt/conda/user_conda/mcculler/py312/lib/python3.12/site-packages/numpy/f2py/src/fortranobject.s" + @echo "... src/SLICOT-Reference/src/AB01MD.o" + @echo "... src/SLICOT-Reference/src/AB01MD.i" + @echo "... src/SLICOT-Reference/src/AB01MD.s" + @echo "... src/SLICOT-Reference/src/AB01ND.o" + @echo "... src/SLICOT-Reference/src/AB01ND.i" + @echo "... src/SLICOT-Reference/src/AB01ND.s" + @echo "... src/SLICOT-Reference/src/AB01OD.o" + @echo "... src/SLICOT-Reference/src/AB01OD.i" + @echo "... src/SLICOT-Reference/src/AB01OD.s" + @echo "... src/SLICOT-Reference/src/AB04MD.o" + @echo "... src/SLICOT-Reference/src/AB04MD.i" + @echo "... src/SLICOT-Reference/src/AB04MD.s" + @echo "... src/SLICOT-Reference/src/AB05MD.o" + @echo "... src/SLICOT-Reference/src/AB05MD.i" + @echo "... src/SLICOT-Reference/src/AB05MD.s" + @echo "... src/SLICOT-Reference/src/AB05ND.o" + @echo "... src/SLICOT-Reference/src/AB05ND.i" + @echo "... src/SLICOT-Reference/src/AB05ND.s" + @echo "... src/SLICOT-Reference/src/AB05OD.o" + @echo "... src/SLICOT-Reference/src/AB05OD.i" + @echo "... src/SLICOT-Reference/src/AB05OD.s" + @echo "... src/SLICOT-Reference/src/AB05PD.o" + @echo "... src/SLICOT-Reference/src/AB05PD.i" + @echo "... src/SLICOT-Reference/src/AB05PD.s" + @echo "... src/SLICOT-Reference/src/AB05QD.o" + @echo "... src/SLICOT-Reference/src/AB05QD.i" + @echo "... src/SLICOT-Reference/src/AB05QD.s" + @echo "... src/SLICOT-Reference/src/AB05RD.o" + @echo "... src/SLICOT-Reference/src/AB05RD.i" + @echo "... src/SLICOT-Reference/src/AB05RD.s" + @echo "... src/SLICOT-Reference/src/AB05SD.o" + @echo "... src/SLICOT-Reference/src/AB05SD.i" + @echo "... src/SLICOT-Reference/src/AB05SD.s" + @echo "... src/SLICOT-Reference/src/AB07MD.o" + @echo "... src/SLICOT-Reference/src/AB07MD.i" + @echo "... src/SLICOT-Reference/src/AB07MD.s" + @echo "... src/SLICOT-Reference/src/AB07ND.o" + @echo "... src/SLICOT-Reference/src/AB07ND.i" + @echo "... src/SLICOT-Reference/src/AB07ND.s" + @echo "... src/SLICOT-Reference/src/AB08MD.o" + @echo "... src/SLICOT-Reference/src/AB08MD.i" + @echo "... src/SLICOT-Reference/src/AB08MD.s" + @echo "... src/SLICOT-Reference/src/AB08MZ.o" + @echo "... src/SLICOT-Reference/src/AB08MZ.i" + @echo "... src/SLICOT-Reference/src/AB08MZ.s" + @echo "... src/SLICOT-Reference/src/AB08ND.o" + @echo "... src/SLICOT-Reference/src/AB08ND.i" + @echo "... src/SLICOT-Reference/src/AB08ND.s" + @echo "... src/SLICOT-Reference/src/AB08NW.o" + @echo "... src/SLICOT-Reference/src/AB08NW.i" + @echo "... src/SLICOT-Reference/src/AB08NW.s" + @echo "... src/SLICOT-Reference/src/AB08NX.o" + @echo "... src/SLICOT-Reference/src/AB08NX.i" + @echo "... src/SLICOT-Reference/src/AB08NX.s" + @echo "... src/SLICOT-Reference/src/AB08NY.o" + @echo "... src/SLICOT-Reference/src/AB08NY.i" + @echo "... src/SLICOT-Reference/src/AB08NY.s" + @echo "... src/SLICOT-Reference/src/AB08NZ.o" + @echo "... src/SLICOT-Reference/src/AB08NZ.i" + @echo "... src/SLICOT-Reference/src/AB08NZ.s" + @echo "... src/SLICOT-Reference/src/AB09AD.o" + @echo "... src/SLICOT-Reference/src/AB09AD.i" + @echo "... src/SLICOT-Reference/src/AB09AD.s" + @echo "... src/SLICOT-Reference/src/AB09AX.o" + @echo "... src/SLICOT-Reference/src/AB09AX.i" + @echo "... src/SLICOT-Reference/src/AB09AX.s" + @echo "... src/SLICOT-Reference/src/AB09BD.o" + @echo "... src/SLICOT-Reference/src/AB09BD.i" + @echo "... src/SLICOT-Reference/src/AB09BD.s" + @echo "... src/SLICOT-Reference/src/AB09BX.o" + @echo "... src/SLICOT-Reference/src/AB09BX.i" + @echo "... src/SLICOT-Reference/src/AB09BX.s" + @echo "... src/SLICOT-Reference/src/AB09CD.o" + @echo "... src/SLICOT-Reference/src/AB09CD.i" + @echo "... src/SLICOT-Reference/src/AB09CD.s" + @echo "... src/SLICOT-Reference/src/AB09CX.o" + @echo "... src/SLICOT-Reference/src/AB09CX.i" + @echo "... src/SLICOT-Reference/src/AB09CX.s" + @echo "... src/SLICOT-Reference/src/AB09DD.o" + @echo "... src/SLICOT-Reference/src/AB09DD.i" + @echo "... src/SLICOT-Reference/src/AB09DD.s" + @echo "... src/SLICOT-Reference/src/AB09ED.o" + @echo "... src/SLICOT-Reference/src/AB09ED.i" + @echo "... src/SLICOT-Reference/src/AB09ED.s" + @echo "... src/SLICOT-Reference/src/AB09FD.o" + @echo "... src/SLICOT-Reference/src/AB09FD.i" + @echo "... src/SLICOT-Reference/src/AB09FD.s" + @echo "... src/SLICOT-Reference/src/AB09GD.o" + @echo "... src/SLICOT-Reference/src/AB09GD.i" + @echo "... src/SLICOT-Reference/src/AB09GD.s" + @echo "... src/SLICOT-Reference/src/AB09HD.o" + @echo "... src/SLICOT-Reference/src/AB09HD.i" + @echo "... src/SLICOT-Reference/src/AB09HD.s" + @echo "... src/SLICOT-Reference/src/AB09HX.o" + @echo "... src/SLICOT-Reference/src/AB09HX.i" + @echo "... src/SLICOT-Reference/src/AB09HX.s" + @echo "... src/SLICOT-Reference/src/AB09HY.o" + @echo "... src/SLICOT-Reference/src/AB09HY.i" + @echo "... src/SLICOT-Reference/src/AB09HY.s" + @echo "... src/SLICOT-Reference/src/AB09ID.o" + @echo "... src/SLICOT-Reference/src/AB09ID.i" + @echo "... src/SLICOT-Reference/src/AB09ID.s" + @echo "... src/SLICOT-Reference/src/AB09IX.o" + @echo "... src/SLICOT-Reference/src/AB09IX.i" + @echo "... src/SLICOT-Reference/src/AB09IX.s" + @echo "... src/SLICOT-Reference/src/AB09IY.o" + @echo "... src/SLICOT-Reference/src/AB09IY.i" + @echo "... src/SLICOT-Reference/src/AB09IY.s" + @echo "... src/SLICOT-Reference/src/AB09JD.o" + @echo "... src/SLICOT-Reference/src/AB09JD.i" + @echo "... src/SLICOT-Reference/src/AB09JD.s" + @echo "... src/SLICOT-Reference/src/AB09JV.o" + @echo "... src/SLICOT-Reference/src/AB09JV.i" + @echo "... src/SLICOT-Reference/src/AB09JV.s" + @echo "... src/SLICOT-Reference/src/AB09JW.o" + @echo "... src/SLICOT-Reference/src/AB09JW.i" + @echo "... src/SLICOT-Reference/src/AB09JW.s" + @echo "... src/SLICOT-Reference/src/AB09JX.o" + @echo "... src/SLICOT-Reference/src/AB09JX.i" + @echo "... src/SLICOT-Reference/src/AB09JX.s" + @echo "... src/SLICOT-Reference/src/AB09KD.o" + @echo "... src/SLICOT-Reference/src/AB09KD.i" + @echo "... src/SLICOT-Reference/src/AB09KD.s" + @echo "... src/SLICOT-Reference/src/AB09KX.o" + @echo "... src/SLICOT-Reference/src/AB09KX.i" + @echo "... src/SLICOT-Reference/src/AB09KX.s" + @echo "... src/SLICOT-Reference/src/AB09MD.o" + @echo "... src/SLICOT-Reference/src/AB09MD.i" + @echo "... src/SLICOT-Reference/src/AB09MD.s" + @echo "... src/SLICOT-Reference/src/AB09ND.o" + @echo "... src/SLICOT-Reference/src/AB09ND.i" + @echo "... src/SLICOT-Reference/src/AB09ND.s" + @echo "... src/SLICOT-Reference/src/AB13AD.o" + @echo "... src/SLICOT-Reference/src/AB13AD.i" + @echo "... src/SLICOT-Reference/src/AB13AD.s" + @echo "... src/SLICOT-Reference/src/AB13AX.o" + @echo "... src/SLICOT-Reference/src/AB13AX.i" + @echo "... src/SLICOT-Reference/src/AB13AX.s" + @echo "... src/SLICOT-Reference/src/AB13BD.o" + @echo "... src/SLICOT-Reference/src/AB13BD.i" + @echo "... src/SLICOT-Reference/src/AB13BD.s" + @echo "... src/SLICOT-Reference/src/AB13CD.o" + @echo "... src/SLICOT-Reference/src/AB13CD.i" + @echo "... src/SLICOT-Reference/src/AB13CD.s" + @echo "... src/SLICOT-Reference/src/AB13DD.o" + @echo "... src/SLICOT-Reference/src/AB13DD.i" + @echo "... src/SLICOT-Reference/src/AB13DD.s" + @echo "... src/SLICOT-Reference/src/AB13DX.o" + @echo "... src/SLICOT-Reference/src/AB13DX.i" + @echo "... src/SLICOT-Reference/src/AB13DX.s" + @echo "... src/SLICOT-Reference/src/AB13ED.o" + @echo "... src/SLICOT-Reference/src/AB13ED.i" + @echo "... src/SLICOT-Reference/src/AB13ED.s" + @echo "... src/SLICOT-Reference/src/AB13FD.o" + @echo "... src/SLICOT-Reference/src/AB13FD.i" + @echo "... src/SLICOT-Reference/src/AB13FD.s" + @echo "... src/SLICOT-Reference/src/AB13HD.o" + @echo "... src/SLICOT-Reference/src/AB13HD.i" + @echo "... src/SLICOT-Reference/src/AB13HD.s" + @echo "... src/SLICOT-Reference/src/AB13ID.o" + @echo "... src/SLICOT-Reference/src/AB13ID.i" + @echo "... src/SLICOT-Reference/src/AB13ID.s" + @echo "... src/SLICOT-Reference/src/AB13MD.o" + @echo "... src/SLICOT-Reference/src/AB13MD.i" + @echo "... src/SLICOT-Reference/src/AB13MD.s" + @echo "... src/SLICOT-Reference/src/AB8NXZ.o" + @echo "... src/SLICOT-Reference/src/AB8NXZ.i" + @echo "... src/SLICOT-Reference/src/AB8NXZ.s" + @echo "... src/SLICOT-Reference/src/AG07BD.o" + @echo "... src/SLICOT-Reference/src/AG07BD.i" + @echo "... src/SLICOT-Reference/src/AG07BD.s" + @echo "... src/SLICOT-Reference/src/AG08BD.o" + @echo "... src/SLICOT-Reference/src/AG08BD.i" + @echo "... src/SLICOT-Reference/src/AG08BD.s" + @echo "... src/SLICOT-Reference/src/AG08BY.o" + @echo "... src/SLICOT-Reference/src/AG08BY.i" + @echo "... src/SLICOT-Reference/src/AG08BY.s" + @echo "... src/SLICOT-Reference/src/AG08BZ.o" + @echo "... src/SLICOT-Reference/src/AG08BZ.i" + @echo "... src/SLICOT-Reference/src/AG08BZ.s" + @echo "... src/SLICOT-Reference/src/AG8BYZ.o" + @echo "... src/SLICOT-Reference/src/AG8BYZ.i" + @echo "... src/SLICOT-Reference/src/AG8BYZ.s" + @echo "... src/SLICOT-Reference/src/BB01AD.o" + @echo "... src/SLICOT-Reference/src/BB01AD.i" + @echo "... src/SLICOT-Reference/src/BB01AD.s" + @echo "... src/SLICOT-Reference/src/BB02AD.o" + @echo "... src/SLICOT-Reference/src/BB02AD.i" + @echo "... src/SLICOT-Reference/src/BB02AD.s" + @echo "... src/SLICOT-Reference/src/BB03AD.o" + @echo "... src/SLICOT-Reference/src/BB03AD.i" + @echo "... src/SLICOT-Reference/src/BB03AD.s" + @echo "... src/SLICOT-Reference/src/BB04AD.o" + @echo "... src/SLICOT-Reference/src/BB04AD.i" + @echo "... src/SLICOT-Reference/src/BB04AD.s" + @echo "... src/SLICOT-Reference/src/BD01AD.o" + @echo "... src/SLICOT-Reference/src/BD01AD.i" + @echo "... src/SLICOT-Reference/src/BD01AD.s" + @echo "... src/SLICOT-Reference/src/BD02AD.o" + @echo "... src/SLICOT-Reference/src/BD02AD.i" + @echo "... src/SLICOT-Reference/src/BD02AD.s" + @echo "... src/SLICOT-Reference/src/DE01OD.o" + @echo "... src/SLICOT-Reference/src/DE01OD.i" + @echo "... src/SLICOT-Reference/src/DE01OD.s" + @echo "... src/SLICOT-Reference/src/DE01PD.o" + @echo "... src/SLICOT-Reference/src/DE01PD.i" + @echo "... src/SLICOT-Reference/src/DE01PD.s" + @echo "... src/SLICOT-Reference/src/DF01MD.o" + @echo "... src/SLICOT-Reference/src/DF01MD.i" + @echo "... src/SLICOT-Reference/src/DF01MD.s" + @echo "... src/SLICOT-Reference/src/DG01MD.o" + @echo "... src/SLICOT-Reference/src/DG01MD.i" + @echo "... src/SLICOT-Reference/src/DG01MD.s" + @echo "... src/SLICOT-Reference/src/DG01ND.o" + @echo "... src/SLICOT-Reference/src/DG01ND.i" + @echo "... src/SLICOT-Reference/src/DG01ND.s" + @echo "... src/SLICOT-Reference/src/DG01NY.o" + @echo "... src/SLICOT-Reference/src/DG01NY.i" + @echo "... src/SLICOT-Reference/src/DG01NY.s" + @echo "... src/SLICOT-Reference/src/DG01OD.o" + @echo "... src/SLICOT-Reference/src/DG01OD.i" + @echo "... src/SLICOT-Reference/src/DG01OD.s" + @echo "... src/SLICOT-Reference/src/DK01MD.o" + @echo "... src/SLICOT-Reference/src/DK01MD.i" + @echo "... src/SLICOT-Reference/src/DK01MD.s" + @echo "... src/SLICOT-Reference/src/FB01QD.o" + @echo "... src/SLICOT-Reference/src/FB01QD.i" + @echo "... src/SLICOT-Reference/src/FB01QD.s" + @echo "... src/SLICOT-Reference/src/FB01RD.o" + @echo "... src/SLICOT-Reference/src/FB01RD.i" + @echo "... src/SLICOT-Reference/src/FB01RD.s" + @echo "... src/SLICOT-Reference/src/FB01SD.o" + @echo "... src/SLICOT-Reference/src/FB01SD.i" + @echo "... src/SLICOT-Reference/src/FB01SD.s" + @echo "... src/SLICOT-Reference/src/FB01TD.o" + @echo "... src/SLICOT-Reference/src/FB01TD.i" + @echo "... src/SLICOT-Reference/src/FB01TD.s" + @echo "... src/SLICOT-Reference/src/FB01VD.o" + @echo "... src/SLICOT-Reference/src/FB01VD.i" + @echo "... src/SLICOT-Reference/src/FB01VD.s" + @echo "... src/SLICOT-Reference/src/FD01AD.o" + @echo "... src/SLICOT-Reference/src/FD01AD.i" + @echo "... src/SLICOT-Reference/src/FD01AD.s" + @echo "... src/SLICOT-Reference/src/IB01AD.o" + @echo "... src/SLICOT-Reference/src/IB01AD.i" + @echo "... src/SLICOT-Reference/src/IB01AD.s" + @echo "... src/SLICOT-Reference/src/IB01BD.o" + @echo "... src/SLICOT-Reference/src/IB01BD.i" + @echo "... src/SLICOT-Reference/src/IB01BD.s" + @echo "... src/SLICOT-Reference/src/IB01CD.o" + @echo "... src/SLICOT-Reference/src/IB01CD.i" + @echo "... src/SLICOT-Reference/src/IB01CD.s" + @echo "... src/SLICOT-Reference/src/IB01MD.o" + @echo "... src/SLICOT-Reference/src/IB01MD.i" + @echo "... src/SLICOT-Reference/src/IB01MD.s" + @echo "... src/SLICOT-Reference/src/IB01MY.o" + @echo "... src/SLICOT-Reference/src/IB01MY.i" + @echo "... src/SLICOT-Reference/src/IB01MY.s" + @echo "... src/SLICOT-Reference/src/IB01ND.o" + @echo "... src/SLICOT-Reference/src/IB01ND.i" + @echo "... src/SLICOT-Reference/src/IB01ND.s" + @echo "... src/SLICOT-Reference/src/IB01OD.o" + @echo "... src/SLICOT-Reference/src/IB01OD.i" + @echo "... src/SLICOT-Reference/src/IB01OD.s" + @echo "... src/SLICOT-Reference/src/IB01OY.o" + @echo "... src/SLICOT-Reference/src/IB01OY.i" + @echo "... src/SLICOT-Reference/src/IB01OY.s" + @echo "... src/SLICOT-Reference/src/IB01PD.o" + @echo "... src/SLICOT-Reference/src/IB01PD.i" + @echo "... src/SLICOT-Reference/src/IB01PD.s" + @echo "... src/SLICOT-Reference/src/IB01PX.o" + @echo "... src/SLICOT-Reference/src/IB01PX.i" + @echo "... src/SLICOT-Reference/src/IB01PX.s" + @echo "... src/SLICOT-Reference/src/IB01PY.o" + @echo "... src/SLICOT-Reference/src/IB01PY.i" + @echo "... src/SLICOT-Reference/src/IB01PY.s" + @echo "... src/SLICOT-Reference/src/IB01QD.o" + @echo "... src/SLICOT-Reference/src/IB01QD.i" + @echo "... src/SLICOT-Reference/src/IB01QD.s" + @echo "... src/SLICOT-Reference/src/IB01RD.o" + @echo "... src/SLICOT-Reference/src/IB01RD.i" + @echo "... src/SLICOT-Reference/src/IB01RD.s" + @echo "... src/SLICOT-Reference/src/IB03AD.o" + @echo "... src/SLICOT-Reference/src/IB03AD.i" + @echo "... src/SLICOT-Reference/src/IB03AD.s" + @echo "... src/SLICOT-Reference/src/IB03BD.o" + @echo "... src/SLICOT-Reference/src/IB03BD.i" + @echo "... src/SLICOT-Reference/src/IB03BD.s" + @echo "... src/SLICOT-Reference/src/MA01AD.o" + @echo "... src/SLICOT-Reference/src/MA01AD.i" + @echo "... src/SLICOT-Reference/src/MA01AD.s" + @echo "... src/SLICOT-Reference/src/MA01BD.o" + @echo "... src/SLICOT-Reference/src/MA01BD.i" + @echo "... src/SLICOT-Reference/src/MA01BD.s" + @echo "... src/SLICOT-Reference/src/MA01BZ.o" + @echo "... src/SLICOT-Reference/src/MA01BZ.i" + @echo "... src/SLICOT-Reference/src/MA01BZ.s" + @echo "... src/SLICOT-Reference/src/MA01CD.o" + @echo "... src/SLICOT-Reference/src/MA01CD.i" + @echo "... src/SLICOT-Reference/src/MA01CD.s" + @echo "... src/SLICOT-Reference/src/MA01DD.o" + @echo "... src/SLICOT-Reference/src/MA01DD.i" + @echo "... src/SLICOT-Reference/src/MA01DD.s" + @echo "... src/SLICOT-Reference/src/MA01DZ.o" + @echo "... src/SLICOT-Reference/src/MA01DZ.i" + @echo "... src/SLICOT-Reference/src/MA01DZ.s" + @echo "... src/SLICOT-Reference/src/MA02AD.o" + @echo "... src/SLICOT-Reference/src/MA02AD.i" + @echo "... src/SLICOT-Reference/src/MA02AD.s" + @echo "... src/SLICOT-Reference/src/MA02AZ.o" + @echo "... src/SLICOT-Reference/src/MA02AZ.i" + @echo "... src/SLICOT-Reference/src/MA02AZ.s" + @echo "... src/SLICOT-Reference/src/MA02BD.o" + @echo "... src/SLICOT-Reference/src/MA02BD.i" + @echo "... src/SLICOT-Reference/src/MA02BD.s" + @echo "... src/SLICOT-Reference/src/MA02BZ.o" + @echo "... src/SLICOT-Reference/src/MA02BZ.i" + @echo "... src/SLICOT-Reference/src/MA02BZ.s" + @echo "... src/SLICOT-Reference/src/MA02CD.o" + @echo "... src/SLICOT-Reference/src/MA02CD.i" + @echo "... src/SLICOT-Reference/src/MA02CD.s" + @echo "... src/SLICOT-Reference/src/MA02CZ.o" + @echo "... src/SLICOT-Reference/src/MA02CZ.i" + @echo "... src/SLICOT-Reference/src/MA02CZ.s" + @echo "... src/SLICOT-Reference/src/MA02DD.o" + @echo "... src/SLICOT-Reference/src/MA02DD.i" + @echo "... src/SLICOT-Reference/src/MA02DD.s" + @echo "... src/SLICOT-Reference/src/MA02ED.o" + @echo "... src/SLICOT-Reference/src/MA02ED.i" + @echo "... src/SLICOT-Reference/src/MA02ED.s" + @echo "... src/SLICOT-Reference/src/MA02ES.o" + @echo "... src/SLICOT-Reference/src/MA02ES.i" + @echo "... src/SLICOT-Reference/src/MA02ES.s" + @echo "... src/SLICOT-Reference/src/MA02EZ.o" + @echo "... src/SLICOT-Reference/src/MA02EZ.i" + @echo "... src/SLICOT-Reference/src/MA02EZ.s" + @echo "... src/SLICOT-Reference/src/MA02FD.o" + @echo "... src/SLICOT-Reference/src/MA02FD.i" + @echo "... src/SLICOT-Reference/src/MA02FD.s" + @echo "... src/SLICOT-Reference/src/MA02GD.o" + @echo "... src/SLICOT-Reference/src/MA02GD.i" + @echo "... src/SLICOT-Reference/src/MA02GD.s" + @echo "... src/SLICOT-Reference/src/MA02GZ.o" + @echo "... src/SLICOT-Reference/src/MA02GZ.i" + @echo "... src/SLICOT-Reference/src/MA02GZ.s" + @echo "... src/SLICOT-Reference/src/MA02HD.o" + @echo "... src/SLICOT-Reference/src/MA02HD.i" + @echo "... src/SLICOT-Reference/src/MA02HD.s" + @echo "... src/SLICOT-Reference/src/MA02HZ.o" + @echo "... src/SLICOT-Reference/src/MA02HZ.i" + @echo "... src/SLICOT-Reference/src/MA02HZ.s" + @echo "... src/SLICOT-Reference/src/MA02ID.o" + @echo "... src/SLICOT-Reference/src/MA02ID.i" + @echo "... src/SLICOT-Reference/src/MA02ID.s" + @echo "... src/SLICOT-Reference/src/MA02IZ.o" + @echo "... src/SLICOT-Reference/src/MA02IZ.i" + @echo "... src/SLICOT-Reference/src/MA02IZ.s" + @echo "... src/SLICOT-Reference/src/MA02JD.o" + @echo "... src/SLICOT-Reference/src/MA02JD.i" + @echo "... src/SLICOT-Reference/src/MA02JD.s" + @echo "... src/SLICOT-Reference/src/MA02JZ.o" + @echo "... src/SLICOT-Reference/src/MA02JZ.i" + @echo "... src/SLICOT-Reference/src/MA02JZ.s" + @echo "... src/SLICOT-Reference/src/MA02MD.o" + @echo "... src/SLICOT-Reference/src/MA02MD.i" + @echo "... src/SLICOT-Reference/src/MA02MD.s" + @echo "... src/SLICOT-Reference/src/MA02MZ.o" + @echo "... src/SLICOT-Reference/src/MA02MZ.i" + @echo "... src/SLICOT-Reference/src/MA02MZ.s" + @echo "... src/SLICOT-Reference/src/MA02NZ.o" + @echo "... src/SLICOT-Reference/src/MA02NZ.i" + @echo "... src/SLICOT-Reference/src/MA02NZ.s" + @echo "... src/SLICOT-Reference/src/MA02OD.o" + @echo "... src/SLICOT-Reference/src/MA02OD.i" + @echo "... src/SLICOT-Reference/src/MA02OD.s" + @echo "... src/SLICOT-Reference/src/MA02OZ.o" + @echo "... src/SLICOT-Reference/src/MA02OZ.i" + @echo "... src/SLICOT-Reference/src/MA02OZ.s" + @echo "... src/SLICOT-Reference/src/MA02PD.o" + @echo "... src/SLICOT-Reference/src/MA02PD.i" + @echo "... src/SLICOT-Reference/src/MA02PD.s" + @echo "... src/SLICOT-Reference/src/MA02PZ.o" + @echo "... src/SLICOT-Reference/src/MA02PZ.i" + @echo "... src/SLICOT-Reference/src/MA02PZ.s" + @echo "... src/SLICOT-Reference/src/MA02RD.o" + @echo "... src/SLICOT-Reference/src/MA02RD.i" + @echo "... src/SLICOT-Reference/src/MA02RD.s" + @echo "... src/SLICOT-Reference/src/MA02SD.o" + @echo "... src/SLICOT-Reference/src/MA02SD.i" + @echo "... src/SLICOT-Reference/src/MA02SD.s" + @echo "... src/SLICOT-Reference/src/MB01KD.o" + @echo "... src/SLICOT-Reference/src/MB01KD.i" + @echo "... src/SLICOT-Reference/src/MB01KD.s" + @echo "... src/SLICOT-Reference/src/MB01LD.o" + @echo "... src/SLICOT-Reference/src/MB01LD.i" + @echo "... src/SLICOT-Reference/src/MB01LD.s" + @echo "... src/SLICOT-Reference/src/MB01MD.o" + @echo "... src/SLICOT-Reference/src/MB01MD.i" + @echo "... src/SLICOT-Reference/src/MB01MD.s" + @echo "... src/SLICOT-Reference/src/MB01ND.o" + @echo "... src/SLICOT-Reference/src/MB01ND.i" + @echo "... src/SLICOT-Reference/src/MB01ND.s" + @echo "... src/SLICOT-Reference/src/MB01OC.o" + @echo "... src/SLICOT-Reference/src/MB01OC.i" + @echo "... src/SLICOT-Reference/src/MB01OC.s" + @echo "... src/SLICOT-Reference/src/MB01OD.o" + @echo "... src/SLICOT-Reference/src/MB01OD.i" + @echo "... src/SLICOT-Reference/src/MB01OD.s" + @echo "... src/SLICOT-Reference/src/MB01OE.o" + @echo "... src/SLICOT-Reference/src/MB01OE.i" + @echo "... src/SLICOT-Reference/src/MB01OE.s" + @echo "... src/SLICOT-Reference/src/MB01OH.o" + @echo "... src/SLICOT-Reference/src/MB01OH.i" + @echo "... src/SLICOT-Reference/src/MB01OH.s" + @echo "... src/SLICOT-Reference/src/MB01OO.o" + @echo "... src/SLICOT-Reference/src/MB01OO.i" + @echo "... src/SLICOT-Reference/src/MB01OO.s" + @echo "... src/SLICOT-Reference/src/MB01OS.o" + @echo "... src/SLICOT-Reference/src/MB01OS.i" + @echo "... src/SLICOT-Reference/src/MB01OS.s" + @echo "... src/SLICOT-Reference/src/MB01OT.o" + @echo "... src/SLICOT-Reference/src/MB01OT.i" + @echo "... src/SLICOT-Reference/src/MB01OT.s" + @echo "... src/SLICOT-Reference/src/MB01PD.o" + @echo "... src/SLICOT-Reference/src/MB01PD.i" + @echo "... src/SLICOT-Reference/src/MB01PD.s" + @echo "... src/SLICOT-Reference/src/MB01QD.o" + @echo "... src/SLICOT-Reference/src/MB01QD.i" + @echo "... src/SLICOT-Reference/src/MB01QD.s" + @echo "... src/SLICOT-Reference/src/MB01RB.o" + @echo "... src/SLICOT-Reference/src/MB01RB.i" + @echo "... src/SLICOT-Reference/src/MB01RB.s" + @echo "... src/SLICOT-Reference/src/MB01RD.o" + @echo "... src/SLICOT-Reference/src/MB01RD.i" + @echo "... src/SLICOT-Reference/src/MB01RD.s" + @echo "... src/SLICOT-Reference/src/MB01RH.o" + @echo "... src/SLICOT-Reference/src/MB01RH.i" + @echo "... src/SLICOT-Reference/src/MB01RH.s" + @echo "... src/SLICOT-Reference/src/MB01RT.o" + @echo "... src/SLICOT-Reference/src/MB01RT.i" + @echo "... src/SLICOT-Reference/src/MB01RT.s" + @echo "... src/SLICOT-Reference/src/MB01RU.o" + @echo "... src/SLICOT-Reference/src/MB01RU.i" + @echo "... src/SLICOT-Reference/src/MB01RU.s" + @echo "... src/SLICOT-Reference/src/MB01RW.o" + @echo "... src/SLICOT-Reference/src/MB01RW.i" + @echo "... src/SLICOT-Reference/src/MB01RW.s" + @echo "... src/SLICOT-Reference/src/MB01RX.o" + @echo "... src/SLICOT-Reference/src/MB01RX.i" + @echo "... src/SLICOT-Reference/src/MB01RX.s" + @echo "... src/SLICOT-Reference/src/MB01RY.o" + @echo "... src/SLICOT-Reference/src/MB01RY.i" + @echo "... src/SLICOT-Reference/src/MB01RY.s" + @echo "... src/SLICOT-Reference/src/MB01SD.o" + @echo "... src/SLICOT-Reference/src/MB01SD.i" + @echo "... src/SLICOT-Reference/src/MB01SD.s" + @echo "... src/SLICOT-Reference/src/MB01SS.o" + @echo "... src/SLICOT-Reference/src/MB01SS.i" + @echo "... src/SLICOT-Reference/src/MB01SS.s" + @echo "... src/SLICOT-Reference/src/MB01TD.o" + @echo "... src/SLICOT-Reference/src/MB01TD.i" + @echo "... src/SLICOT-Reference/src/MB01TD.s" + @echo "... src/SLICOT-Reference/src/MB01UD.o" + @echo "... src/SLICOT-Reference/src/MB01UD.i" + @echo "... src/SLICOT-Reference/src/MB01UD.s" + @echo "... src/SLICOT-Reference/src/MB01UW.o" + @echo "... src/SLICOT-Reference/src/MB01UW.i" + @echo "... src/SLICOT-Reference/src/MB01UW.s" + @echo "... src/SLICOT-Reference/src/MB01UX.o" + @echo "... src/SLICOT-Reference/src/MB01UX.i" + @echo "... src/SLICOT-Reference/src/MB01UX.s" + @echo "... src/SLICOT-Reference/src/MB01UY.o" + @echo "... src/SLICOT-Reference/src/MB01UY.i" + @echo "... src/SLICOT-Reference/src/MB01UY.s" + @echo "... src/SLICOT-Reference/src/MB01UZ.o" + @echo "... src/SLICOT-Reference/src/MB01UZ.i" + @echo "... src/SLICOT-Reference/src/MB01UZ.s" + @echo "... src/SLICOT-Reference/src/MB01VD.o" + @echo "... src/SLICOT-Reference/src/MB01VD.i" + @echo "... src/SLICOT-Reference/src/MB01VD.s" + @echo "... src/SLICOT-Reference/src/MB01WD.o" + @echo "... src/SLICOT-Reference/src/MB01WD.i" + @echo "... src/SLICOT-Reference/src/MB01WD.s" + @echo "... src/SLICOT-Reference/src/MB01XD.o" + @echo "... src/SLICOT-Reference/src/MB01XD.i" + @echo "... src/SLICOT-Reference/src/MB01XD.s" + @echo "... src/SLICOT-Reference/src/MB01XY.o" + @echo "... src/SLICOT-Reference/src/MB01XY.i" + @echo "... src/SLICOT-Reference/src/MB01XY.s" + @echo "... src/SLICOT-Reference/src/MB01YD.o" + @echo "... src/SLICOT-Reference/src/MB01YD.i" + @echo "... src/SLICOT-Reference/src/MB01YD.s" + @echo "... src/SLICOT-Reference/src/MB01ZD.o" + @echo "... src/SLICOT-Reference/src/MB01ZD.i" + @echo "... src/SLICOT-Reference/src/MB01ZD.s" + @echo "... src/SLICOT-Reference/src/MB02CD.o" + @echo "... src/SLICOT-Reference/src/MB02CD.i" + @echo "... src/SLICOT-Reference/src/MB02CD.s" + @echo "... src/SLICOT-Reference/src/MB02CU.o" + @echo "... src/SLICOT-Reference/src/MB02CU.i" + @echo "... src/SLICOT-Reference/src/MB02CU.s" + @echo "... src/SLICOT-Reference/src/MB02CV.o" + @echo "... src/SLICOT-Reference/src/MB02CV.i" + @echo "... src/SLICOT-Reference/src/MB02CV.s" + @echo "... src/SLICOT-Reference/src/MB02CX.o" + @echo "... src/SLICOT-Reference/src/MB02CX.i" + @echo "... src/SLICOT-Reference/src/MB02CX.s" + @echo "... src/SLICOT-Reference/src/MB02CY.o" + @echo "... src/SLICOT-Reference/src/MB02CY.i" + @echo "... src/SLICOT-Reference/src/MB02CY.s" + @echo "... src/SLICOT-Reference/src/MB02DD.o" + @echo "... src/SLICOT-Reference/src/MB02DD.i" + @echo "... src/SLICOT-Reference/src/MB02DD.s" + @echo "... src/SLICOT-Reference/src/MB02ED.o" + @echo "... src/SLICOT-Reference/src/MB02ED.i" + @echo "... src/SLICOT-Reference/src/MB02ED.s" + @echo "... src/SLICOT-Reference/src/MB02FD.o" + @echo "... src/SLICOT-Reference/src/MB02FD.i" + @echo "... src/SLICOT-Reference/src/MB02FD.s" + @echo "... src/SLICOT-Reference/src/MB02GD.o" + @echo "... src/SLICOT-Reference/src/MB02GD.i" + @echo "... src/SLICOT-Reference/src/MB02GD.s" + @echo "... src/SLICOT-Reference/src/MB02HD.o" + @echo "... src/SLICOT-Reference/src/MB02HD.i" + @echo "... src/SLICOT-Reference/src/MB02HD.s" + @echo "... src/SLICOT-Reference/src/MB02ID.o" + @echo "... src/SLICOT-Reference/src/MB02ID.i" + @echo "... src/SLICOT-Reference/src/MB02ID.s" + @echo "... src/SLICOT-Reference/src/MB02JD.o" + @echo "... src/SLICOT-Reference/src/MB02JD.i" + @echo "... src/SLICOT-Reference/src/MB02JD.s" + @echo "... src/SLICOT-Reference/src/MB02JX.o" + @echo "... src/SLICOT-Reference/src/MB02JX.i" + @echo "... src/SLICOT-Reference/src/MB02JX.s" + @echo "... src/SLICOT-Reference/src/MB02KD.o" + @echo "... src/SLICOT-Reference/src/MB02KD.i" + @echo "... src/SLICOT-Reference/src/MB02KD.s" + @echo "... src/SLICOT-Reference/src/MB02MD.o" + @echo "... src/SLICOT-Reference/src/MB02MD.i" + @echo "... src/SLICOT-Reference/src/MB02MD.s" + @echo "... src/SLICOT-Reference/src/MB02ND.o" + @echo "... src/SLICOT-Reference/src/MB02ND.i" + @echo "... src/SLICOT-Reference/src/MB02ND.s" + @echo "... src/SLICOT-Reference/src/MB02NY.o" + @echo "... src/SLICOT-Reference/src/MB02NY.i" + @echo "... src/SLICOT-Reference/src/MB02NY.s" + @echo "... src/SLICOT-Reference/src/MB02OD.o" + @echo "... src/SLICOT-Reference/src/MB02OD.i" + @echo "... src/SLICOT-Reference/src/MB02OD.s" + @echo "... src/SLICOT-Reference/src/MB02PD.o" + @echo "... src/SLICOT-Reference/src/MB02PD.i" + @echo "... src/SLICOT-Reference/src/MB02PD.s" + @echo "... src/SLICOT-Reference/src/MB02QD.o" + @echo "... src/SLICOT-Reference/src/MB02QD.i" + @echo "... src/SLICOT-Reference/src/MB02QD.s" + @echo "... src/SLICOT-Reference/src/MB02QY.o" + @echo "... src/SLICOT-Reference/src/MB02QY.i" + @echo "... src/SLICOT-Reference/src/MB02QY.s" + @echo "... src/SLICOT-Reference/src/MB02RD.o" + @echo "... src/SLICOT-Reference/src/MB02RD.i" + @echo "... src/SLICOT-Reference/src/MB02RD.s" + @echo "... src/SLICOT-Reference/src/MB02RZ.o" + @echo "... src/SLICOT-Reference/src/MB02RZ.i" + @echo "... src/SLICOT-Reference/src/MB02RZ.s" + @echo "... src/SLICOT-Reference/src/MB02SD.o" + @echo "... src/SLICOT-Reference/src/MB02SD.i" + @echo "... src/SLICOT-Reference/src/MB02SD.s" + @echo "... src/SLICOT-Reference/src/MB02SZ.o" + @echo "... src/SLICOT-Reference/src/MB02SZ.i" + @echo "... src/SLICOT-Reference/src/MB02SZ.s" + @echo "... src/SLICOT-Reference/src/MB02TD.o" + @echo "... src/SLICOT-Reference/src/MB02TD.i" + @echo "... src/SLICOT-Reference/src/MB02TD.s" + @echo "... src/SLICOT-Reference/src/MB02TZ.o" + @echo "... src/SLICOT-Reference/src/MB02TZ.i" + @echo "... src/SLICOT-Reference/src/MB02TZ.s" + @echo "... src/SLICOT-Reference/src/MB02UD.o" + @echo "... src/SLICOT-Reference/src/MB02UD.i" + @echo "... src/SLICOT-Reference/src/MB02UD.s" + @echo "... src/SLICOT-Reference/src/MB02UU.o" + @echo "... src/SLICOT-Reference/src/MB02UU.i" + @echo "... src/SLICOT-Reference/src/MB02UU.s" + @echo "... src/SLICOT-Reference/src/MB02UV.o" + @echo "... src/SLICOT-Reference/src/MB02UV.i" + @echo "... src/SLICOT-Reference/src/MB02UV.s" + @echo "... src/SLICOT-Reference/src/MB02UW.o" + @echo "... src/SLICOT-Reference/src/MB02UW.i" + @echo "... src/SLICOT-Reference/src/MB02UW.s" + @echo "... src/SLICOT-Reference/src/MB02VD.o" + @echo "... src/SLICOT-Reference/src/MB02VD.i" + @echo "... src/SLICOT-Reference/src/MB02VD.s" + @echo "... src/SLICOT-Reference/src/MB02WD.o" + @echo "... src/SLICOT-Reference/src/MB02WD.i" + @echo "... src/SLICOT-Reference/src/MB02WD.s" + @echo "... src/SLICOT-Reference/src/MB02XD.o" + @echo "... src/SLICOT-Reference/src/MB02XD.i" + @echo "... src/SLICOT-Reference/src/MB02XD.s" + @echo "... src/SLICOT-Reference/src/MB02YD.o" + @echo "... src/SLICOT-Reference/src/MB02YD.i" + @echo "... src/SLICOT-Reference/src/MB02YD.s" + @echo "... src/SLICOT-Reference/src/MB03AB.o" + @echo "... src/SLICOT-Reference/src/MB03AB.i" + @echo "... src/SLICOT-Reference/src/MB03AB.s" + @echo "... src/SLICOT-Reference/src/MB03AD.o" + @echo "... src/SLICOT-Reference/src/MB03AD.i" + @echo "... src/SLICOT-Reference/src/MB03AD.s" + @echo "... src/SLICOT-Reference/src/MB03AE.o" + @echo "... src/SLICOT-Reference/src/MB03AE.i" + @echo "... src/SLICOT-Reference/src/MB03AE.s" + @echo "... src/SLICOT-Reference/src/MB03AF.o" + @echo "... src/SLICOT-Reference/src/MB03AF.i" + @echo "... src/SLICOT-Reference/src/MB03AF.s" + @echo "... src/SLICOT-Reference/src/MB03AG.o" + @echo "... src/SLICOT-Reference/src/MB03AG.i" + @echo "... src/SLICOT-Reference/src/MB03AG.s" + @echo "... src/SLICOT-Reference/src/MB03AH.o" + @echo "... src/SLICOT-Reference/src/MB03AH.i" + @echo "... src/SLICOT-Reference/src/MB03AH.s" + @echo "... src/SLICOT-Reference/src/MB03AI.o" + @echo "... src/SLICOT-Reference/src/MB03AI.i" + @echo "... src/SLICOT-Reference/src/MB03AI.s" + @echo "... src/SLICOT-Reference/src/MB03BA.o" + @echo "... src/SLICOT-Reference/src/MB03BA.i" + @echo "... src/SLICOT-Reference/src/MB03BA.s" + @echo "... src/SLICOT-Reference/src/MB03BB.o" + @echo "... src/SLICOT-Reference/src/MB03BB.i" + @echo "... src/SLICOT-Reference/src/MB03BB.s" + @echo "... src/SLICOT-Reference/src/MB03BC.o" + @echo "... src/SLICOT-Reference/src/MB03BC.i" + @echo "... src/SLICOT-Reference/src/MB03BC.s" + @echo "... src/SLICOT-Reference/src/MB03BD.o" + @echo "... src/SLICOT-Reference/src/MB03BD.i" + @echo "... src/SLICOT-Reference/src/MB03BD.s" + @echo "... src/SLICOT-Reference/src/MB03BE.o" + @echo "... src/SLICOT-Reference/src/MB03BE.i" + @echo "... src/SLICOT-Reference/src/MB03BE.s" + @echo "... src/SLICOT-Reference/src/MB03BF.o" + @echo "... src/SLICOT-Reference/src/MB03BF.i" + @echo "... src/SLICOT-Reference/src/MB03BF.s" + @echo "... src/SLICOT-Reference/src/MB03BG.o" + @echo "... src/SLICOT-Reference/src/MB03BG.i" + @echo "... src/SLICOT-Reference/src/MB03BG.s" + @echo "... src/SLICOT-Reference/src/MB03BZ.o" + @echo "... src/SLICOT-Reference/src/MB03BZ.i" + @echo "... src/SLICOT-Reference/src/MB03BZ.s" + @echo "... src/SLICOT-Reference/src/MB03CD.o" + @echo "... src/SLICOT-Reference/src/MB03CD.i" + @echo "... src/SLICOT-Reference/src/MB03CD.s" + @echo "... src/SLICOT-Reference/src/MB03CZ.o" + @echo "... src/SLICOT-Reference/src/MB03CZ.i" + @echo "... src/SLICOT-Reference/src/MB03CZ.s" + @echo "... src/SLICOT-Reference/src/MB03DD.o" + @echo "... src/SLICOT-Reference/src/MB03DD.i" + @echo "... src/SLICOT-Reference/src/MB03DD.s" + @echo "... src/SLICOT-Reference/src/MB03DZ.o" + @echo "... src/SLICOT-Reference/src/MB03DZ.i" + @echo "... src/SLICOT-Reference/src/MB03DZ.s" + @echo "... src/SLICOT-Reference/src/MB03ED.o" + @echo "... src/SLICOT-Reference/src/MB03ED.i" + @echo "... src/SLICOT-Reference/src/MB03ED.s" + @echo "... src/SLICOT-Reference/src/MB03FD.o" + @echo "... src/SLICOT-Reference/src/MB03FD.i" + @echo "... src/SLICOT-Reference/src/MB03FD.s" + @echo "... src/SLICOT-Reference/src/MB03FZ.o" + @echo "... src/SLICOT-Reference/src/MB03FZ.i" + @echo "... src/SLICOT-Reference/src/MB03FZ.s" + @echo "... src/SLICOT-Reference/src/MB03GD.o" + @echo "... src/SLICOT-Reference/src/MB03GD.i" + @echo "... src/SLICOT-Reference/src/MB03GD.s" + @echo "... src/SLICOT-Reference/src/MB03GZ.o" + @echo "... src/SLICOT-Reference/src/MB03GZ.i" + @echo "... src/SLICOT-Reference/src/MB03GZ.s" + @echo "... src/SLICOT-Reference/src/MB03HD.o" + @echo "... src/SLICOT-Reference/src/MB03HD.i" + @echo "... src/SLICOT-Reference/src/MB03HD.s" + @echo "... src/SLICOT-Reference/src/MB03HZ.o" + @echo "... src/SLICOT-Reference/src/MB03HZ.i" + @echo "... src/SLICOT-Reference/src/MB03HZ.s" + @echo "... src/SLICOT-Reference/src/MB03ID.o" + @echo "... src/SLICOT-Reference/src/MB03ID.i" + @echo "... src/SLICOT-Reference/src/MB03ID.s" + @echo "... src/SLICOT-Reference/src/MB03IZ.o" + @echo "... src/SLICOT-Reference/src/MB03IZ.i" + @echo "... src/SLICOT-Reference/src/MB03IZ.s" + @echo "... src/SLICOT-Reference/src/MB03JD.o" + @echo "... src/SLICOT-Reference/src/MB03JD.i" + @echo "... src/SLICOT-Reference/src/MB03JD.s" + @echo "... src/SLICOT-Reference/src/MB03JP.o" + @echo "... src/SLICOT-Reference/src/MB03JP.i" + @echo "... src/SLICOT-Reference/src/MB03JP.s" + @echo "... src/SLICOT-Reference/src/MB03JZ.o" + @echo "... src/SLICOT-Reference/src/MB03JZ.i" + @echo "... src/SLICOT-Reference/src/MB03JZ.s" + @echo "... src/SLICOT-Reference/src/MB03KA.o" + @echo "... src/SLICOT-Reference/src/MB03KA.i" + @echo "... src/SLICOT-Reference/src/MB03KA.s" + @echo "... src/SLICOT-Reference/src/MB03KB.o" + @echo "... src/SLICOT-Reference/src/MB03KB.i" + @echo "... src/SLICOT-Reference/src/MB03KB.s" + @echo "... src/SLICOT-Reference/src/MB03KC.o" + @echo "... src/SLICOT-Reference/src/MB03KC.i" + @echo "... src/SLICOT-Reference/src/MB03KC.s" + @echo "... src/SLICOT-Reference/src/MB03KD.o" + @echo "... src/SLICOT-Reference/src/MB03KD.i" + @echo "... src/SLICOT-Reference/src/MB03KD.s" + @echo "... src/SLICOT-Reference/src/MB03KE.o" + @echo "... src/SLICOT-Reference/src/MB03KE.i" + @echo "... src/SLICOT-Reference/src/MB03KE.s" + @echo "... src/SLICOT-Reference/src/MB03LD.o" + @echo "... src/SLICOT-Reference/src/MB03LD.i" + @echo "... src/SLICOT-Reference/src/MB03LD.s" + @echo "... src/SLICOT-Reference/src/MB03LF.o" + @echo "... src/SLICOT-Reference/src/MB03LF.i" + @echo "... src/SLICOT-Reference/src/MB03LF.s" + @echo "... src/SLICOT-Reference/src/MB03LP.o" + @echo "... src/SLICOT-Reference/src/MB03LP.i" + @echo "... src/SLICOT-Reference/src/MB03LP.s" + @echo "... src/SLICOT-Reference/src/MB03LZ.o" + @echo "... src/SLICOT-Reference/src/MB03LZ.i" + @echo "... src/SLICOT-Reference/src/MB03LZ.s" + @echo "... src/SLICOT-Reference/src/MB03MD.o" + @echo "... src/SLICOT-Reference/src/MB03MD.i" + @echo "... src/SLICOT-Reference/src/MB03MD.s" + @echo "... src/SLICOT-Reference/src/MB03MY.o" + @echo "... src/SLICOT-Reference/src/MB03MY.i" + @echo "... src/SLICOT-Reference/src/MB03MY.s" + @echo "... src/SLICOT-Reference/src/MB03ND.o" + @echo "... src/SLICOT-Reference/src/MB03ND.i" + @echo "... src/SLICOT-Reference/src/MB03ND.s" + @echo "... src/SLICOT-Reference/src/MB03NY.o" + @echo "... src/SLICOT-Reference/src/MB03NY.i" + @echo "... src/SLICOT-Reference/src/MB03NY.s" + @echo "... src/SLICOT-Reference/src/MB03OD.o" + @echo "... src/SLICOT-Reference/src/MB03OD.i" + @echo "... src/SLICOT-Reference/src/MB03OD.s" + @echo "... src/SLICOT-Reference/src/MB03OY.o" + @echo "... src/SLICOT-Reference/src/MB03OY.i" + @echo "... src/SLICOT-Reference/src/MB03OY.s" + @echo "... src/SLICOT-Reference/src/MB03PD.o" + @echo "... src/SLICOT-Reference/src/MB03PD.i" + @echo "... src/SLICOT-Reference/src/MB03PD.s" + @echo "... src/SLICOT-Reference/src/MB03PY.o" + @echo "... src/SLICOT-Reference/src/MB03PY.i" + @echo "... src/SLICOT-Reference/src/MB03PY.s" + @echo "... src/SLICOT-Reference/src/MB03QD.o" + @echo "... src/SLICOT-Reference/src/MB03QD.i" + @echo "... src/SLICOT-Reference/src/MB03QD.s" + @echo "... src/SLICOT-Reference/src/MB03QG.o" + @echo "... src/SLICOT-Reference/src/MB03QG.i" + @echo "... src/SLICOT-Reference/src/MB03QG.s" + @echo "... src/SLICOT-Reference/src/MB03QV.o" + @echo "... src/SLICOT-Reference/src/MB03QV.i" + @echo "... src/SLICOT-Reference/src/MB03QV.s" + @echo "... src/SLICOT-Reference/src/MB03QW.o" + @echo "... src/SLICOT-Reference/src/MB03QW.i" + @echo "... src/SLICOT-Reference/src/MB03QW.s" + @echo "... src/SLICOT-Reference/src/MB03QX.o" + @echo "... src/SLICOT-Reference/src/MB03QX.i" + @echo "... src/SLICOT-Reference/src/MB03QX.s" + @echo "... src/SLICOT-Reference/src/MB03QY.o" + @echo "... src/SLICOT-Reference/src/MB03QY.i" + @echo "... src/SLICOT-Reference/src/MB03QY.s" + @echo "... src/SLICOT-Reference/src/MB03RD.o" + @echo "... src/SLICOT-Reference/src/MB03RD.i" + @echo "... src/SLICOT-Reference/src/MB03RD.s" + @echo "... src/SLICOT-Reference/src/MB03RW.o" + @echo "... src/SLICOT-Reference/src/MB03RW.i" + @echo "... src/SLICOT-Reference/src/MB03RW.s" + @echo "... src/SLICOT-Reference/src/MB03RX.o" + @echo "... src/SLICOT-Reference/src/MB03RX.i" + @echo "... src/SLICOT-Reference/src/MB03RX.s" + @echo "... src/SLICOT-Reference/src/MB03RY.o" + @echo "... src/SLICOT-Reference/src/MB03RY.i" + @echo "... src/SLICOT-Reference/src/MB03RY.s" + @echo "... src/SLICOT-Reference/src/MB03RZ.o" + @echo "... src/SLICOT-Reference/src/MB03RZ.i" + @echo "... src/SLICOT-Reference/src/MB03RZ.s" + @echo "... src/SLICOT-Reference/src/MB03SD.o" + @echo "... src/SLICOT-Reference/src/MB03SD.i" + @echo "... src/SLICOT-Reference/src/MB03SD.s" + @echo "... src/SLICOT-Reference/src/MB03TD.o" + @echo "... src/SLICOT-Reference/src/MB03TD.i" + @echo "... src/SLICOT-Reference/src/MB03TD.s" + @echo "... src/SLICOT-Reference/src/MB03TS.o" + @echo "... src/SLICOT-Reference/src/MB03TS.i" + @echo "... src/SLICOT-Reference/src/MB03TS.s" + @echo "... src/SLICOT-Reference/src/MB03UD.o" + @echo "... src/SLICOT-Reference/src/MB03UD.i" + @echo "... src/SLICOT-Reference/src/MB03UD.s" + @echo "... src/SLICOT-Reference/src/MB03VD.o" + @echo "... src/SLICOT-Reference/src/MB03VD.i" + @echo "... src/SLICOT-Reference/src/MB03VD.s" + @echo "... src/SLICOT-Reference/src/MB03VW.o" + @echo "... src/SLICOT-Reference/src/MB03VW.i" + @echo "... src/SLICOT-Reference/src/MB03VW.s" + @echo "... src/SLICOT-Reference/src/MB03VY.o" + @echo "... src/SLICOT-Reference/src/MB03VY.i" + @echo "... src/SLICOT-Reference/src/MB03VY.s" + @echo "... src/SLICOT-Reference/src/MB03WA.o" + @echo "... src/SLICOT-Reference/src/MB03WA.i" + @echo "... src/SLICOT-Reference/src/MB03WA.s" + @echo "... src/SLICOT-Reference/src/MB03WD.o" + @echo "... src/SLICOT-Reference/src/MB03WD.i" + @echo "... src/SLICOT-Reference/src/MB03WD.s" + @echo "... src/SLICOT-Reference/src/MB03WX.o" + @echo "... src/SLICOT-Reference/src/MB03WX.i" + @echo "... src/SLICOT-Reference/src/MB03WX.s" + @echo "... src/SLICOT-Reference/src/MB03XD.o" + @echo "... src/SLICOT-Reference/src/MB03XD.i" + @echo "... src/SLICOT-Reference/src/MB03XD.s" + @echo "... src/SLICOT-Reference/src/MB03XP.o" + @echo "... src/SLICOT-Reference/src/MB03XP.i" + @echo "... src/SLICOT-Reference/src/MB03XP.s" + @echo "... src/SLICOT-Reference/src/MB03XS.o" + @echo "... src/SLICOT-Reference/src/MB03XS.i" + @echo "... src/SLICOT-Reference/src/MB03XS.s" + @echo "... src/SLICOT-Reference/src/MB03XU.o" + @echo "... src/SLICOT-Reference/src/MB03XU.i" + @echo "... src/SLICOT-Reference/src/MB03XU.s" + @echo "... src/SLICOT-Reference/src/MB03XZ.o" + @echo "... src/SLICOT-Reference/src/MB03XZ.i" + @echo "... src/SLICOT-Reference/src/MB03XZ.s" + @echo "... src/SLICOT-Reference/src/MB03YA.o" + @echo "... src/SLICOT-Reference/src/MB03YA.i" + @echo "... src/SLICOT-Reference/src/MB03YA.s" + @echo "... src/SLICOT-Reference/src/MB03YD.o" + @echo "... src/SLICOT-Reference/src/MB03YD.i" + @echo "... src/SLICOT-Reference/src/MB03YD.s" + @echo "... src/SLICOT-Reference/src/MB03YT.o" + @echo "... src/SLICOT-Reference/src/MB03YT.i" + @echo "... src/SLICOT-Reference/src/MB03YT.s" + @echo "... src/SLICOT-Reference/src/MB03ZA.o" + @echo "... src/SLICOT-Reference/src/MB03ZA.i" + @echo "... src/SLICOT-Reference/src/MB03ZA.s" + @echo "... src/SLICOT-Reference/src/MB03ZD.o" + @echo "... src/SLICOT-Reference/src/MB03ZD.i" + @echo "... src/SLICOT-Reference/src/MB03ZD.s" + @echo "... src/SLICOT-Reference/src/MB04AD.o" + @echo "... src/SLICOT-Reference/src/MB04AD.i" + @echo "... src/SLICOT-Reference/src/MB04AD.s" + @echo "... src/SLICOT-Reference/src/MB04AZ.o" + @echo "... src/SLICOT-Reference/src/MB04AZ.i" + @echo "... src/SLICOT-Reference/src/MB04AZ.s" + @echo "... src/SLICOT-Reference/src/MB04BD.o" + @echo "... src/SLICOT-Reference/src/MB04BD.i" + @echo "... src/SLICOT-Reference/src/MB04BD.s" + @echo "... src/SLICOT-Reference/src/MB04BP.o" + @echo "... src/SLICOT-Reference/src/MB04BP.i" + @echo "... src/SLICOT-Reference/src/MB04BP.s" + @echo "... src/SLICOT-Reference/src/MB04BZ.o" + @echo "... src/SLICOT-Reference/src/MB04BZ.i" + @echo "... src/SLICOT-Reference/src/MB04BZ.s" + @echo "... src/SLICOT-Reference/src/MB04CD.o" + @echo "... src/SLICOT-Reference/src/MB04CD.i" + @echo "... src/SLICOT-Reference/src/MB04CD.s" + @echo "... src/SLICOT-Reference/src/MB04DB.o" + @echo "... src/SLICOT-Reference/src/MB04DB.i" + @echo "... src/SLICOT-Reference/src/MB04DB.s" + @echo "... src/SLICOT-Reference/src/MB04DD.o" + @echo "... src/SLICOT-Reference/src/MB04DD.i" + @echo "... src/SLICOT-Reference/src/MB04DD.s" + @echo "... src/SLICOT-Reference/src/MB04DI.o" + @echo "... src/SLICOT-Reference/src/MB04DI.i" + @echo "... src/SLICOT-Reference/src/MB04DI.s" + @echo "... src/SLICOT-Reference/src/MB04DL.o" + @echo "... src/SLICOT-Reference/src/MB04DL.i" + @echo "... src/SLICOT-Reference/src/MB04DL.s" + @echo "... src/SLICOT-Reference/src/MB04DP.o" + @echo "... src/SLICOT-Reference/src/MB04DP.i" + @echo "... src/SLICOT-Reference/src/MB04DP.s" + @echo "... src/SLICOT-Reference/src/MB04DS.o" + @echo "... src/SLICOT-Reference/src/MB04DS.i" + @echo "... src/SLICOT-Reference/src/MB04DS.s" + @echo "... src/SLICOT-Reference/src/MB04DY.o" + @echo "... src/SLICOT-Reference/src/MB04DY.i" + @echo "... src/SLICOT-Reference/src/MB04DY.s" + @echo "... src/SLICOT-Reference/src/MB04DZ.o" + @echo "... src/SLICOT-Reference/src/MB04DZ.i" + @echo "... src/SLICOT-Reference/src/MB04DZ.s" + @echo "... src/SLICOT-Reference/src/MB04ED.o" + @echo "... src/SLICOT-Reference/src/MB04ED.i" + @echo "... src/SLICOT-Reference/src/MB04ED.s" + @echo "... src/SLICOT-Reference/src/MB04FD.o" + @echo "... src/SLICOT-Reference/src/MB04FD.i" + @echo "... src/SLICOT-Reference/src/MB04FD.s" + @echo "... src/SLICOT-Reference/src/MB04FP.o" + @echo "... src/SLICOT-Reference/src/MB04FP.i" + @echo "... src/SLICOT-Reference/src/MB04FP.s" + @echo "... src/SLICOT-Reference/src/MB04GD.o" + @echo "... src/SLICOT-Reference/src/MB04GD.i" + @echo "... src/SLICOT-Reference/src/MB04GD.s" + @echo "... src/SLICOT-Reference/src/MB04HD.o" + @echo "... src/SLICOT-Reference/src/MB04HD.i" + @echo "... src/SLICOT-Reference/src/MB04HD.s" + @echo "... src/SLICOT-Reference/src/MB04ID.o" + @echo "... src/SLICOT-Reference/src/MB04ID.i" + @echo "... src/SLICOT-Reference/src/MB04ID.s" + @echo "... src/SLICOT-Reference/src/MB04IY.o" + @echo "... src/SLICOT-Reference/src/MB04IY.i" + @echo "... src/SLICOT-Reference/src/MB04IY.s" + @echo "... src/SLICOT-Reference/src/MB04IZ.o" + @echo "... src/SLICOT-Reference/src/MB04IZ.i" + @echo "... src/SLICOT-Reference/src/MB04IZ.s" + @echo "... src/SLICOT-Reference/src/MB04JD.o" + @echo "... src/SLICOT-Reference/src/MB04JD.i" + @echo "... src/SLICOT-Reference/src/MB04JD.s" + @echo "... src/SLICOT-Reference/src/MB04KD.o" + @echo "... src/SLICOT-Reference/src/MB04KD.i" + @echo "... src/SLICOT-Reference/src/MB04KD.s" + @echo "... src/SLICOT-Reference/src/MB04LD.o" + @echo "... src/SLICOT-Reference/src/MB04LD.i" + @echo "... src/SLICOT-Reference/src/MB04LD.s" + @echo "... src/SLICOT-Reference/src/MB04MD.o" + @echo "... src/SLICOT-Reference/src/MB04MD.i" + @echo "... src/SLICOT-Reference/src/MB04MD.s" + @echo "... src/SLICOT-Reference/src/MB04ND.o" + @echo "... src/SLICOT-Reference/src/MB04ND.i" + @echo "... src/SLICOT-Reference/src/MB04ND.s" + @echo "... src/SLICOT-Reference/src/MB04NY.o" + @echo "... src/SLICOT-Reference/src/MB04NY.i" + @echo "... src/SLICOT-Reference/src/MB04NY.s" + @echo "... src/SLICOT-Reference/src/MB04OD.o" + @echo "... src/SLICOT-Reference/src/MB04OD.i" + @echo "... src/SLICOT-Reference/src/MB04OD.s" + @echo "... src/SLICOT-Reference/src/MB04OW.o" + @echo "... src/SLICOT-Reference/src/MB04OW.i" + @echo "... src/SLICOT-Reference/src/MB04OW.s" + @echo "... src/SLICOT-Reference/src/MB04OX.o" + @echo "... src/SLICOT-Reference/src/MB04OX.i" + @echo "... src/SLICOT-Reference/src/MB04OX.s" + @echo "... src/SLICOT-Reference/src/MB04OY.o" + @echo "... src/SLICOT-Reference/src/MB04OY.i" + @echo "... src/SLICOT-Reference/src/MB04OY.s" + @echo "... src/SLICOT-Reference/src/MB04PA.o" + @echo "... src/SLICOT-Reference/src/MB04PA.i" + @echo "... src/SLICOT-Reference/src/MB04PA.s" + @echo "... src/SLICOT-Reference/src/MB04PB.o" + @echo "... src/SLICOT-Reference/src/MB04PB.i" + @echo "... src/SLICOT-Reference/src/MB04PB.s" + @echo "... src/SLICOT-Reference/src/MB04PU.o" + @echo "... src/SLICOT-Reference/src/MB04PU.i" + @echo "... src/SLICOT-Reference/src/MB04PU.s" + @echo "... src/SLICOT-Reference/src/MB04PY.o" + @echo "... src/SLICOT-Reference/src/MB04PY.i" + @echo "... src/SLICOT-Reference/src/MB04PY.s" + @echo "... src/SLICOT-Reference/src/MB04QB.o" + @echo "... src/SLICOT-Reference/src/MB04QB.i" + @echo "... src/SLICOT-Reference/src/MB04QB.s" + @echo "... src/SLICOT-Reference/src/MB04QC.o" + @echo "... src/SLICOT-Reference/src/MB04QC.i" + @echo "... src/SLICOT-Reference/src/MB04QC.s" + @echo "... src/SLICOT-Reference/src/MB04QF.o" + @echo "... src/SLICOT-Reference/src/MB04QF.i" + @echo "... src/SLICOT-Reference/src/MB04QF.s" + @echo "... src/SLICOT-Reference/src/MB04QS.o" + @echo "... src/SLICOT-Reference/src/MB04QS.i" + @echo "... src/SLICOT-Reference/src/MB04QS.s" + @echo "... src/SLICOT-Reference/src/MB04QU.o" + @echo "... src/SLICOT-Reference/src/MB04QU.i" + @echo "... src/SLICOT-Reference/src/MB04QU.s" + @echo "... src/SLICOT-Reference/src/MB04RB.o" + @echo "... src/SLICOT-Reference/src/MB04RB.i" + @echo "... src/SLICOT-Reference/src/MB04RB.s" + @echo "... src/SLICOT-Reference/src/MB04RD.o" + @echo "... src/SLICOT-Reference/src/MB04RD.i" + @echo "... src/SLICOT-Reference/src/MB04RD.s" + @echo "... src/SLICOT-Reference/src/MB04RS.o" + @echo "... src/SLICOT-Reference/src/MB04RS.i" + @echo "... src/SLICOT-Reference/src/MB04RS.s" + @echo "... src/SLICOT-Reference/src/MB04RT.o" + @echo "... src/SLICOT-Reference/src/MB04RT.i" + @echo "... src/SLICOT-Reference/src/MB04RT.s" + @echo "... src/SLICOT-Reference/src/MB04RU.o" + @echo "... src/SLICOT-Reference/src/MB04RU.i" + @echo "... src/SLICOT-Reference/src/MB04RU.s" + @echo "... src/SLICOT-Reference/src/MB04RV.o" + @echo "... src/SLICOT-Reference/src/MB04RV.i" + @echo "... src/SLICOT-Reference/src/MB04RV.s" + @echo "... src/SLICOT-Reference/src/MB04RW.o" + @echo "... src/SLICOT-Reference/src/MB04RW.i" + @echo "... src/SLICOT-Reference/src/MB04RW.s" + @echo "... src/SLICOT-Reference/src/MB04RZ.o" + @echo "... src/SLICOT-Reference/src/MB04RZ.i" + @echo "... src/SLICOT-Reference/src/MB04RZ.s" + @echo "... src/SLICOT-Reference/src/MB04SU.o" + @echo "... src/SLICOT-Reference/src/MB04SU.i" + @echo "... src/SLICOT-Reference/src/MB04SU.s" + @echo "... src/SLICOT-Reference/src/MB04TB.o" + @echo "... src/SLICOT-Reference/src/MB04TB.i" + @echo "... src/SLICOT-Reference/src/MB04TB.s" + @echo "... src/SLICOT-Reference/src/MB04TS.o" + @echo "... src/SLICOT-Reference/src/MB04TS.i" + @echo "... src/SLICOT-Reference/src/MB04TS.s" + @echo "... src/SLICOT-Reference/src/MB04TT.o" + @echo "... src/SLICOT-Reference/src/MB04TT.i" + @echo "... src/SLICOT-Reference/src/MB04TT.s" + @echo "... src/SLICOT-Reference/src/MB04TU.o" + @echo "... src/SLICOT-Reference/src/MB04TU.i" + @echo "... src/SLICOT-Reference/src/MB04TU.s" + @echo "... src/SLICOT-Reference/src/MB04TV.o" + @echo "... src/SLICOT-Reference/src/MB04TV.i" + @echo "... src/SLICOT-Reference/src/MB04TV.s" + @echo "... src/SLICOT-Reference/src/MB04TW.o" + @echo "... src/SLICOT-Reference/src/MB04TW.i" + @echo "... src/SLICOT-Reference/src/MB04TW.s" + @echo "... src/SLICOT-Reference/src/MB04TX.o" + @echo "... src/SLICOT-Reference/src/MB04TX.i" + @echo "... src/SLICOT-Reference/src/MB04TX.s" + @echo "... src/SLICOT-Reference/src/MB04TY.o" + @echo "... src/SLICOT-Reference/src/MB04TY.i" + @echo "... src/SLICOT-Reference/src/MB04TY.s" + @echo "... src/SLICOT-Reference/src/MB04UD.o" + @echo "... src/SLICOT-Reference/src/MB04UD.i" + @echo "... src/SLICOT-Reference/src/MB04UD.s" + @echo "... src/SLICOT-Reference/src/MB04VD.o" + @echo "... src/SLICOT-Reference/src/MB04VD.i" + @echo "... src/SLICOT-Reference/src/MB04VD.s" + @echo "... src/SLICOT-Reference/src/MB04VX.o" + @echo "... src/SLICOT-Reference/src/MB04VX.i" + @echo "... src/SLICOT-Reference/src/MB04VX.s" + @echo "... src/SLICOT-Reference/src/MB04WD.o" + @echo "... src/SLICOT-Reference/src/MB04WD.i" + @echo "... src/SLICOT-Reference/src/MB04WD.s" + @echo "... src/SLICOT-Reference/src/MB04WP.o" + @echo "... src/SLICOT-Reference/src/MB04WP.i" + @echo "... src/SLICOT-Reference/src/MB04WP.s" + @echo "... src/SLICOT-Reference/src/MB04WR.o" + @echo "... src/SLICOT-Reference/src/MB04WR.i" + @echo "... src/SLICOT-Reference/src/MB04WR.s" + @echo "... src/SLICOT-Reference/src/MB04WU.o" + @echo "... src/SLICOT-Reference/src/MB04WU.i" + @echo "... src/SLICOT-Reference/src/MB04WU.s" + @echo "... src/SLICOT-Reference/src/MB04XD.o" + @echo "... src/SLICOT-Reference/src/MB04XD.i" + @echo "... src/SLICOT-Reference/src/MB04XD.s" + @echo "... src/SLICOT-Reference/src/MB04XY.o" + @echo "... src/SLICOT-Reference/src/MB04XY.i" + @echo "... src/SLICOT-Reference/src/MB04XY.s" + @echo "... src/SLICOT-Reference/src/MB04YD.o" + @echo "... src/SLICOT-Reference/src/MB04YD.i" + @echo "... src/SLICOT-Reference/src/MB04YD.s" + @echo "... src/SLICOT-Reference/src/MB04YW.o" + @echo "... src/SLICOT-Reference/src/MB04YW.i" + @echo "... src/SLICOT-Reference/src/MB04YW.s" + @echo "... src/SLICOT-Reference/src/MB04ZD.o" + @echo "... src/SLICOT-Reference/src/MB04ZD.i" + @echo "... src/SLICOT-Reference/src/MB04ZD.s" + @echo "... src/SLICOT-Reference/src/MB05MD.o" + @echo "... src/SLICOT-Reference/src/MB05MD.i" + @echo "... src/SLICOT-Reference/src/MB05MD.s" + @echo "... src/SLICOT-Reference/src/MB05MY.o" + @echo "... src/SLICOT-Reference/src/MB05MY.i" + @echo "... src/SLICOT-Reference/src/MB05MY.s" + @echo "... src/SLICOT-Reference/src/MB05ND.o" + @echo "... src/SLICOT-Reference/src/MB05ND.i" + @echo "... src/SLICOT-Reference/src/MB05ND.s" + @echo "... src/SLICOT-Reference/src/MB05OD.o" + @echo "... src/SLICOT-Reference/src/MB05OD.i" + @echo "... src/SLICOT-Reference/src/MB05OD.s" + @echo "... src/SLICOT-Reference/src/MB05OY.o" + @echo "... src/SLICOT-Reference/src/MB05OY.i" + @echo "... src/SLICOT-Reference/src/MB05OY.s" + @echo "... src/SLICOT-Reference/src/MB3JZP.o" + @echo "... src/SLICOT-Reference/src/MB3JZP.i" + @echo "... src/SLICOT-Reference/src/MB3JZP.s" + @echo "... src/SLICOT-Reference/src/MB3LZP.o" + @echo "... src/SLICOT-Reference/src/MB3LZP.i" + @echo "... src/SLICOT-Reference/src/MB3LZP.s" + @echo "... src/SLICOT-Reference/src/MB3OYZ.o" + @echo "... src/SLICOT-Reference/src/MB3OYZ.i" + @echo "... src/SLICOT-Reference/src/MB3OYZ.s" + @echo "... src/SLICOT-Reference/src/MB3PYZ.o" + @echo "... src/SLICOT-Reference/src/MB3PYZ.i" + @echo "... src/SLICOT-Reference/src/MB3PYZ.s" + @echo "... src/SLICOT-Reference/src/MB4DBZ.o" + @echo "... src/SLICOT-Reference/src/MB4DBZ.i" + @echo "... src/SLICOT-Reference/src/MB4DBZ.s" + @echo "... src/SLICOT-Reference/src/MB4DLZ.o" + @echo "... src/SLICOT-Reference/src/MB4DLZ.i" + @echo "... src/SLICOT-Reference/src/MB4DLZ.s" + @echo "... src/SLICOT-Reference/src/MB4DPZ.o" + @echo "... src/SLICOT-Reference/src/MB4DPZ.i" + @echo "... src/SLICOT-Reference/src/MB4DPZ.s" + @echo "... src/SLICOT-Reference/src/MC01MD.o" + @echo "... src/SLICOT-Reference/src/MC01MD.i" + @echo "... src/SLICOT-Reference/src/MC01MD.s" + @echo "... src/SLICOT-Reference/src/MC01ND.o" + @echo "... src/SLICOT-Reference/src/MC01ND.i" + @echo "... src/SLICOT-Reference/src/MC01ND.s" + @echo "... src/SLICOT-Reference/src/MC01OD.o" + @echo "... src/SLICOT-Reference/src/MC01OD.i" + @echo "... src/SLICOT-Reference/src/MC01OD.s" + @echo "... src/SLICOT-Reference/src/MC01PD.o" + @echo "... src/SLICOT-Reference/src/MC01PD.i" + @echo "... src/SLICOT-Reference/src/MC01PD.s" + @echo "... src/SLICOT-Reference/src/MC01PY.o" + @echo "... src/SLICOT-Reference/src/MC01PY.i" + @echo "... src/SLICOT-Reference/src/MC01PY.s" + @echo "... src/SLICOT-Reference/src/MC01QD.o" + @echo "... src/SLICOT-Reference/src/MC01QD.i" + @echo "... src/SLICOT-Reference/src/MC01QD.s" + @echo "... src/SLICOT-Reference/src/MC01RD.o" + @echo "... src/SLICOT-Reference/src/MC01RD.i" + @echo "... src/SLICOT-Reference/src/MC01RD.s" + @echo "... src/SLICOT-Reference/src/MC01SD.o" + @echo "... src/SLICOT-Reference/src/MC01SD.i" + @echo "... src/SLICOT-Reference/src/MC01SD.s" + @echo "... src/SLICOT-Reference/src/MC01SW.o" + @echo "... src/SLICOT-Reference/src/MC01SW.i" + @echo "... src/SLICOT-Reference/src/MC01SW.s" + @echo "... src/SLICOT-Reference/src/MC01SX.o" + @echo "... src/SLICOT-Reference/src/MC01SX.i" + @echo "... src/SLICOT-Reference/src/MC01SX.s" + @echo "... src/SLICOT-Reference/src/MC01SY.o" + @echo "... src/SLICOT-Reference/src/MC01SY.i" + @echo "... src/SLICOT-Reference/src/MC01SY.s" + @echo "... src/SLICOT-Reference/src/MC01TD.o" + @echo "... src/SLICOT-Reference/src/MC01TD.i" + @echo "... src/SLICOT-Reference/src/MC01TD.s" + @echo "... src/SLICOT-Reference/src/MC01VD.o" + @echo "... src/SLICOT-Reference/src/MC01VD.i" + @echo "... src/SLICOT-Reference/src/MC01VD.s" + @echo "... src/SLICOT-Reference/src/MC01WD.o" + @echo "... src/SLICOT-Reference/src/MC01WD.i" + @echo "... src/SLICOT-Reference/src/MC01WD.s" + @echo "... src/SLICOT-Reference/src/MC01XD.o" + @echo "... src/SLICOT-Reference/src/MC01XD.i" + @echo "... src/SLICOT-Reference/src/MC01XD.s" + @echo "... src/SLICOT-Reference/src/MC03MD.o" + @echo "... src/SLICOT-Reference/src/MC03MD.i" + @echo "... src/SLICOT-Reference/src/MC03MD.s" + @echo "... src/SLICOT-Reference/src/MC03ND.o" + @echo "... src/SLICOT-Reference/src/MC03ND.i" + @echo "... src/SLICOT-Reference/src/MC03ND.s" + @echo "... src/SLICOT-Reference/src/MC03NX.o" + @echo "... src/SLICOT-Reference/src/MC03NX.i" + @echo "... src/SLICOT-Reference/src/MC03NX.s" + @echo "... src/SLICOT-Reference/src/MC03NY.o" + @echo "... src/SLICOT-Reference/src/MC03NY.i" + @echo "... src/SLICOT-Reference/src/MC03NY.s" + @echo "... src/SLICOT-Reference/src/MD03AD.o" + @echo "... src/SLICOT-Reference/src/MD03AD.i" + @echo "... src/SLICOT-Reference/src/MD03AD.s" + @echo "... src/SLICOT-Reference/src/MD03BA.o" + @echo "... src/SLICOT-Reference/src/MD03BA.i" + @echo "... src/SLICOT-Reference/src/MD03BA.s" + @echo "... src/SLICOT-Reference/src/MD03BB.o" + @echo "... src/SLICOT-Reference/src/MD03BB.i" + @echo "... src/SLICOT-Reference/src/MD03BB.s" + @echo "... src/SLICOT-Reference/src/MD03BD.o" + @echo "... src/SLICOT-Reference/src/MD03BD.i" + @echo "... src/SLICOT-Reference/src/MD03BD.s" + @echo "... src/SLICOT-Reference/src/MD03BF.o" + @echo "... src/SLICOT-Reference/src/MD03BF.i" + @echo "... src/SLICOT-Reference/src/MD03BF.s" + @echo "... src/SLICOT-Reference/src/MD03BX.o" + @echo "... src/SLICOT-Reference/src/MD03BX.i" + @echo "... src/SLICOT-Reference/src/MD03BX.s" + @echo "... src/SLICOT-Reference/src/MD03BY.o" + @echo "... src/SLICOT-Reference/src/MD03BY.i" + @echo "... src/SLICOT-Reference/src/MD03BY.s" + @echo "... src/SLICOT-Reference/src/NF01AD.o" + @echo "... src/SLICOT-Reference/src/NF01AD.i" + @echo "... src/SLICOT-Reference/src/NF01AD.s" + @echo "... src/SLICOT-Reference/src/NF01AY.o" + @echo "... src/SLICOT-Reference/src/NF01AY.i" + @echo "... src/SLICOT-Reference/src/NF01AY.s" + @echo "... src/SLICOT-Reference/src/NF01BA.o" + @echo "... src/SLICOT-Reference/src/NF01BA.i" + @echo "... src/SLICOT-Reference/src/NF01BA.s" + @echo "... src/SLICOT-Reference/src/NF01BB.o" + @echo "... src/SLICOT-Reference/src/NF01BB.i" + @echo "... src/SLICOT-Reference/src/NF01BB.s" + @echo "... src/SLICOT-Reference/src/NF01BD.o" + @echo "... src/SLICOT-Reference/src/NF01BD.i" + @echo "... src/SLICOT-Reference/src/NF01BD.s" + @echo "... src/SLICOT-Reference/src/NF01BE.o" + @echo "... src/SLICOT-Reference/src/NF01BE.i" + @echo "... src/SLICOT-Reference/src/NF01BE.s" + @echo "... src/SLICOT-Reference/src/NF01BF.o" + @echo "... src/SLICOT-Reference/src/NF01BF.i" + @echo "... src/SLICOT-Reference/src/NF01BF.s" + @echo "... src/SLICOT-Reference/src/NF01BP.o" + @echo "... src/SLICOT-Reference/src/NF01BP.i" + @echo "... src/SLICOT-Reference/src/NF01BP.s" + @echo "... src/SLICOT-Reference/src/NF01BQ.o" + @echo "... src/SLICOT-Reference/src/NF01BQ.i" + @echo "... src/SLICOT-Reference/src/NF01BQ.s" + @echo "... src/SLICOT-Reference/src/NF01BR.o" + @echo "... src/SLICOT-Reference/src/NF01BR.i" + @echo "... src/SLICOT-Reference/src/NF01BR.s" + @echo "... src/SLICOT-Reference/src/NF01BS.o" + @echo "... src/SLICOT-Reference/src/NF01BS.i" + @echo "... src/SLICOT-Reference/src/NF01BS.s" + @echo "... src/SLICOT-Reference/src/NF01BU.o" + @echo "... src/SLICOT-Reference/src/NF01BU.i" + @echo "... src/SLICOT-Reference/src/NF01BU.s" + @echo "... src/SLICOT-Reference/src/NF01BV.o" + @echo "... src/SLICOT-Reference/src/NF01BV.i" + @echo "... src/SLICOT-Reference/src/NF01BV.s" + @echo "... src/SLICOT-Reference/src/NF01BW.o" + @echo "... src/SLICOT-Reference/src/NF01BW.i" + @echo "... src/SLICOT-Reference/src/NF01BW.s" + @echo "... src/SLICOT-Reference/src/NF01BX.o" + @echo "... src/SLICOT-Reference/src/NF01BX.i" + @echo "... src/SLICOT-Reference/src/NF01BX.s" + @echo "... src/SLICOT-Reference/src/NF01BY.o" + @echo "... src/SLICOT-Reference/src/NF01BY.i" + @echo "... src/SLICOT-Reference/src/NF01BY.s" + @echo "... src/SLICOT-Reference/src/SB01BD.o" + @echo "... src/SLICOT-Reference/src/SB01BD.i" + @echo "... src/SLICOT-Reference/src/SB01BD.s" + @echo "... src/SLICOT-Reference/src/SB01BX.o" + @echo "... src/SLICOT-Reference/src/SB01BX.i" + @echo "... src/SLICOT-Reference/src/SB01BX.s" + @echo "... src/SLICOT-Reference/src/SB01BY.o" + @echo "... src/SLICOT-Reference/src/SB01BY.i" + @echo "... src/SLICOT-Reference/src/SB01BY.s" + @echo "... src/SLICOT-Reference/src/SB01DD.o" + @echo "... src/SLICOT-Reference/src/SB01DD.i" + @echo "... src/SLICOT-Reference/src/SB01DD.s" + @echo "... src/SLICOT-Reference/src/SB01FY.o" + @echo "... src/SLICOT-Reference/src/SB01FY.i" + @echo "... src/SLICOT-Reference/src/SB01FY.s" + @echo "... src/SLICOT-Reference/src/SB01MD.o" + @echo "... src/SLICOT-Reference/src/SB01MD.i" + @echo "... src/SLICOT-Reference/src/SB01MD.s" + @echo "... src/SLICOT-Reference/src/SB02CX.o" + @echo "... src/SLICOT-Reference/src/SB02CX.i" + @echo "... src/SLICOT-Reference/src/SB02CX.s" + @echo "... src/SLICOT-Reference/src/SB02MD.o" + @echo "... src/SLICOT-Reference/src/SB02MD.i" + @echo "... src/SLICOT-Reference/src/SB02MD.s" + @echo "... src/SLICOT-Reference/src/SB02MR.o" + @echo "... src/SLICOT-Reference/src/SB02MR.i" + @echo "... src/SLICOT-Reference/src/SB02MR.s" + @echo "... src/SLICOT-Reference/src/SB02MS.o" + @echo "... src/SLICOT-Reference/src/SB02MS.i" + @echo "... src/SLICOT-Reference/src/SB02MS.s" + @echo "... src/SLICOT-Reference/src/SB02MT.o" + @echo "... src/SLICOT-Reference/src/SB02MT.i" + @echo "... src/SLICOT-Reference/src/SB02MT.s" + @echo "... src/SLICOT-Reference/src/SB02MU.o" + @echo "... src/SLICOT-Reference/src/SB02MU.i" + @echo "... src/SLICOT-Reference/src/SB02MU.s" + @echo "... src/SLICOT-Reference/src/SB02MV.o" + @echo "... src/SLICOT-Reference/src/SB02MV.i" + @echo "... src/SLICOT-Reference/src/SB02MV.s" + @echo "... src/SLICOT-Reference/src/SB02MW.o" + @echo "... src/SLICOT-Reference/src/SB02MW.i" + @echo "... src/SLICOT-Reference/src/SB02MW.s" + @echo "... src/SLICOT-Reference/src/SB02MX.o" + @echo "... src/SLICOT-Reference/src/SB02MX.i" + @echo "... src/SLICOT-Reference/src/SB02MX.s" + @echo "... src/SLICOT-Reference/src/SB02ND.o" + @echo "... src/SLICOT-Reference/src/SB02ND.i" + @echo "... src/SLICOT-Reference/src/SB02ND.s" + @echo "... src/SLICOT-Reference/src/SB02OD.o" + @echo "... src/SLICOT-Reference/src/SB02OD.i" + @echo "... src/SLICOT-Reference/src/SB02OD.s" + @echo "... src/SLICOT-Reference/src/SB02OU.o" + @echo "... src/SLICOT-Reference/src/SB02OU.i" + @echo "... src/SLICOT-Reference/src/SB02OU.s" + @echo "... src/SLICOT-Reference/src/SB02OV.o" + @echo "... src/SLICOT-Reference/src/SB02OV.i" + @echo "... src/SLICOT-Reference/src/SB02OV.s" + @echo "... src/SLICOT-Reference/src/SB02OW.o" + @echo "... src/SLICOT-Reference/src/SB02OW.i" + @echo "... src/SLICOT-Reference/src/SB02OW.s" + @echo "... src/SLICOT-Reference/src/SB02OX.o" + @echo "... src/SLICOT-Reference/src/SB02OX.i" + @echo "... src/SLICOT-Reference/src/SB02OX.s" + @echo "... src/SLICOT-Reference/src/SB02OY.o" + @echo "... src/SLICOT-Reference/src/SB02OY.i" + @echo "... src/SLICOT-Reference/src/SB02OY.s" + @echo "... src/SLICOT-Reference/src/SB02PD.o" + @echo "... src/SLICOT-Reference/src/SB02PD.i" + @echo "... src/SLICOT-Reference/src/SB02PD.s" + @echo "... src/SLICOT-Reference/src/SB02QD.o" + @echo "... src/SLICOT-Reference/src/SB02QD.i" + @echo "... src/SLICOT-Reference/src/SB02QD.s" + @echo "... src/SLICOT-Reference/src/SB02RD.o" + @echo "... src/SLICOT-Reference/src/SB02RD.i" + @echo "... src/SLICOT-Reference/src/SB02RD.s" + @echo "... src/SLICOT-Reference/src/SB02RU.o" + @echo "... src/SLICOT-Reference/src/SB02RU.i" + @echo "... src/SLICOT-Reference/src/SB02RU.s" + @echo "... src/SLICOT-Reference/src/SB02SD.o" + @echo "... src/SLICOT-Reference/src/SB02SD.i" + @echo "... src/SLICOT-Reference/src/SB02SD.s" + @echo "... src/SLICOT-Reference/src/SB03MD.o" + @echo "... src/SLICOT-Reference/src/SB03MD.i" + @echo "... src/SLICOT-Reference/src/SB03MD.s" + @echo "... src/SLICOT-Reference/src/SB03MU.o" + @echo "... src/SLICOT-Reference/src/SB03MU.i" + @echo "... src/SLICOT-Reference/src/SB03MU.s" + @echo "... src/SLICOT-Reference/src/SB03MV.o" + @echo "... src/SLICOT-Reference/src/SB03MV.i" + @echo "... src/SLICOT-Reference/src/SB03MV.s" + @echo "... src/SLICOT-Reference/src/SB03MW.o" + @echo "... src/SLICOT-Reference/src/SB03MW.i" + @echo "... src/SLICOT-Reference/src/SB03MW.s" + @echo "... src/SLICOT-Reference/src/SB03MX.o" + @echo "... src/SLICOT-Reference/src/SB03MX.i" + @echo "... src/SLICOT-Reference/src/SB03MX.s" + @echo "... src/SLICOT-Reference/src/SB03MY.o" + @echo "... src/SLICOT-Reference/src/SB03MY.i" + @echo "... src/SLICOT-Reference/src/SB03MY.s" + @echo "... src/SLICOT-Reference/src/SB03OD.o" + @echo "... src/SLICOT-Reference/src/SB03OD.i" + @echo "... src/SLICOT-Reference/src/SB03OD.s" + @echo "... src/SLICOT-Reference/src/SB03OR.o" + @echo "... src/SLICOT-Reference/src/SB03OR.i" + @echo "... src/SLICOT-Reference/src/SB03OR.s" + @echo "... src/SLICOT-Reference/src/SB03OS.o" + @echo "... src/SLICOT-Reference/src/SB03OS.i" + @echo "... src/SLICOT-Reference/src/SB03OS.s" + @echo "... src/SLICOT-Reference/src/SB03OT.o" + @echo "... src/SLICOT-Reference/src/SB03OT.i" + @echo "... src/SLICOT-Reference/src/SB03OT.s" + @echo "... src/SLICOT-Reference/src/SB03OU.o" + @echo "... src/SLICOT-Reference/src/SB03OU.i" + @echo "... src/SLICOT-Reference/src/SB03OU.s" + @echo "... src/SLICOT-Reference/src/SB03OV.o" + @echo "... src/SLICOT-Reference/src/SB03OV.i" + @echo "... src/SLICOT-Reference/src/SB03OV.s" + @echo "... src/SLICOT-Reference/src/SB03OY.o" + @echo "... src/SLICOT-Reference/src/SB03OY.i" + @echo "... src/SLICOT-Reference/src/SB03OY.s" + @echo "... src/SLICOT-Reference/src/SB03OZ.o" + @echo "... src/SLICOT-Reference/src/SB03OZ.i" + @echo "... src/SLICOT-Reference/src/SB03OZ.s" + @echo "... src/SLICOT-Reference/src/SB03PD.o" + @echo "... src/SLICOT-Reference/src/SB03PD.i" + @echo "... src/SLICOT-Reference/src/SB03PD.s" + @echo "... src/SLICOT-Reference/src/SB03QD.o" + @echo "... src/SLICOT-Reference/src/SB03QD.i" + @echo "... src/SLICOT-Reference/src/SB03QD.s" + @echo "... src/SLICOT-Reference/src/SB03QX.o" + @echo "... src/SLICOT-Reference/src/SB03QX.i" + @echo "... src/SLICOT-Reference/src/SB03QX.s" + @echo "... src/SLICOT-Reference/src/SB03QY.o" + @echo "... src/SLICOT-Reference/src/SB03QY.i" + @echo "... src/SLICOT-Reference/src/SB03QY.s" + @echo "... src/SLICOT-Reference/src/SB03RD.o" + @echo "... src/SLICOT-Reference/src/SB03RD.i" + @echo "... src/SLICOT-Reference/src/SB03RD.s" + @echo "... src/SLICOT-Reference/src/SB03SD.o" + @echo "... src/SLICOT-Reference/src/SB03SD.i" + @echo "... src/SLICOT-Reference/src/SB03SD.s" + @echo "... src/SLICOT-Reference/src/SB03SX.o" + @echo "... src/SLICOT-Reference/src/SB03SX.i" + @echo "... src/SLICOT-Reference/src/SB03SX.s" + @echo "... src/SLICOT-Reference/src/SB03SY.o" + @echo "... src/SLICOT-Reference/src/SB03SY.i" + @echo "... src/SLICOT-Reference/src/SB03SY.s" + @echo "... src/SLICOT-Reference/src/SB03TD.o" + @echo "... src/SLICOT-Reference/src/SB03TD.i" + @echo "... src/SLICOT-Reference/src/SB03TD.s" + @echo "... src/SLICOT-Reference/src/SB03UD.o" + @echo "... src/SLICOT-Reference/src/SB03UD.i" + @echo "... src/SLICOT-Reference/src/SB03UD.s" + @echo "... src/SLICOT-Reference/src/SB04MD.o" + @echo "... src/SLICOT-Reference/src/SB04MD.i" + @echo "... src/SLICOT-Reference/src/SB04MD.s" + @echo "... src/SLICOT-Reference/src/SB04MR.o" + @echo "... src/SLICOT-Reference/src/SB04MR.i" + @echo "... src/SLICOT-Reference/src/SB04MR.s" + @echo "... src/SLICOT-Reference/src/SB04MU.o" + @echo "... src/SLICOT-Reference/src/SB04MU.i" + @echo "... src/SLICOT-Reference/src/SB04MU.s" + @echo "... src/SLICOT-Reference/src/SB04MW.o" + @echo "... src/SLICOT-Reference/src/SB04MW.i" + @echo "... src/SLICOT-Reference/src/SB04MW.s" + @echo "... src/SLICOT-Reference/src/SB04MY.o" + @echo "... src/SLICOT-Reference/src/SB04MY.i" + @echo "... src/SLICOT-Reference/src/SB04MY.s" + @echo "... src/SLICOT-Reference/src/SB04ND.o" + @echo "... src/SLICOT-Reference/src/SB04ND.i" + @echo "... src/SLICOT-Reference/src/SB04ND.s" + @echo "... src/SLICOT-Reference/src/SB04NV.o" + @echo "... src/SLICOT-Reference/src/SB04NV.i" + @echo "... src/SLICOT-Reference/src/SB04NV.s" + @echo "... src/SLICOT-Reference/src/SB04NW.o" + @echo "... src/SLICOT-Reference/src/SB04NW.i" + @echo "... src/SLICOT-Reference/src/SB04NW.s" + @echo "... src/SLICOT-Reference/src/SB04NX.o" + @echo "... src/SLICOT-Reference/src/SB04NX.i" + @echo "... src/SLICOT-Reference/src/SB04NX.s" + @echo "... src/SLICOT-Reference/src/SB04NY.o" + @echo "... src/SLICOT-Reference/src/SB04NY.i" + @echo "... src/SLICOT-Reference/src/SB04NY.s" + @echo "... src/SLICOT-Reference/src/SB04OD.o" + @echo "... src/SLICOT-Reference/src/SB04OD.i" + @echo "... src/SLICOT-Reference/src/SB04OD.s" + @echo "... src/SLICOT-Reference/src/SB04OW.o" + @echo "... src/SLICOT-Reference/src/SB04OW.i" + @echo "... src/SLICOT-Reference/src/SB04OW.s" + @echo "... src/SLICOT-Reference/src/SB04PD.o" + @echo "... src/SLICOT-Reference/src/SB04PD.i" + @echo "... src/SLICOT-Reference/src/SB04PD.s" + @echo "... src/SLICOT-Reference/src/SB04PX.o" + @echo "... src/SLICOT-Reference/src/SB04PX.i" + @echo "... src/SLICOT-Reference/src/SB04PX.s" + @echo "... src/SLICOT-Reference/src/SB04PY.o" + @echo "... src/SLICOT-Reference/src/SB04PY.i" + @echo "... src/SLICOT-Reference/src/SB04PY.s" + @echo "... src/SLICOT-Reference/src/SB04QD.o" + @echo "... src/SLICOT-Reference/src/SB04QD.i" + @echo "... src/SLICOT-Reference/src/SB04QD.s" + @echo "... src/SLICOT-Reference/src/SB04QR.o" + @echo "... src/SLICOT-Reference/src/SB04QR.i" + @echo "... src/SLICOT-Reference/src/SB04QR.s" + @echo "... src/SLICOT-Reference/src/SB04QU.o" + @echo "... src/SLICOT-Reference/src/SB04QU.i" + @echo "... src/SLICOT-Reference/src/SB04QU.s" + @echo "... src/SLICOT-Reference/src/SB04QY.o" + @echo "... src/SLICOT-Reference/src/SB04QY.i" + @echo "... src/SLICOT-Reference/src/SB04QY.s" + @echo "... src/SLICOT-Reference/src/SB04RD.o" + @echo "... src/SLICOT-Reference/src/SB04RD.i" + @echo "... src/SLICOT-Reference/src/SB04RD.s" + @echo "... src/SLICOT-Reference/src/SB04RV.o" + @echo "... src/SLICOT-Reference/src/SB04RV.i" + @echo "... src/SLICOT-Reference/src/SB04RV.s" + @echo "... src/SLICOT-Reference/src/SB04RW.o" + @echo "... src/SLICOT-Reference/src/SB04RW.i" + @echo "... src/SLICOT-Reference/src/SB04RW.s" + @echo "... src/SLICOT-Reference/src/SB04RX.o" + @echo "... src/SLICOT-Reference/src/SB04RX.i" + @echo "... src/SLICOT-Reference/src/SB04RX.s" + @echo "... src/SLICOT-Reference/src/SB04RY.o" + @echo "... src/SLICOT-Reference/src/SB04RY.i" + @echo "... src/SLICOT-Reference/src/SB04RY.s" + @echo "... src/SLICOT-Reference/src/SB06ND.o" + @echo "... src/SLICOT-Reference/src/SB06ND.i" + @echo "... src/SLICOT-Reference/src/SB06ND.s" + @echo "... src/SLICOT-Reference/src/SB08CD.o" + @echo "... src/SLICOT-Reference/src/SB08CD.i" + @echo "... src/SLICOT-Reference/src/SB08CD.s" + @echo "... src/SLICOT-Reference/src/SB08DD.o" + @echo "... src/SLICOT-Reference/src/SB08DD.i" + @echo "... src/SLICOT-Reference/src/SB08DD.s" + @echo "... src/SLICOT-Reference/src/SB08ED.o" + @echo "... src/SLICOT-Reference/src/SB08ED.i" + @echo "... src/SLICOT-Reference/src/SB08ED.s" + @echo "... src/SLICOT-Reference/src/SB08FD.o" + @echo "... src/SLICOT-Reference/src/SB08FD.i" + @echo "... src/SLICOT-Reference/src/SB08FD.s" + @echo "... src/SLICOT-Reference/src/SB08GD.o" + @echo "... src/SLICOT-Reference/src/SB08GD.i" + @echo "... src/SLICOT-Reference/src/SB08GD.s" + @echo "... src/SLICOT-Reference/src/SB08HD.o" + @echo "... src/SLICOT-Reference/src/SB08HD.i" + @echo "... src/SLICOT-Reference/src/SB08HD.s" + @echo "... src/SLICOT-Reference/src/SB08MD.o" + @echo "... src/SLICOT-Reference/src/SB08MD.i" + @echo "... src/SLICOT-Reference/src/SB08MD.s" + @echo "... src/SLICOT-Reference/src/SB08MY.o" + @echo "... src/SLICOT-Reference/src/SB08MY.i" + @echo "... src/SLICOT-Reference/src/SB08MY.s" + @echo "... src/SLICOT-Reference/src/SB08ND.o" + @echo "... src/SLICOT-Reference/src/SB08ND.i" + @echo "... src/SLICOT-Reference/src/SB08ND.s" + @echo "... src/SLICOT-Reference/src/SB08NY.o" + @echo "... src/SLICOT-Reference/src/SB08NY.i" + @echo "... src/SLICOT-Reference/src/SB08NY.s" + @echo "... src/SLICOT-Reference/src/SB09MD.o" + @echo "... src/SLICOT-Reference/src/SB09MD.i" + @echo "... src/SLICOT-Reference/src/SB09MD.s" + @echo "... src/SLICOT-Reference/src/SB10AD.o" + @echo "... src/SLICOT-Reference/src/SB10AD.i" + @echo "... src/SLICOT-Reference/src/SB10AD.s" + @echo "... src/SLICOT-Reference/src/SB10DD.o" + @echo "... src/SLICOT-Reference/src/SB10DD.i" + @echo "... src/SLICOT-Reference/src/SB10DD.s" + @echo "... src/SLICOT-Reference/src/SB10ED.o" + @echo "... src/SLICOT-Reference/src/SB10ED.i" + @echo "... src/SLICOT-Reference/src/SB10ED.s" + @echo "... src/SLICOT-Reference/src/SB10FD.o" + @echo "... src/SLICOT-Reference/src/SB10FD.i" + @echo "... src/SLICOT-Reference/src/SB10FD.s" + @echo "... src/SLICOT-Reference/src/SB10HD.o" + @echo "... src/SLICOT-Reference/src/SB10HD.i" + @echo "... src/SLICOT-Reference/src/SB10HD.s" + @echo "... src/SLICOT-Reference/src/SB10ID.o" + @echo "... src/SLICOT-Reference/src/SB10ID.i" + @echo "... src/SLICOT-Reference/src/SB10ID.s" + @echo "... src/SLICOT-Reference/src/SB10JD.o" + @echo "... src/SLICOT-Reference/src/SB10JD.i" + @echo "... src/SLICOT-Reference/src/SB10JD.s" + @echo "... src/SLICOT-Reference/src/SB10KD.o" + @echo "... src/SLICOT-Reference/src/SB10KD.i" + @echo "... src/SLICOT-Reference/src/SB10KD.s" + @echo "... src/SLICOT-Reference/src/SB10LD.o" + @echo "... src/SLICOT-Reference/src/SB10LD.i" + @echo "... src/SLICOT-Reference/src/SB10LD.s" + @echo "... src/SLICOT-Reference/src/SB10MD.o" + @echo "... src/SLICOT-Reference/src/SB10MD.i" + @echo "... src/SLICOT-Reference/src/SB10MD.s" + @echo "... src/SLICOT-Reference/src/SB10PD.o" + @echo "... src/SLICOT-Reference/src/SB10PD.i" + @echo "... src/SLICOT-Reference/src/SB10PD.s" + @echo "... src/SLICOT-Reference/src/SB10QD.o" + @echo "... src/SLICOT-Reference/src/SB10QD.i" + @echo "... src/SLICOT-Reference/src/SB10QD.s" + @echo "... src/SLICOT-Reference/src/SB10RD.o" + @echo "... src/SLICOT-Reference/src/SB10RD.i" + @echo "... src/SLICOT-Reference/src/SB10RD.s" + @echo "... src/SLICOT-Reference/src/SB10SD.o" + @echo "... src/SLICOT-Reference/src/SB10SD.i" + @echo "... src/SLICOT-Reference/src/SB10SD.s" + @echo "... src/SLICOT-Reference/src/SB10TD.o" + @echo "... src/SLICOT-Reference/src/SB10TD.i" + @echo "... src/SLICOT-Reference/src/SB10TD.s" + @echo "... src/SLICOT-Reference/src/SB10UD.o" + @echo "... src/SLICOT-Reference/src/SB10UD.i" + @echo "... src/SLICOT-Reference/src/SB10UD.s" + @echo "... src/SLICOT-Reference/src/SB10VD.o" + @echo "... src/SLICOT-Reference/src/SB10VD.i" + @echo "... src/SLICOT-Reference/src/SB10VD.s" + @echo "... src/SLICOT-Reference/src/SB10WD.o" + @echo "... src/SLICOT-Reference/src/SB10WD.i" + @echo "... src/SLICOT-Reference/src/SB10WD.s" + @echo "... src/SLICOT-Reference/src/SB10YD.o" + @echo "... src/SLICOT-Reference/src/SB10YD.i" + @echo "... src/SLICOT-Reference/src/SB10YD.s" + @echo "... src/SLICOT-Reference/src/SB10ZD.o" + @echo "... src/SLICOT-Reference/src/SB10ZD.i" + @echo "... src/SLICOT-Reference/src/SB10ZD.s" + @echo "... src/SLICOT-Reference/src/SB10ZP.o" + @echo "... src/SLICOT-Reference/src/SB10ZP.i" + @echo "... src/SLICOT-Reference/src/SB10ZP.s" + @echo "... src/SLICOT-Reference/src/SB16AD.o" + @echo "... src/SLICOT-Reference/src/SB16AD.i" + @echo "... src/SLICOT-Reference/src/SB16AD.s" + @echo "... src/SLICOT-Reference/src/SB16AY.o" + @echo "... src/SLICOT-Reference/src/SB16AY.i" + @echo "... src/SLICOT-Reference/src/SB16AY.s" + @echo "... src/SLICOT-Reference/src/SB16BD.o" + @echo "... src/SLICOT-Reference/src/SB16BD.i" + @echo "... src/SLICOT-Reference/src/SB16BD.s" + @echo "... src/SLICOT-Reference/src/SB16CD.o" + @echo "... src/SLICOT-Reference/src/SB16CD.i" + @echo "... src/SLICOT-Reference/src/SB16CD.s" + @echo "... src/SLICOT-Reference/src/SB16CY.o" + @echo "... src/SLICOT-Reference/src/SB16CY.i" + @echo "... src/SLICOT-Reference/src/SB16CY.s" + @echo "... src/SLICOT-Reference/src/SG02AD.o" + @echo "... src/SLICOT-Reference/src/SG02AD.i" + @echo "... src/SLICOT-Reference/src/SG02AD.s" + @echo "... src/SLICOT-Reference/src/SG02CV.o" + @echo "... src/SLICOT-Reference/src/SG02CV.i" + @echo "... src/SLICOT-Reference/src/SG02CV.s" + @echo "... src/SLICOT-Reference/src/SG02CW.o" + @echo "... src/SLICOT-Reference/src/SG02CW.i" + @echo "... src/SLICOT-Reference/src/SG02CW.s" + @echo "... src/SLICOT-Reference/src/SG02CX.o" + @echo "... src/SLICOT-Reference/src/SG02CX.i" + @echo "... src/SLICOT-Reference/src/SG02CX.s" + @echo "... src/SLICOT-Reference/src/SG02ND.o" + @echo "... src/SLICOT-Reference/src/SG02ND.i" + @echo "... src/SLICOT-Reference/src/SG02ND.s" + @echo "... src/SLICOT-Reference/src/SG03AD.o" + @echo "... src/SLICOT-Reference/src/SG03AD.i" + @echo "... src/SLICOT-Reference/src/SG03AD.s" + @echo "... src/SLICOT-Reference/src/SG03AX.o" + @echo "... src/SLICOT-Reference/src/SG03AX.i" + @echo "... src/SLICOT-Reference/src/SG03AX.s" + @echo "... src/SLICOT-Reference/src/SG03AY.o" + @echo "... src/SLICOT-Reference/src/SG03AY.i" + @echo "... src/SLICOT-Reference/src/SG03AY.s" + @echo "... src/SLICOT-Reference/src/SG03BD.o" + @echo "... src/SLICOT-Reference/src/SG03BD.i" + @echo "... src/SLICOT-Reference/src/SG03BD.s" + @echo "... src/SLICOT-Reference/src/SG03BR.o" + @echo "... src/SLICOT-Reference/src/SG03BR.i" + @echo "... src/SLICOT-Reference/src/SG03BR.s" + @echo "... src/SLICOT-Reference/src/SG03BS.o" + @echo "... src/SLICOT-Reference/src/SG03BS.i" + @echo "... src/SLICOT-Reference/src/SG03BS.s" + @echo "... src/SLICOT-Reference/src/SG03BT.o" + @echo "... src/SLICOT-Reference/src/SG03BT.i" + @echo "... src/SLICOT-Reference/src/SG03BT.s" + @echo "... src/SLICOT-Reference/src/SG03BU.o" + @echo "... src/SLICOT-Reference/src/SG03BU.i" + @echo "... src/SLICOT-Reference/src/SG03BU.s" + @echo "... src/SLICOT-Reference/src/SG03BV.o" + @echo "... src/SLICOT-Reference/src/SG03BV.i" + @echo "... src/SLICOT-Reference/src/SG03BV.s" + @echo "... src/SLICOT-Reference/src/SG03BW.o" + @echo "... src/SLICOT-Reference/src/SG03BW.i" + @echo "... src/SLICOT-Reference/src/SG03BW.s" + @echo "... src/SLICOT-Reference/src/SG03BX.o" + @echo "... src/SLICOT-Reference/src/SG03BX.i" + @echo "... src/SLICOT-Reference/src/SG03BX.s" + @echo "... src/SLICOT-Reference/src/SG03BY.o" + @echo "... src/SLICOT-Reference/src/SG03BY.i" + @echo "... src/SLICOT-Reference/src/SG03BY.s" + @echo "... src/SLICOT-Reference/src/SG03BZ.o" + @echo "... src/SLICOT-Reference/src/SG03BZ.i" + @echo "... src/SLICOT-Reference/src/SG03BZ.s" + @echo "... src/SLICOT-Reference/src/SLCT_DLATZM.o" + @echo "... src/SLICOT-Reference/src/SLCT_DLATZM.i" + @echo "... src/SLICOT-Reference/src/SLCT_DLATZM.s" + @echo "... src/SLICOT-Reference/src/SLCT_ZLATZM.o" + @echo "... src/SLICOT-Reference/src/SLCT_ZLATZM.i" + @echo "... src/SLICOT-Reference/src/SLCT_ZLATZM.s" + @echo "... src/SLICOT-Reference/src/TB01ID.o" + @echo "... src/SLICOT-Reference/src/TB01ID.i" + @echo "... src/SLICOT-Reference/src/TB01ID.s" + @echo "... src/SLICOT-Reference/src/TB01IZ.o" + @echo "... src/SLICOT-Reference/src/TB01IZ.i" + @echo "... src/SLICOT-Reference/src/TB01IZ.s" + @echo "... src/SLICOT-Reference/src/TB01KD.o" + @echo "... src/SLICOT-Reference/src/TB01KD.i" + @echo "... src/SLICOT-Reference/src/TB01KD.s" + @echo "... src/SLICOT-Reference/src/TB01KX.o" + @echo "... src/SLICOT-Reference/src/TB01KX.i" + @echo "... src/SLICOT-Reference/src/TB01KX.s" + @echo "... src/SLICOT-Reference/src/TB01LD.o" + @echo "... src/SLICOT-Reference/src/TB01LD.i" + @echo "... src/SLICOT-Reference/src/TB01LD.s" + @echo "... src/SLICOT-Reference/src/TB01MD.o" + @echo "... src/SLICOT-Reference/src/TB01MD.i" + @echo "... src/SLICOT-Reference/src/TB01MD.s" + @echo "... src/SLICOT-Reference/src/TB01ND.o" + @echo "... src/SLICOT-Reference/src/TB01ND.i" + @echo "... src/SLICOT-Reference/src/TB01ND.s" + @echo "... src/SLICOT-Reference/src/TB01PD.o" + @echo "... src/SLICOT-Reference/src/TB01PD.i" + @echo "... src/SLICOT-Reference/src/TB01PD.s" + @echo "... src/SLICOT-Reference/src/TB01PX.o" + @echo "... src/SLICOT-Reference/src/TB01PX.i" + @echo "... src/SLICOT-Reference/src/TB01PX.s" + @echo "... src/SLICOT-Reference/src/TB01TD.o" + @echo "... src/SLICOT-Reference/src/TB01TD.i" + @echo "... src/SLICOT-Reference/src/TB01TD.s" + @echo "... src/SLICOT-Reference/src/TB01TY.o" + @echo "... src/SLICOT-Reference/src/TB01TY.i" + @echo "... src/SLICOT-Reference/src/TB01TY.s" + @echo "... src/SLICOT-Reference/src/TB01UD.o" + @echo "... src/SLICOT-Reference/src/TB01UD.i" + @echo "... src/SLICOT-Reference/src/TB01UD.s" + @echo "... src/SLICOT-Reference/src/TB01UX.o" + @echo "... src/SLICOT-Reference/src/TB01UX.i" + @echo "... src/SLICOT-Reference/src/TB01UX.s" + @echo "... src/SLICOT-Reference/src/TB01UY.o" + @echo "... src/SLICOT-Reference/src/TB01UY.i" + @echo "... src/SLICOT-Reference/src/TB01UY.s" + @echo "... src/SLICOT-Reference/src/TB01VD.o" + @echo "... src/SLICOT-Reference/src/TB01VD.i" + @echo "... src/SLICOT-Reference/src/TB01VD.s" + @echo "... src/SLICOT-Reference/src/TB01VY.o" + @echo "... src/SLICOT-Reference/src/TB01VY.i" + @echo "... src/SLICOT-Reference/src/TB01VY.s" + @echo "... src/SLICOT-Reference/src/TB01WD.o" + @echo "... src/SLICOT-Reference/src/TB01WD.i" + @echo "... src/SLICOT-Reference/src/TB01WD.s" + @echo "... src/SLICOT-Reference/src/TB01WX.o" + @echo "... src/SLICOT-Reference/src/TB01WX.i" + @echo "... src/SLICOT-Reference/src/TB01WX.s" + @echo "... src/SLICOT-Reference/src/TB01XD.o" + @echo "... src/SLICOT-Reference/src/TB01XD.i" + @echo "... src/SLICOT-Reference/src/TB01XD.s" + @echo "... src/SLICOT-Reference/src/TB01XZ.o" + @echo "... src/SLICOT-Reference/src/TB01XZ.i" + @echo "... src/SLICOT-Reference/src/TB01XZ.s" + @echo "... src/SLICOT-Reference/src/TB01YD.o" + @echo "... src/SLICOT-Reference/src/TB01YD.i" + @echo "... src/SLICOT-Reference/src/TB01YD.s" + @echo "... src/SLICOT-Reference/src/TB01ZD.o" + @echo "... src/SLICOT-Reference/src/TB01ZD.i" + @echo "... src/SLICOT-Reference/src/TB01ZD.s" + @echo "... src/SLICOT-Reference/src/TB03AD.o" + @echo "... src/SLICOT-Reference/src/TB03AD.i" + @echo "... src/SLICOT-Reference/src/TB03AD.s" + @echo "... src/SLICOT-Reference/src/TB03AY.o" + @echo "... src/SLICOT-Reference/src/TB03AY.i" + @echo "... src/SLICOT-Reference/src/TB03AY.s" + @echo "... src/SLICOT-Reference/src/TB04AD.o" + @echo "... src/SLICOT-Reference/src/TB04AD.i" + @echo "... src/SLICOT-Reference/src/TB04AD.s" + @echo "... src/SLICOT-Reference/src/TB04AY.o" + @echo "... src/SLICOT-Reference/src/TB04AY.i" + @echo "... src/SLICOT-Reference/src/TB04AY.s" + @echo "... src/SLICOT-Reference/src/TB04BD.o" + @echo "... src/SLICOT-Reference/src/TB04BD.i" + @echo "... src/SLICOT-Reference/src/TB04BD.s" + @echo "... src/SLICOT-Reference/src/TB04BV.o" + @echo "... src/SLICOT-Reference/src/TB04BV.i" + @echo "... src/SLICOT-Reference/src/TB04BV.s" + @echo "... src/SLICOT-Reference/src/TB04BW.o" + @echo "... src/SLICOT-Reference/src/TB04BW.i" + @echo "... src/SLICOT-Reference/src/TB04BW.s" + @echo "... src/SLICOT-Reference/src/TB04BX.o" + @echo "... src/SLICOT-Reference/src/TB04BX.i" + @echo "... src/SLICOT-Reference/src/TB04BX.s" + @echo "... src/SLICOT-Reference/src/TB04CD.o" + @echo "... src/SLICOT-Reference/src/TB04CD.i" + @echo "... src/SLICOT-Reference/src/TB04CD.s" + @echo "... src/SLICOT-Reference/src/TB05AD.o" + @echo "... src/SLICOT-Reference/src/TB05AD.i" + @echo "... src/SLICOT-Reference/src/TB05AD.s" + @echo "... src/SLICOT-Reference/src/TC01OD.o" + @echo "... src/SLICOT-Reference/src/TC01OD.i" + @echo "... src/SLICOT-Reference/src/TC01OD.s" + @echo "... src/SLICOT-Reference/src/TC04AD.o" + @echo "... src/SLICOT-Reference/src/TC04AD.i" + @echo "... src/SLICOT-Reference/src/TC04AD.s" + @echo "... src/SLICOT-Reference/src/TC05AD.o" + @echo "... src/SLICOT-Reference/src/TC05AD.i" + @echo "... src/SLICOT-Reference/src/TC05AD.s" + @echo "... src/SLICOT-Reference/src/TD03AD.o" + @echo "... src/SLICOT-Reference/src/TD03AD.i" + @echo "... src/SLICOT-Reference/src/TD03AD.s" + @echo "... src/SLICOT-Reference/src/TD03AY.o" + @echo "... src/SLICOT-Reference/src/TD03AY.i" + @echo "... src/SLICOT-Reference/src/TD03AY.s" + @echo "... src/SLICOT-Reference/src/TD04AD.o" + @echo "... src/SLICOT-Reference/src/TD04AD.i" + @echo "... src/SLICOT-Reference/src/TD04AD.s" + @echo "... src/SLICOT-Reference/src/TD05AD.o" + @echo "... src/SLICOT-Reference/src/TD05AD.i" + @echo "... src/SLICOT-Reference/src/TD05AD.s" + @echo "... src/SLICOT-Reference/src/TF01MD.o" + @echo "... src/SLICOT-Reference/src/TF01MD.i" + @echo "... src/SLICOT-Reference/src/TF01MD.s" + @echo "... src/SLICOT-Reference/src/TF01MX.o" + @echo "... src/SLICOT-Reference/src/TF01MX.i" + @echo "... src/SLICOT-Reference/src/TF01MX.s" + @echo "... src/SLICOT-Reference/src/TF01MY.o" + @echo "... src/SLICOT-Reference/src/TF01MY.i" + @echo "... src/SLICOT-Reference/src/TF01MY.s" + @echo "... src/SLICOT-Reference/src/TF01ND.o" + @echo "... src/SLICOT-Reference/src/TF01ND.i" + @echo "... src/SLICOT-Reference/src/TF01ND.s" + @echo "... src/SLICOT-Reference/src/TF01OD.o" + @echo "... src/SLICOT-Reference/src/TF01OD.i" + @echo "... src/SLICOT-Reference/src/TF01OD.s" + @echo "... src/SLICOT-Reference/src/TF01PD.o" + @echo "... src/SLICOT-Reference/src/TF01PD.i" + @echo "... src/SLICOT-Reference/src/TF01PD.s" + @echo "... src/SLICOT-Reference/src/TF01QD.o" + @echo "... src/SLICOT-Reference/src/TF01QD.i" + @echo "... src/SLICOT-Reference/src/TF01QD.s" + @echo "... src/SLICOT-Reference/src/TF01RD.o" + @echo "... src/SLICOT-Reference/src/TF01RD.i" + @echo "... src/SLICOT-Reference/src/TF01RD.s" + @echo "... src/SLICOT-Reference/src/TG01AD.o" + @echo "... src/SLICOT-Reference/src/TG01AD.i" + @echo "... src/SLICOT-Reference/src/TG01AD.s" + @echo "... src/SLICOT-Reference/src/TG01AZ.o" + @echo "... src/SLICOT-Reference/src/TG01AZ.i" + @echo "... src/SLICOT-Reference/src/TG01AZ.s" + @echo "... src/SLICOT-Reference/src/TG01BD.o" + @echo "... src/SLICOT-Reference/src/TG01BD.i" + @echo "... src/SLICOT-Reference/src/TG01BD.s" + @echo "... src/SLICOT-Reference/src/TG01CD.o" + @echo "... src/SLICOT-Reference/src/TG01CD.i" + @echo "... src/SLICOT-Reference/src/TG01CD.s" + @echo "... src/SLICOT-Reference/src/TG01DD.o" + @echo "... src/SLICOT-Reference/src/TG01DD.i" + @echo "... src/SLICOT-Reference/src/TG01DD.s" + @echo "... src/SLICOT-Reference/src/TG01ED.o" + @echo "... src/SLICOT-Reference/src/TG01ED.i" + @echo "... src/SLICOT-Reference/src/TG01ED.s" + @echo "... src/SLICOT-Reference/src/TG01FD.o" + @echo "... src/SLICOT-Reference/src/TG01FD.i" + @echo "... src/SLICOT-Reference/src/TG01FD.s" + @echo "... src/SLICOT-Reference/src/TG01FZ.o" + @echo "... src/SLICOT-Reference/src/TG01FZ.i" + @echo "... src/SLICOT-Reference/src/TG01FZ.s" + @echo "... src/SLICOT-Reference/src/TG01GD.o" + @echo "... src/SLICOT-Reference/src/TG01GD.i" + @echo "... src/SLICOT-Reference/src/TG01GD.s" + @echo "... src/SLICOT-Reference/src/TG01HD.o" + @echo "... src/SLICOT-Reference/src/TG01HD.i" + @echo "... src/SLICOT-Reference/src/TG01HD.s" + @echo "... src/SLICOT-Reference/src/TG01HU.o" + @echo "... src/SLICOT-Reference/src/TG01HU.i" + @echo "... src/SLICOT-Reference/src/TG01HU.s" + @echo "... src/SLICOT-Reference/src/TG01HX.o" + @echo "... src/SLICOT-Reference/src/TG01HX.i" + @echo "... src/SLICOT-Reference/src/TG01HX.s" + @echo "... src/SLICOT-Reference/src/TG01HY.o" + @echo "... src/SLICOT-Reference/src/TG01HY.i" + @echo "... src/SLICOT-Reference/src/TG01HY.s" + @echo "... src/SLICOT-Reference/src/TG01ID.o" + @echo "... src/SLICOT-Reference/src/TG01ID.i" + @echo "... src/SLICOT-Reference/src/TG01ID.s" + @echo "... src/SLICOT-Reference/src/TG01JD.o" + @echo "... src/SLICOT-Reference/src/TG01JD.i" + @echo "... src/SLICOT-Reference/src/TG01JD.s" + @echo "... src/SLICOT-Reference/src/TG01JY.o" + @echo "... src/SLICOT-Reference/src/TG01JY.i" + @echo "... src/SLICOT-Reference/src/TG01JY.s" + @echo "... src/SLICOT-Reference/src/TG01KD.o" + @echo "... src/SLICOT-Reference/src/TG01KD.i" + @echo "... src/SLICOT-Reference/src/TG01KD.s" + @echo "... src/SLICOT-Reference/src/TG01KZ.o" + @echo "... src/SLICOT-Reference/src/TG01KZ.i" + @echo "... src/SLICOT-Reference/src/TG01KZ.s" + @echo "... src/SLICOT-Reference/src/TG01LD.o" + @echo "... src/SLICOT-Reference/src/TG01LD.i" + @echo "... src/SLICOT-Reference/src/TG01LD.s" + @echo "... src/SLICOT-Reference/src/TG01LY.o" + @echo "... src/SLICOT-Reference/src/TG01LY.i" + @echo "... src/SLICOT-Reference/src/TG01LY.s" + @echo "... src/SLICOT-Reference/src/TG01MD.o" + @echo "... src/SLICOT-Reference/src/TG01MD.i" + @echo "... src/SLICOT-Reference/src/TG01MD.s" + @echo "... src/SLICOT-Reference/src/TG01ND.o" + @echo "... src/SLICOT-Reference/src/TG01ND.i" + @echo "... src/SLICOT-Reference/src/TG01ND.s" + @echo "... src/SLICOT-Reference/src/TG01NX.o" + @echo "... src/SLICOT-Reference/src/TG01NX.i" + @echo "... src/SLICOT-Reference/src/TG01NX.s" + @echo "... src/SLICOT-Reference/src/TG01OA.o" + @echo "... src/SLICOT-Reference/src/TG01OA.i" + @echo "... src/SLICOT-Reference/src/TG01OA.s" + @echo "... src/SLICOT-Reference/src/TG01OB.o" + @echo "... src/SLICOT-Reference/src/TG01OB.i" + @echo "... src/SLICOT-Reference/src/TG01OB.s" + @echo "... src/SLICOT-Reference/src/TG01OD.o" + @echo "... src/SLICOT-Reference/src/TG01OD.i" + @echo "... src/SLICOT-Reference/src/TG01OD.s" + @echo "... src/SLICOT-Reference/src/TG01OZ.o" + @echo "... src/SLICOT-Reference/src/TG01OZ.i" + @echo "... src/SLICOT-Reference/src/TG01OZ.s" + @echo "... src/SLICOT-Reference/src/TG01PD.o" + @echo "... src/SLICOT-Reference/src/TG01PD.i" + @echo "... src/SLICOT-Reference/src/TG01PD.s" + @echo "... src/SLICOT-Reference/src/TG01QD.o" + @echo "... src/SLICOT-Reference/src/TG01QD.i" + @echo "... src/SLICOT-Reference/src/TG01QD.s" + @echo "... src/SLICOT-Reference/src/TG01WD.o" + @echo "... src/SLICOT-Reference/src/TG01WD.i" + @echo "... src/SLICOT-Reference/src/TG01WD.s" + @echo "... src/SLICOT-Reference/src/UD01BD.o" + @echo "... src/SLICOT-Reference/src/UD01BD.i" + @echo "... src/SLICOT-Reference/src/UD01BD.s" + @echo "... src/SLICOT-Reference/src/UD01CD.o" + @echo "... src/SLICOT-Reference/src/UD01CD.i" + @echo "... src/SLICOT-Reference/src/UD01CD.s" + @echo "... src/SLICOT-Reference/src/UD01DD.o" + @echo "... src/SLICOT-Reference/src/UD01DD.i" + @echo "... src/SLICOT-Reference/src/UD01DD.s" + @echo "... src/SLICOT-Reference/src/UD01MD.o" + @echo "... src/SLICOT-Reference/src/UD01MD.i" + @echo "... src/SLICOT-Reference/src/UD01MD.s" + @echo "... src/SLICOT-Reference/src/UD01MZ.o" + @echo "... src/SLICOT-Reference/src/UD01MZ.i" + @echo "... src/SLICOT-Reference/src/UD01MZ.s" + @echo "... src/SLICOT-Reference/src/UD01ND.o" + @echo "... src/SLICOT-Reference/src/UD01ND.i" + @echo "... src/SLICOT-Reference/src/UD01ND.s" + @echo "... src/SLICOT-Reference/src/UE01MD.o" + @echo "... src/SLICOT-Reference/src/UE01MD.i" + @echo "... src/SLICOT-Reference/src/UE01MD.s" + @echo "... src/SLICOT-Reference/src/delctg.o" + @echo "... src/SLICOT-Reference/src/delctg.i" + @echo "... src/SLICOT-Reference/src/delctg.s" + @echo "... src/SLICOT-Reference/src/select.o" + @echo "... src/SLICOT-Reference/src/select.i" + @echo "... src/SLICOT-Reference/src/select.s" + @echo "... src/SLICOT-Reference/src/zelctg.o" + @echo "... src/SLICOT-Reference/src/zelctg.i" + @echo "... src/SLICOT-Reference/src/zelctg.s" + @echo "... src/XERBLA.o" + @echo "... src/XERBLA.i" + @echo "... src/XERBLA.s" + @echo "... src/ftruefalse.o" + @echo "... src/ftruefalse.i" + @echo "... src/ftruefalse.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/mcculler/local/projects_sync/Slycot && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/slycot/__init__.py b/slycot/__init__.py index c1243ea5..1dd6963b 100644 --- a/slycot/__init__.py +++ b/slycot/__init__.py @@ -33,7 +33,7 @@ ab05md, ab05nd, ab07nd, ab08nd, ab08nz, - ab09ad, ab09ax, ab09bd, ab09md, ab09nd, + ab09ad, ab09ax, ab09bd, ab09md, ab09nd, ab09bx, ab13bd, ab13dd, ab13ed, ab13fd, ab13md, ag08bd) @@ -63,8 +63,9 @@ sg02ad, sg03ad, sg03bd) - # Transformation routines (12/77 wrapped) + # Transformation routines (13/77 wrapped) from .transform import (tb01id, tb01pd, + tg01jd, tb03ad, tb04ad, tb05ad, @@ -76,7 +77,6 @@ # Utility routines (0/7 wrapped) - from .version import __version__ diff --git a/slycot/analysis.py b/slycot/analysis.py index 230eedb9..e3359e70 100644 --- a/slycot/analysis.py +++ b/slycot/analysis.py @@ -919,6 +919,148 @@ def ab09ax(dico,job,n,m,p,A,B,C,nr=None,tol=0.0,ldwork=None): raise_if_slycot_error(out[-2:], arg_list, ab09ax.__doc__, locals()) return Nr, A[:Nr, :Nr], B[:Nr, :], C[:, :Nr], hsv, T[:, :Nr], Ti[:Nr, :] + +def ab09bx(dico,job,n,m,p,A,B,C,D,nr=None,tol1=0.0,tol2=0.0,ldwork=None): + """``nr,Ar,Br,Cr,Dr,hsv,T,Ti = ab09bx(dico,job,equil,n,m,p,nr,A,B,C,D,[nr,tol1,tol2,ldwork])`` + + TODO update docs for ab09bx + + To compute a reduced order model ``(Ar,Br,Cr,Dr)`` for a stable original + state-space representation ``(A,B,C,D)`` by using either the square-root + or the balancing-free square-root Singular Perturbation model + reduction method. The state dynamics matrix `A` of the original + system is an upper quasi-triangular matrix in *real Schur canonical + form.* The matrices of the reduced order system are computed using + the truncation formulas: + + ``Ar = TI * A * T , Br = TI * B , Cr = C * T`` . + + Parameters + ---------- + dico : {'D', 'C'} + Indicate whether the system is discrete `D` or continuous `C` + job : {'B', 'N'} + Balance `B` or not `N` + n : int + The number of state variables. n >= 0. + m : int + The number of system inputs. m >= 0. + p : int + The number of system outputs. p >= 0. + A : (n, n) array_like + The leading n-by-n part of this array must contain the state + dynamics matrix A of the system *in real Schur form.* + B : (n, m) array_like + The leading n-by-m part of this array must contain the input/state + matrix B of the system. + C : (p, n) array_like + The leading p-by-n part of this array must contain the + state/output matrix C of the system. + D : (p, m) array_like + The leading p-by-m part of this array must contain the + state/output matrix D of the system. + nr : int, optional + `nr` is the desired order of the resulting reduced order + system. ``0 <= nr <= n``. Automatically determined by `tol` if + ``nr is None`` and returned. See return object `nr`. + Default is None. + tol2 : float, optional + If ``nr is None``, `tol`contains the tolerance for determining the + order of the reduced system. For model reduction, the recommended + value is ``tol = c * HNORM(A, B, C)``, where `c` is a constant in + the interval ``[0.00001, 0.001]`` and ``HNORM(A, B, C)`` is + the Hankel-Norm of the given sysstem (computed in ``HSV(1)``). For + computing a minimal realization, the recommended value is + ``tol = n * eps * HNORM(A, B, C)``, where `eps` is the machine + precision (see LAPACK Library Routine `DLAMCH`). This value is + used by default if ``tol <= 0`` on entry. If `nr` is specified, + the value of `tol` is ignored. Default is `0.0`. + tol2 : float, optional + additional tolerance TODO update but slicot docs not illuminating + ldwork : int, optional + The length of the cache array. The default value is + ``n*(2*n+max(n,m,p)+5) + n*(n+1)/2 ~= 3.5*n**2 + 5*n``, + a larger value should lead to better performance. + Default is None. + + Returns + ------- + nr : int + `nr` is the order of the resulting reduced order model. + `nr` is set as follows: + If on input ``nr is not None``, `nr` is equal to ``MIN(nr,NMIN)``, + where `nr` is the desired order on entry and `NMIN` is the order + of a minimal realization of the given system; `NMIN` is + determined as the number of Hankel singular values greater + than ``n*eps*HNORM(A,B,C)``, where `eps` is the machine + precision (see LAPACK Library Routine DLAMCH) and + ``HNORM(A,B,C)`` is the Hankel norm of the system (computed + in ``HSV(1)``); + If on input ``nr is None``, `nr` is equal to the number of Hankel + singular values greater than ``MAX(tol,n*eps*HNORM(A,B,C))``. + Ar : (nr, nr) ndarray + This array contains the state dynamics matrix `Ar` of the reduced + order system. + Br : (nr, m) ndarray + Tthis array contains the input/state matrix `Br` of the reduced + order system. + Cr : (p, nr) ndarray + This array contains the state/output matrix `Cr` of the reduced + order system. + Dr : (p, m) ndarray + This array contains the state/output matrix `Dr` of the reduced + order system. + hsv : (n, ) ndarray + If ``INFO = 0``, it contains the Hankel singular values of + the original system ordered decreasingly. ``HSV(1)`` is the + Hankel norm of the system. + T : (n, nr) ndarray + This array contains the right truncation matrix `T` of the reduced + order system. + Ti : (nr, n) ndarray + This array contains the left truncation matrix `Ti` of the reduced + order system. + + Raises + ------ + SlycotArithmeticError + :info == 1 and dico == 'C': + The state matrix A is not stable + :info == 1 and dico == 'D': + The state matrix A is not convergent + :info == 2: + The computation of Hankel singular values failed + + Warns + ----- + SlycotResultWarning + :iwarn == 1: + The selected order {nr} is greater + than the order of a minimal realization of the + given system. `nr` was set automatically to {Nr} + corresponding to the order of a minimal realization + of the system + """ + hidden = ' (hidden by the wrapper)' + arg_list = ['dico', 'job', 'ordsel', 'n', 'm', 'p', 'nr', + 'A', 'lda' + hidden, 'B', 'ldb' + hidden, 'C', 'ldc' + hidden, + 'hsv', 'T', 'ldt' + hidden, 'Ti', 'ldti' + hidden, 'tol', + 'iwork' + hidden, 'dwork' + hidden, 'ldwork', 'iwarn', 'info'] + if ldwork is None: + ldwork = max(1, n*(2*n + max(n, max(m, p))+5)+n*(n+1)/2) + if nr is None: + ordsel = 'A' + nr = 0 # order will be computed by the routine + else: + ordsel = 'F' + out = _wrapper.ab09bx(dico, job, ordsel, n, m, p, nr, A, B, C, D, tol1, tol2, ldwork) + Nr, A, B, C, D, hsv, T, Ti = out[:-2] # + raise_if_slycot_error(out[-2:], arg_list, ab09bx.__doc__, locals()) + return Nr, A[:Nr, :Nr], B[:Nr, :], C[:, :Nr], D, hsv, T[:, :Nr], Ti[:Nr, :] + + +# TODO wrap ab09hx, the interface is similar to ab09bx + def ab09bd(dico,job,equil,n,m,p,A,B,C,D,nr=None,tol1=0,tol2=0,ldwork=None): """ nr,Ar,Br,Cr,Dr,hsv = ab09bd(dico,job,equil,n,m,p,A,B,C,D,[nr,tol1,tol2,ldwork]) @@ -1396,11 +1538,415 @@ def ab09nd(dico,job,equil,n,m,p,A,B,C,D,alpha=None,nr=None,tol1=0,tol2=0,ldwork= alpha = {'C': 0, 'D': 1.}[dico] out = _wrapper.ab09nd(dico, job, equil, ordsel, n, m, p, nr, alpha, A, B, C, D, tol1, tol2, ldwork) + #out = _wrapper.ab09nd_alt(dico, job, equil, ordsel, nr, alpha, A, B, C, D, tol1, tol2, ldwork) Nr, A, B, C, D, Ns, hsv = out[:-2] raise_if_slycot_error(out[-2:], arg_list, ab09nd.__doc__, locals()) return Nr, A[:Nr, :Nr], B[:Nr, :], C[:, :Nr], D, Ns, hsv +def ab09hd(dico,job,equil,n,m,p,A,B,C,D,alpha=None,beta=0,nr=None,tol1=0,tol2=0,ldwork=None): + """ nr,Ar,Br,Cr,Dr,ns,hsv = ab09hd(dico,job,equil,n,m,p,A,B,C,D,[alpha,nr,tol1,tol2,ldwork]) + + Purpose + + To compute a reduced order model (Ar,Br,Cr,Dr) for an original + state-space representation (A,B,C,D) by using the stochastic + balancing approach in conjunction with the square-root or + the balancing-free square-root Balance & Truncate (B&T) + or Singular Perturbation Approximation (SPA) model reduction + methods for the ALPHA-stable part of the system. + + Arguments + + Mode Parameters + + DICO CHARACTER*1 + Specifies the type of the original system as follows: + = 'C': continuous-time system; + = 'D': discrete-time system. + + JOB CHARACTER*1 + Specifies the model reduction approach to be used + as follows: + = 'B': use the square-root Balance & Truncate method; + = 'F': use the balancing-free square-root + Balance & Truncate method; + = 'S': use the square-root Singular Perturbation + Approximation method; + = 'P': use the balancing-free square-root + Singular Perturbation Approximation method. + + EQUIL CHARACTER*1 + Specifies whether the user wishes to preliminarily + equilibrate the triplet (A,B,C) as follows: + = 'S': perform equilibration (scaling); + = 'N': do not perform equilibration. + + ORDSEL CHARACTER*1 + Specifies the order selection method as follows: + = 'F': the resulting order NR is fixed; + = 'A': the resulting order NR is automatically determined + on basis of the given tolerance TOL1. + + Input/Output Parameters + + N (input) INTEGER + The order of the original state-space representation, + i.e., the order of the matrix A. N >= 0. + + M (input) INTEGER + The number of system inputs. M >= 0. + + P (input) INTEGER + The number of system outputs. P >= 0. + P <= M if BETA = 0. + + NR (input/output) INTEGER + On entry with ORDSEL = 'F', NR is the desired order of the + resulting reduced order system. 0 <= NR <= N. + On exit, if INFO = 0, NR is the order of the resulting + reduced order model. For a system with NU ALPHA-unstable + eigenvalues and NS ALPHA-stable eigenvalues (NU+NS = N), + NR is set as follows: if ORDSEL = 'F', NR is equal to + NU+MIN(MAX(0,NR-NU),NMIN), where NR is the desired order + on entry, and NMIN is the order of a minimal realization + of the ALPHA-stable part of the given system; NMIN is + determined as the number of Hankel singular values greater + than NS*EPS, where EPS is the machine precision + (see LAPACK Library Routine DLAMCH); + if ORDSEL = 'A', NR is the sum of NU and the number of + Hankel singular values greater than MAX(TOL1,NS*EPS); + NR can be further reduced to ensure that + HSV(NR-NU) > HSV(NR+1-NU). + + ALPHA (input) DOUBLE PRECISION + Specifies the ALPHA-stability boundary for the eigenvalues + of the state dynamics matrix A. For a continuous-time + system (DICO = 'C'), ALPHA <= 0 is the boundary value for + the real parts of eigenvalues, while for a discrete-time + system (DICO = 'D'), 0 <= ALPHA <= 1 represents the + boundary value for the moduli of eigenvalues. + The ALPHA-stability domain does not include the boundary. + + BETA (input) DOUBLE PRECISION + BETA > 0 specifies the absolute/relative error weighting + parameter. A large positive value of BETA favours the + minimization of the absolute approximation error, while a + small value of BETA is appropriate for the minimization + of the relative error. + BETA = 0 means a pure relative error method and can be + used only if rank(D) = P. + + A (input/output) DOUBLE PRECISION array, dimension (LDA,N) + On entry, the leading N-by-N part of this array must + contain the state dynamics matrix A. + On exit, if INFO = 0, the leading NR-by-NR part of this + array contains the state dynamics matrix Ar of the reduced + order system. + The resulting A has a block-diagonal form with two blocks. + For a system with NU ALPHA-unstable eigenvalues and + NS ALPHA-stable eigenvalues (NU+NS = N), the leading + NU-by-NU block contains the unreduced part of A + corresponding to ALPHA-unstable eigenvalues in an + upper real Schur form. + The trailing (NR+NS-N)-by-(NR+NS-N) block contains + the reduced part of A corresponding to ALPHA-stable + eigenvalues. + + LDA INTEGER + The leading dimension of array A. LDA >= MAX(1,N). + + B (input/output) DOUBLE PRECISION array, dimension (LDB,M) + On entry, the leading N-by-M part of this array must + contain the original input/state matrix B. + On exit, if INFO = 0, the leading NR-by-M part of this + array contains the input/state matrix Br of the reduced + order system. + + LDB INTEGER + The leading dimension of array B. LDB >= MAX(1,N). + + C (input/output) DOUBLE PRECISION array, dimension (LDC,N) + On entry, the leading P-by-N part of this array must + contain the original state/output matrix C. + On exit, if INFO = 0, the leading P-by-NR part of this + array contains the state/output matrix Cr of the reduced + order system. + + LDC INTEGER + The leading dimension of array C. LDC >= MAX(1,P). + + D (input/output) DOUBLE PRECISION array, dimension (LDD,M) + On entry, the leading P-by-M part of this array must + contain the original input/output matrix D. + On exit, if INFO = 0, the leading P-by-M part of this + array contains the input/output matrix Dr of the reduced + order system. + + LDD INTEGER + The leading dimension of array D. LDD >= MAX(1,P). + + NS (output) INTEGER + The dimension of the ALPHA-stable subsystem. + + HSV (output) DOUBLE PRECISION array, dimension (N) + If INFO = 0, the leading NS elements of HSV contain the + Hankel singular values of the phase system corresponding + to the ALPHA-stable part of the original system. + The Hankel singular values are ordered decreasingly. + + Tolerances + + TOL1 DOUBLE PRECISION + If ORDSEL = 'A', TOL1 contains the tolerance for + determining the order of reduced system. + For model reduction, the recommended value of TOL1 lies + in the interval [0.00001,0.001]. + If TOL1 <= 0 on entry, the used default value is + TOL1 = NS*EPS, where NS is the number of + ALPHA-stable eigenvalues of A and EPS is the machine + precision (see LAPACK Library Routine DLAMCH). + If ORDSEL = 'F', the value of TOL1 is ignored. + TOL1 < 1. + + TOL2 DOUBLE PRECISION + The tolerance for determining the order of a minimal + realization of the phase system (see METHOD) corresponding + to the ALPHA-stable part of the given system. + The recommended value is TOL2 = NS*EPS. + This value is used by default if TOL2 <= 0 on entry. + If TOL2 > 0 and ORDSEL = 'A', then TOL2 <= TOL1. + TOL2 < 1. + + Workspace + + IWORK INTEGER array, dimension (MAX(1,2*N)) + On exit with INFO = 0, IWORK(1) contains the order of the + minimal realization of the system. + + DWORK DOUBLE PRECISION array, dimension (LDWORK) + On exit, if INFO = 0, DWORK(1) returns the optimal value + of LDWORK and DWORK(2) contains RCOND, the reciprocal + condition number of the U11 matrix from the expression + used to compute the solution X = U21*inv(U11) of the + Riccati equation for spectral factorization. + A small value RCOND indicates possible ill-conditioning + of the respective Riccati equation. + + LDWORK INTEGER + The length of the array DWORK. + LDWORK >= 2*N*N + MB*(N+P) + MAX( 2, N*(MAX(N,MB,P)+5), + 2*N*P+MAX(P*(MB+2),10*N*(N+1) ) ), + where MB = M if BETA = 0 and MB = M+P if BETA > 0. + For optimum performance LDWORK should be larger. + + BWORK LOGICAL array, dimension 2*N + + Raises + ------ + SlycotArithmeticError + :info == 1: + The computation of the ordered real Schur form of A failed + :info == 2: + The separation of the {alpha}-stable/unstable diagonal + blocks failed because of very close eigenvalues + :info == 3: + The computation of Hankel singular values failed + :info == 1: + the computation of the ordered real Schur form of A + failed; + :info == 2: + the reduction of the Hamiltonian matrix to real + Schur form failed; + :info == 3: + the reordering of the real Schur form of the + Hamiltonian matrix failed; + :info == 4: + the Hamiltonian matrix has less than N stable + eigenvalues; + :info == 5: + the coefficient matrix U11 in the linear system + X*U11 = U21 to determine X is singular to working + precision; + :info == 6: + BETA = 0 and D has not a maximal row rank; + :info == 7: + the computation of Hankel singular values failed; + :info == 8: + the separation of the ALPHA-stable/unstable diagonal + blocks failed because of very close eigenvalues; + :info == 9: + the resulting order of reduced stable part is less + than the number of unstable zeros of the stable + part. + + Warns + ----- + SlycotResultWarning + :iwarn == 1: + with ORDSEL = 'F', the selected order NR is greater + than NSMIN, the sum of the order of the + ALPHA-unstable part and the order of a minimal + realization of the ALPHA-stable part of the given + system; in this case, the resulting NR is set equal + to NSMIN; + :iwarn == 2: + with ORDSEL = 'F', the selected order NR corresponds + to repeated singular values for the ALPHA-stable + part, which are neither all included nor all + excluded from the reduced model; in this case, the + resulting NR is automatically decreased to exclude + all repeated singular values; + :iwarn == 3: + with ORDSEL = 'F', the selected order NR is less + than the order of the ALPHA-unstable part of the + given system; in this case NR is set equal to the + order of the ALPHA-unstable part. + + + Method + + Let be the following linear system + + d[x(t)] = Ax(t) + Bu(t) + y(t) = Cx(t) + Du(t), (1) + + where d[x(t)] is dx(t)/dt for a continuous-time system and x(t+1) + for a discrete-time system. The subroutine AB09HD determines for + the given system (1), the matrices of a reduced order system + + d[z(t)] = Ar*z(t) + Br*u(t) + yr(t) = Cr*z(t) + Dr*u(t), (2) + + such that + + INFNORM[inv(conj(W))*(G-Gr)] <= + (1+HSV(NR+NS-N+1)) / (1-HSV(NR+NS-N+1)) + ... + + (1+HSV(NS)) / (1-HSV(NS)) - 1, + + where G and Gr are transfer-function matrices of the systems + (A,B,C,D) and (Ar,Br,Cr,Dr), respectively, W is the right, minimum + phase spectral factor satisfying + + G1*conj(G1) = conj(W)* W, (3) + + G1 is the NS-order ALPHA-stable part of G, and INFNORM(G) is the + infinity-norm of G. HSV(1), ... , HSV(NS) are the Hankel-singular + values of the stable part of the phase system (Ap,Bp,Cp) + with the transfer-function matrix + + P = inv(conj(W))*G1. + + If BETA > 0, then the model reduction is performed on [G BETA*I] + instead of G. This is the recommended approach to be used when D + has not a maximal row rank or when a certain balance between + relative and absolute approximation errors is desired. For + increasingly large values of BETA, the obtained reduced system + assymptotically approaches that computed by using the + Balance & Truncate or Singular Perturbation Approximation methods. + + Note: conj(G) denotes either G'(-s) for a continuous-time system + or G'(1/z) for a discrete-time system. + inv(G) is the inverse of G. + + The following procedure is used to reduce a given G: + + 1) Decompose additively G as + + G = G1 + G2, + + such that G1 = (As,Bs,Cs,D) has only ALPHA-stable poles and + G2 = (Au,Bu,Cu) has only ALPHA-unstable poles. + + 2) Determine G1r, a reduced order approximation of the + ALPHA-stable part G1 using the balancing stochastic method + in conjunction with either the B&T [1,2] or SPA methods [3]. + + 3) Assemble the reduced model Gr as + + Gr = G1r + G2. + + Note: The employed stochastic truncation algorithm [2,3] has the + property that right half plane zeros of G1 remain as right half + plane zeros of G1r. Thus, the order can not be chosen smaller than + the sum of the number of unstable poles of G and the number of + unstable zeros of G1. + + The reduction of the ALPHA-stable part G1 is done as follows. + + If JOB = 'B', the square-root stochastic Balance & Truncate + method of [1] is used. + For an ALPHA-stable continuous-time system (DICO = 'C'), + the resulting reduced model is stochastically balanced. + + If JOB = 'F', the balancing-free square-root version of the + stochastic Balance & Truncate method [1] is used to reduce + the ALPHA-stable part G1. + + If JOB = 'S', the stochastic balancing method is used to reduce + the ALPHA-stable part G1, in conjunction with the square-root + version of the Singular Perturbation Approximation method [3,4]. + + If JOB = 'P', the stochastic balancing method is used to reduce + the ALPHA-stable part G1, in conjunction with the balancing-free + square-root version of the Singular Perturbation Approximation + method [3,4]. + + References + + [1] Varga A. and Fasol K.H. + A new square-root balancing-free stochastic truncation model + reduction algorithm. + Proc. 12th IFAC World Congress, Sydney, 1993. + + [2] Safonov M. G. and Chiang R. Y. + Model reduction for robust control: a Schur relative error + method. + Int. J. Adapt. Contr. Sign. Proc., vol. 2, pp. 259-272, 1988. + + [3] Green M. and Anderson B. D. O. + Generalized balanced stochastic truncation. + Proc. 29-th CDC, Honolulu, Hawaii, pp. 476-481, 1990. + + [4] Varga A. + Balancing-free square-root algorithm for computing + singular perturbation approximations. + Proc. 30-th IEEE CDC, Brighton, Dec. 11-13, 1991, + Vol. 2, pp. 1062-1065. + + Numerical Aspects + + The implemented methods rely on accuracy enhancing square-root or + balancing-free square-root techniques. The effectiveness of the + accuracy enhancing technique depends on the accuracy of the + solution of a Riccati equation. An ill-conditioned Riccati + solution typically results when [D BETA*I] is nearly + rank deficient. + The algorithm requires about 100N^3 floating point operations. + + """ + hidden = ' (hidden by the wrapper)' + arg_list = ['dico', 'job', 'equil', 'ordsel', 'n', 'm', 'p', 'nr', 'alpha', + 'beta', + 'A', 'lda' + hidden, 'B', 'ldb' + hidden, 'C', 'ldc' + hidden, + 'D', 'ldc' + hidden, 'ns', 'hsv', 'tol1', 'tol2', + 'iwork' + hidden, 'dwork' + hidden, 'ldwork', 'iwarn', 'info'] + if nr is None: + ordsel = 'A' + nr = 0 # order will be computed by the routine + else: + ordsel = 'F' + if alpha is None: + alpha = {'C': 0, 'D': 1.}[dico] + out = _wrapper.ab09hd( + dico, job, equil, ordsel, + n, m, p, nr, alpha, beta, A, B, C, D, tol1, tol2, + ) + Nr, A, B, C, D, Ns, hsv = out[:-2] + raise_if_slycot_error(out[-2:], arg_list, ab09hd.__doc__, locals()) + return Nr, A[:Nr, :Nr], B[:Nr, :], C[:, :Nr], D, Ns, hsv + + def ab13bd(dico, jobn, n, m, p, A, B, C, D, tol = 0.0): """norm = ab13bd(dico, jobn, n, m, p, A, B, C, D, [tol]) diff --git a/slycot/cmake_install.cmake b/slycot/cmake_install.cmake new file mode 100644 index 00000000..37c27bc2 --- /dev/null +++ b/slycot/cmake_install.cmake @@ -0,0 +1,66 @@ +# Install script for directory: /home/mcculler/local/projects_sync/Slycot/slycot + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/home/mcculler/local/projects_sync/Slycot/_skbuild/linux-x86_64-3.12/cmake-install") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/slycot/_wrapper.cpython-312-x86_64-linux-gnu.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/slycot/_wrapper.cpython-312-x86_64-linux-gnu.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/slycot/_wrapper.cpython-312-x86_64-linux-gnu.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/slycot" TYPE MODULE FILES "/home/mcculler/local/projects_sync/Slycot/slycot/_wrapper.cpython-312-x86_64-linux-gnu.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/slycot/_wrapper.cpython-312-x86_64-linux-gnu.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/slycot/_wrapper.cpython-312-x86_64-linux-gnu.so") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/slycot/_wrapper.cpython-312-x86_64-linux-gnu.so") + endif() + endif() +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/mcculler/local/projects_sync/Slycot/slycot/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/slycot/src/SLICOT-Reference b/slycot/src/SLICOT-Reference index 795051cb..6efec232 160000 --- a/slycot/src/SLICOT-Reference +++ b/slycot/src/SLICOT-Reference @@ -1 +1 @@ -Subproject commit 795051cbc2a1d4766753e9ab3bac13eaf731f8d6 +Subproject commit 6efec2324030c18244520975b6fda8ab9e2390fe diff --git a/slycot/src/_wrapper.pyf b/slycot/src/_wrapper.pyf index 5a4c6784..3a121364 100644 --- a/slycot/src/_wrapper.pyf +++ b/slycot/src/_wrapper.pyf @@ -2,11 +2,17 @@ ! Note: the context of this file is case sensitive. python module _wrapper ! in + +usercode ''' +#define F_INT int +''' + interface ! in :wrapper + include "lapack_bal.pyf" include "analysis.pyf" include "math.pyf" include "synthesis.pyf" include "transform.pyf" include "_helper.pyf" end interface -end python module slycot +end python module _wrapper diff --git a/slycot/src/_wrapper.pyf.src b/slycot/src/_wrapper.pyf.src new file mode 100644 index 00000000..04830507 --- /dev/null +++ b/slycot/src/_wrapper.pyf.src @@ -0,0 +1,44 @@ +! -*- f90 -*- +! Signatures for f2py wrappers of FORTRAN LAPACK functions. +! +! Author: Pearu Peterson +! Created: Jan-Feb 2002 +! $Revision$ $Date$ +! +! Additions by Lee McCuller, based on the scipy sources by Travis Oliphant, +! Tiziano Zito, Collin RM Stocks, Fabian Pedregosa +! Skipper Seabold, Ilhan Polat +! +! Shorthand Notations: +! -------------------- +! +! +! +! +! +! +! +! +! +! +! +! +! +! + +python module _wrapper + usercode ''' +#define F_INT int +''' + +interface ! in :wrapper + include "lapack_bal.pyf.src" + include "analysis.pyf" + include "math.pyf" + include "synthesis.pyf" + include "transform.pyf" + include "_helper.pyf" +end interface + +end python module _wrapper + diff --git a/slycot/src/analysis.pyf b/slycot/src/analysis.pyf index 1789d893..f29af914 100644 --- a/slycot/src/analysis.pyf +++ b/slycot/src/analysis.pyf @@ -16,7 +16,7 @@ subroutine ab01nd(jobz,n,m,a,lda,b,ldb,ncont,indcon,nblk,z,ldz,tau,tol,iwork,dwo double precision :: tol = 0 integer intent(hide,cache),dimension(m),depend(m) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer :: ldwork = max(n,3*m) + integer :: ldwork = MAX(n,3*m) integer intent(out) :: info end subroutine ab01nd subroutine ab04md(type_t,n,m,p,alpha,beta,a,lda,b,ldb,c,ldc,d,ldd,iwork,dwork,ldwork,info) ! in AB04MD.f @@ -36,7 +36,7 @@ subroutine ab04md(type_t,n,m,p,alpha,beta,a,lda,b,ldb,c,ldc,d,ldd,iwork,dwork,ld integer intent(hide),depend(d) :: ldd = shape(d,0) integer intent(hide,cache),dimension(n),depend(n) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer :: ldwork = max(1,n) + integer :: ldwork = MAX(1,n) integer intent(out) :: info end subroutine ab04md subroutine ab05md(uplo,over,n1,m1,p1,n2,p2,a1,lda1,b1,ldb1,c1,ldc1,d1,ldd1,a2,lda2,b2,ldb2,c2,ldc2,d2,ldd2,n,a,lda,b,ldb,c,ldc,d,ldd,dwork,ldwork,info) ! in AB05MD.f @@ -110,7 +110,7 @@ subroutine ab05nd(over,n1,m1,p1,n2,alpha,a1,lda1,b1,ldb1,c1,ldc1,d1,ldd1,a2,lda2 integer intent(hide),depend(d) :: ldd=shape(d,0) integer intent(hide,cache),dimension(p1),depend(p1) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer :: ldwork = max(p1*p1,max(m1*m1,n1*p1)) + integer :: ldwork = MAX(p1*p1,MAX(m1*m1,n1*p1)) integer intent(out) :: info end subroutine ab05nd subroutine ab07nd(n,m,a,lda,b,ldb,c,ldc,d,ldd,rcond,iwork,dwork,ldwork,info) ! in AB07ND.f @@ -136,29 +136,29 @@ subroutine ab08nd(equil,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nu,rank_bn,dinfz,nkror,nkr integer intent(in),check(m>=0),required :: m integer intent(in),check(p>=0),required :: p double precision intent(in),dimension(lda,*),check(shape(a,1)>=n) :: a - integer intent(hide),check(lda>=max(1,n)),depend(n,a) :: lda=shape(a,0) + integer intent(hide),check(lda>=MAX(1,n)),depend(n,a) :: lda=shape(a,0) double precision intent(in),dimension(ldb,*),check(shape(b,1)>=m) :: b - integer intent(hide),check(ldb>=max(1,n)),depend(n,b) :: ldb=shape(b,0) + integer intent(hide),check(ldb>=MAX(1,n)),depend(n,b) :: ldb=shape(b,0) double precision intent(in),dimension(ldc,*),check(shape(c,1)>=n) :: c - integer intent(hide),check(ldc>=max(1,p)),depend(p,c) :: ldc=shape(c,0) + integer intent(hide),check(ldc>=MAX(1,p)),depend(p,c) :: ldc=shape(c,0) double precision intent(in),dimension(ldd,*),check(shape(d,1)>=m) :: d - integer intent(hide),check(ldd>=max(1,p)),depend(p,d) :: ldd=shape(d,0) + integer intent(hide),check(ldd>=MAX(1,p)),depend(p,d) :: ldd=shape(d,0) integer intent(out) :: nu integer intent(out) :: rank_bn integer intent(out) :: dinfz integer intent(out) :: nkror integer intent(out) :: nkrol integer intent(out),dimension(n),depend(n) :: infz - integer intent(out),dimension(max(n,m)+1),depend([n,m]) :: kronr - integer intent(out),dimension(max(n,p)+1),depend([n,p]) :: kronl - double precision intent(out),dimension(max(1,n+m),n+min(p,m)) :: af + integer intent(out),dimension(MAX(n,m)+1),depend([n,m]) :: kronr + integer intent(out),dimension(MAX(n,p)+1),depend([n,p]) :: kronl + double precision intent(out),dimension(MAX(1,n+m),n+min(p,m)) :: af integer intent(hide),depend(af) :: ldaf=shape(af,0) - double precision intent(out),dimension(max(1,n+p),n+m) :: bf + double precision intent(out),dimension(MAX(1,n+p),n+m) :: bf integer intent(hide),depend(bf) :: ldbf=shape(bf,0) double precision :: tol=0.0 - integer intent(hide,cache),dimension(max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = n + 3*max(m,p) + integer intent(hide,cache),dimension(MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = n + 3*MAX(m,p) integer intent(out) :: info end subroutine ab08nd subroutine ab08nz(equil,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nu,rank_bn,dinfz,nkror,nkrol,infz,kronr,kronl,af,ldaf,bf,ldbf,tol,iwork,dwork,zwork,lzwork,info) ! in AB08NZ.f @@ -167,30 +167,30 @@ subroutine ab08nz(equil,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nu,rank_bn,dinfz,nkror,nkr integer intent(in),check(m>=0),required :: m integer intent(in),check(p>=0),required :: p complex*16 intent(in),dimension(lda,*),check(shape(a,1)>=n) :: a - integer intent(hide),check(lda>=max(1,n)),depend(n,a) :: lda=shape(a,0) + integer intent(hide),check(lda>=MAX(1,n)),depend(n,a) :: lda=shape(a,0) complex*16 intent(in),dimension(ldb,*),check(shape(b,1)>=m) :: b - integer intent(hide),check(ldb>=max(1,n)),depend(n,b) :: ldb=shape(b,0) + integer intent(hide),check(ldb>=MAX(1,n)),depend(n,b) :: ldb=shape(b,0) complex*16 intent(in),dimension(ldc,*),check(shape(c,1)>=n) :: c - integer intent(hide),check(ldc>=max(1,p)),depend(p,c) :: ldc=shape(c,0) + integer intent(hide),check(ldc>=MAX(1,p)),depend(p,c) :: ldc=shape(c,0) complex*16 intent(in),dimension(ldd,*),check(shape(d,1)>=m) :: d - integer intent(hide),check(ldd>=max(1,p)),depend(p,d) :: ldd=shape(d,0) + integer intent(hide),check(ldd>=MAX(1,p)),depend(p,d) :: ldd=shape(d,0) integer intent(out) :: nu integer intent(out) :: rank_bn integer intent(out) :: dinfz integer intent(out) :: nkror integer intent(out) :: nkrol integer intent(out),dimension(n) :: infz - integer intent(out),dimension(max(n,m)+1) :: kronr - integer intent(out),dimension(max(n,p)+1) :: kronl - complex*16 intent(out),dimension(max(1,n+m),n+min(p,m)) :: af - integer intent(hide),check(ldaf>=max(1,n+m)),depend(n,p,af) :: ldaf=shape(af,0) - complex*16 intent(out),dimension(max(1,n+p),n+m) :: bf - integer intent(hide),check(ldbf>=max(1,n+p)),depend(n,p,bf) :: ldbf=shape(bf,0) + integer intent(out),dimension(MAX(n,m)+1) :: kronr + integer intent(out),dimension(MAX(n,p)+1) :: kronl + complex*16 intent(out),dimension(MAX(1,n+m),n+min(p,m)) :: af + integer intent(hide),check(ldaf>=MAX(1,n+m)),depend(n,p,af) :: ldaf=shape(af,0) + complex*16 intent(out),dimension(MAX(1,n+p),n+m) :: bf + integer intent(hide),check(ldbf>=MAX(1,n+p)),depend(n,p,bf) :: ldbf=shape(bf,0) double precision intent(in) :: tol = 0.0 - integer intent(hide),cache,dimension(max(m,p)) :: iwork - double precision intent(hide),cache,dimension(max(n,2*max(p,m))) :: dwork + integer intent(hide),cache,dimension(MAX(m,p)) :: iwork + double precision intent(hide),cache,dimension(MAX(n,2*MAX(p,m))) :: dwork complex*16 intent(out),cache,dimension(lzwork) :: zwork - integer intent(in),check(lzwork>=max(min(p,m) + max(3*m-1,n), max(min(p,n) + max(3*p-1,max(n+p,n+m)), min(m,n) + max(3*m-1,n+m)))) :: lzwork = max(min(p,m) + max(3*m-1,n), max(min(p,n) + max(3*p-1,max(n+p,n+m)), min(m,n) + max(3*m-1,n+m))) + integer intent(in),check(lzwork>=MAX(min(p,m) + MAX(3*m-1,n), MAX(min(p,n) + MAX(3*p-1,MAX(n+p,n+m)), min(m,n) + MAX(3*m-1,n+m)))) :: lzwork = MAX(min(p,m) + MAX(3*m-1,n), MAX(min(p,n) + MAX(3*p-1,MAX(n+p,n+m)), min(m,n) + MAX(3*m-1,n+m))) integer intent(out) :: info end subroutine ab08nz subroutine ab09ad(dico,job,equil,ordsel,n,m,p,nr,a,lda,b,ldb,c,ldc,hsv,tol,iwork,dwork,ldwork,iwarn,info) !in :balred:AB09AD.f @@ -210,9 +210,9 @@ subroutine ab09ad(dico,job,equil,ordsel,n,m,p,nr,a,lda,b,ldb,c,ldc,hsv,tol,iwork integer intent(hide),depend(c) :: ldc=shape(c,0) double precision intent(out),dimension(n),depend(n) :: hsv double precision :: tol =0.0 - integer intent(hide,cache),dimension(max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,n*(2*n+max(n,max(m,p))+5)+n*(n+1)/2) + integer intent(hide,cache),dimension(MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(2*n+MAX(n,MAX(m,p))+5)+n*(n+1)/2) integer intent(out) :: iwarn integer intent(out) :: info end subroutine ab09ad @@ -236,12 +236,80 @@ subroutine ab09ax(dico,job,ordsel,n,m,p,nr,a,lda,b,ldb,c,ldc,hsv,t,ldt,ti,ldti,t double precision intent(out),dimension(n,n) :: ti integer intent(hide),depend(ti) :: ldti=shape(ti,0) double precision :: tol =0.0 - integer intent(hide,cache),dimension(max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,n*(max(n,max(m,p))+5)+n*(n+1)/2) + integer intent(hide,cache),dimension(MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(MAX(n,MAX(m,p))+5)+n*(n+1)/2) integer intent(out) :: iwarn integer intent(out) :: info end subroutine ab09ax +! SUBROUTINE AB09AX( DICO, JOB, ORDSEL, N, M, P, NR, A, LDA, B, LDB, +! $ C, LDC, HSV, T, LDT, TI, LDTI, TOL, IWORK, +! $ DWORK, LDWORK, IWARN, INFO ) +! SUBROUTINE AB09BX( DICO, JOB, ORDSEL, N, M, P, NR, A, LDA, B, LDB, +! $ C, LDC, D, LDD, HSV, T, LDT, TI, LDTI, TOL1, +! $ TOL2, IWORK, DWORK, LDWORK, IWARN, INFO ) +! SUBROUTINE AB09HX( DICO, JOB, ORDSEL, N, M, P, NR, A, LDA, B, LDB, +! $ C, LDC, D, LDD, HSV, T, LDT, TI, LDTI, TOL1, +! $ TOL2, IWORK, DWORK, LDWORK, BWORK, IWARN, +! $ INFO ) +subroutine ab09bx(dico,job,ordsel,n,m,p,nr,a,lda,b,ldb,c,ldc,d,ldd,hsv,t,ldt,ti,ldti,tol1,tol2,iwork,dwork,ldwork,iwarn,info) !in AB09BX.f + character intent(in) :: dico + character intent(in) :: job + character intent(in) :: ordsel + integer check(n>=0) :: n + integer check(m>=0) :: m + integer check(p>=0) :: p + integer intent(in,out) :: nr + double precision intent(in,out,copy),dimension(n,n),depend(n) :: a + integer intent(hide),depend(a) :: lda=shape(a,0) + double precision intent(in,out,copy),dimension(n,m),depend(n,m) :: b + integer intent(hide),depend(b) :: ldb=shape(b,0) + double precision intent(in,out,copy),dimension(p,n),depend(p,n) :: c + integer intent(hide),depend(c) :: ldc=shape(c,0) + double precision intent(in,out,copy),dimension(p,m),depend(m,p) :: d + integer intent(hide),depend(d) :: ldd=shape(d,0) + double precision intent(out),dimension(n),depend(n) :: hsv + double precision intent(out),dimension(n,n) :: t + integer intent(hide),depend(t) :: ldt=shape(t,0) + double precision intent(out),dimension(n,n) :: ti + integer intent(hide),depend(ti) :: ldti=shape(ti,0) + double precision :: tol1 =0.0 + double precision :: tol2 =0.0 + integer intent(hide,cache),dimension(n) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(MAX(n,MAX(m,p))+5)+n*(n+1)/2) + integer intent(out) :: iwarn + integer intent(out) :: info +end subroutine ab09bx +subroutine ab09hx(dico,job,ordsel,n,m,p,nr,a,lda,b,ldb,c,ldc,d,ldd,hsv,t,ldt,ti,ldti,tol1,tol2,iwork,dwork,ldwork,iwarn,info) !in AB09hX.f + character intent(in) :: dico + character intent(in) :: job + character intent(in) :: ordsel + integer check(n>=0) :: n + integer check(m>=0) :: m + integer check(p>=0) :: p + integer intent(in,out) :: nr + double precision intent(in,out,copy),dimension(n,n),depend(n) :: a + integer intent(hide),depend(a) :: lda=shape(a,0) + double precision intent(in,out,copy),dimension(n,m),depend(n,m) :: b + integer intent(hide),depend(b) :: ldb=shape(b,0) + double precision intent(in,out,copy),dimension(p,n),depend(p,n) :: c + integer intent(hide),depend(c) :: ldc=shape(c,0) + double precision intent(in,out,copy),dimension(p,m),depend(m,p) :: d + integer intent(hide),depend(d) :: ldd=shape(d,0) + double precision intent(out),dimension(n),depend(n) :: hsv + double precision intent(out),dimension(n,n) :: t + integer intent(hide),depend(t) :: ldt=shape(t,0) + double precision intent(out),dimension(n,n) :: ti + integer intent(hide),depend(ti) :: ldti=shape(ti,0) + double precision :: tol1 =0.0 + double precision :: tol2 =0.0 + integer intent(hide,cache),dimension(max(1,2*n)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(2,MAX(n*(MAX(n,MAX(m,p))+5), 2*n*p+MAX(p*(m+2),10*n*(n+1)))) + integer intent(out) :: iwarn + integer intent(out) :: info +end subroutine ab09hx subroutine ab09bd(dico,job,equil,ordsel,n,m,p,nr,a,lda,b,ldb,c,ldc,d,ldd,hsv,tol1,tol2,iwork,dwork,ldwork,iwarn,info) !in :balred:AB09BD.f character intent(in) :: dico character intent(in) :: job @@ -262,9 +330,9 @@ subroutine ab09bd(dico,job,equil,ordsel,n,m,p,nr,a,lda,b,ldb,c,ldc,d,ldd,hsv,tol double precision intent(out),dimension(n),depend(n) :: hsv double precision :: tol1 =0.0 double precision :: tol2 =0.0 - integer intent(hide,cache),dimension(max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,n*(2*n+max(n,max(m,p))+5)+n*(n+1)/2) + integer intent(hide,cache),dimension(MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(2*n+MAX(n,MAX(m,p))+5)+n*(n+1)/2) integer intent(out) :: iwarn integer intent(out) :: info end subroutine ab09bd @@ -287,9 +355,9 @@ subroutine ab09md(dico,job,equil,ordsel,n,m,p,nr,alpha,a,lda,b,ldb,c,ldc,ns,hsv, integer intent(out) :: ns double precision intent(out),dimension(n),depend(n) :: hsv double precision :: tol =0.0 - integer intent(hide,cache),dimension(max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,n*(2*n+max(n,max(m,p))+5)+n*(n+1)/2) + integer intent(hide,cache),dimension(MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(2*n+MAX(n,MAX(m,p))+5)+n*(n+1)/2) integer intent(out) :: iwarn integer intent(out) :: info end subroutine ab09md @@ -315,12 +383,72 @@ subroutine ab09nd(dico,job,equil,ordsel,n,m,p,nr,alpha,a,lda,b,ldb,c,ldc,d,ldd,n double precision intent(out),dimension(n),depend(n) :: hsv double precision :: tol1 =0.0 double precision :: tol2 =0.0 - integer intent(hide,cache),dimension(max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,n*(2*n+max(n,max(m,p))+5)+n*(n+1)/2) + integer intent(hide,cache),dimension(MAX(1,2*n)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(2*n+MAX(n,MAX(m,p))+5)+n*(n+1)/2) + integer intent(out) :: iwarn + integer intent(out) :: info +end subroutine ab09nd +! alternate form trying to remove the need for the n,m,p arguments +subroutine ab09nd_alt(dico,job,equil,ordsel,n,m,p,nr,alpha,a,lda,b,ldb,c,ldc,d,ldd,ns,hsv,tol1,tol2,iwork,dwork,ldwork,iwarn,info) !in :balred:AB09ND.f +fortranname ab09nd + character intent(in) :: dico + character intent(in) :: job + character intent(in) :: equil + character intent(in) :: ordsel + integer intent(hide),depend(a),check(shape(a,0) == shape(a,1)) :: n=shape(a,0) + integer intent(hide),depend(b) :: m=shape(b,1) + integer intent(hide),depend(c) :: p=shape(c,0) + integer intent(in,out) :: nr + double precision intent(in):: alpha + double precision intent(in,out,copy), dimension(*,*) :: a + integer intent(hide),depend(a) :: lda=shape(a,0) + double precision intent(in,out,copy),check(n == shape(b,0)), dimension(*,*),depend(n) :: b + integer intent(hide),depend(b) :: ldb=shape(b,0) + double precision intent(in,out,copy),check(n == shape(c,1)), dimension(*,*),depend(n) :: c + integer intent(hide),depend(c) :: ldc=shape(c,0) + double precision intent(in,out,copy),check(p == shape(d,0)),check(m == shape(d,1)), dimension(*,*),depend(m,p) :: d + integer intent(hide),depend(d) :: ldd=shape(d,0) + integer intent(out) :: ns + double precision intent(out),dimension(n),depend(n) :: hsv + double precision :: tol1 =0.0 + double precision :: tol2 =0.0 + integer intent(hide,cache),dimension(MAX(1,2*n)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(2*n+MAX(n,MAX(m,p))+5)+n*(n+1)/2) integer intent(out) :: iwarn integer intent(out) :: info end subroutine ab09nd +subroutine ab09hd(dico,job,equil,ordsel,n,m,p,nr,alpha,beta,a,lda,b,ldb,c,ldc,d,ldd,ns,hsv,tol1,tol2,iwork,dwork,ldwork,bwork,iwarn,info) ! in SLICOT-Reference/src/AB09HD.f + character intent(in) :: dico + character intent(in) :: job + character intent(in) :: equil + character intent(in) :: ordsel + integer check(n>=0) :: n + integer check(m>=0) :: m + integer check(p>=0) :: p + integer intent(in,out) :: nr + double precision intent(in) :: alpha + double precision intent(in) :: beta + double precision intent(in,out,copy), dimension(n,n),depend(n) :: a + integer intent(hide),depend(a) :: lda = shape(a,0) + double precision intent(in,out,copy), dimension(n,m),depend(n,m) :: b + integer intent(hide),depend(b) :: ldb = shape(b,0) + double precision intent(in,out,copy), dimension(p,n),depend(n,p) :: c + integer intent(hide),depend(c) :: ldc = shape(c,0) + double precision intent(in,out,copy), dimension(p,m),depend(m,p) :: d + integer intent(hide),depend(d) :: ldd = shape(d,0) + integer intent(out) :: ns + double precision intent(out),dimension(n),depend(n) :: hsv + double precision intent(in) :: tol1=0.0 + double precision intent(in) :: tol2=0.0 + integer intent(hide,cache),dimension(MAX(1,2*n)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = 2*n*n + (m+p)*(n+p) + MAX( MAX(2, n*(MAX(n,MAX((m+p),p))+5)), 2*n*p+MAX(p*((m+p)+2),10*n*(n+1) ) ) + logical intent(hide,cache),dimension(2*n) :: bwork + integer intent(out) :: iwarn + integer intent(out) :: info +end subroutine ab09hd function ab13bd(dico,jobn,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nq,tol,dwork,ldwork,iwarn,info) ! in AB13BD.f character intent(in) :: dico character intent(in) :: jobn @@ -338,7 +466,7 @@ function ab13bd(dico,jobn,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nq,tol,dwork,ldwork,iwar integer intent(out) :: nq double precision :: tol double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer intent(hide),depend(n,m,p) :: ldwork = max(1,max(m*(n+m)+max(n*(n+5),max(m*(m+2),4*p)),n*(max(n,p)+4)+min(n,p))) + integer intent(hide),depend(n,m,p) :: ldwork = MAX(1,MAX(m*(n+m)+MAX(n*(n+5),MAX(m*(m+2),4*p)),n*(MAX(n,p)+4)+min(n,p))) integer intent(out) :: iwarn integer intent(out) :: info double precision intent(out) :: ab13bd @@ -366,9 +494,9 @@ subroutine ab13dd(dico,jobe,equil,jobd,n,m,p,fpeak,a,lda,e,lde,b,ldb,c,ldc,d,ldd double precision :: tol = 0.0 integer intent(hide,cache),dimension(n),depend(n) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer intent(hide),depend(n,m,p) :: ldwork = max(1,15*n*n+p*p+m*m+(6*n+3)*(p+m)+4*p*m+n*m+22*n+7*min(p,m)) + integer intent(hide),depend(n,m,p) :: ldwork = MAX(1,15*n*n+p*p+m*m+(6*n+3)*(p+m)+4*p*m+n*m+22*n+7*min(p,m)) complex*16 intent(hide,cache),dimension(lcwork),depend(lcwork) :: cwork - integer intent(hide),depend(n,m,p) :: lcwork = max(1,(n+m)*(n+p)+2*min(p,m)+max(p,m)) + integer intent(hide),depend(n,m,p) :: lcwork = MAX(1,(n+m)*(n+p)+2*min(p,m)+MAX(p,m)) integer intent(out) :: info end subroutine ab13dd subroutine ab13md(fact, n, z, ldz, m, nblock, itype, x, bound, d, g, iwork, dwork, ldwork, zwork, lzwork, info ) ! in AB13MD.f @@ -383,7 +511,7 @@ subroutine ab13md(fact, n, z, ldz, m, nblock, itype, x, bound, d, g, iwork, dwor double precision intent(out) :: bound double precision intent(out),dimension(n),depend(n) :: d double precision intent(out),dimension(n),depend(n) :: g - integer intent(hide,cache),dimension(max(4*m-2,n)),depend(m,n) :: iwork + integer intent(hide,cache),dimension(MAX(4*m-2,n)),depend(m,n) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork integer intent(hide,in) :: ldwork=2*n*n*m - n*n + 9*m*m + n*m + 11*n + 33*m - 11 complex*16 intent(hide,cache),dimension(lzwork) :: zwork @@ -398,7 +526,7 @@ subroutine ab13ed(n,a,lda,low,high,tol,dwork,ldwork,info) ! in AB13ED.f double precision intent(out) :: high double precision :: tol = 9 double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer intent(hide),depend(n) :: ldwork = max(1,3*n*(n+1)) + integer intent(hide),depend(n) :: ldwork = MAX(1,3*n*(n+1)) integer intent(out) :: info end subroutine ab13ed subroutine ab13fd(n,a,lda,beta,omega,tol,dwork,ldwork,cwork,lcwork,info) ! in AB13FD.f @@ -409,9 +537,9 @@ subroutine ab13fd(n,a,lda,beta,omega,tol,dwork,ldwork,cwork,lcwork,info) ! in AB double precision intent(out) :: omega double precision :: tol = 0 double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer intent(hide),depend(n) :: ldwork = max(1,3*n*(n+2)) + integer intent(hide),depend(n) :: ldwork = MAX(1,3*n*(n+2)) complex*16 intent(hide,cache),dimension(lcwork),depend(lcwork) :: cwork - integer intent(hide),depend(n) :: lcwork = max(1,n*(n+3)) + integer intent(hide),depend(n) :: lcwork = MAX(1,n*(n+3)) integer intent(out) :: info end subroutine ab13fd subroutine ag08bd(equil,l,n,m,p,a,lda,e,lde,b,ldb,c,ldc,d,ldd,nfz,nrank,niz,dinfz,nkror,ninfe,nkrol,infz,kronr,infe,kronl,tol,iwork,dwork,ldwork,info) ! in AG08BD.f diff --git a/slycot/src/dggbal.f b/slycot/src/dggbal.f new file mode 100755 index 00000000..0f318a08 --- /dev/null +++ b/slycot/src/dggbal.f @@ -0,0 +1,559 @@ +*> \brief \b DGGBAL +* +* =========== DOCUMENTATION =========== +* +* Online html documentation available at +* http://www.netlib.org/lapack/explore-html/ +* +*> \htmlonly +*> Download DGGBAL + dependencies +*> +*> [TGZ] +*> +*> [ZIP] +*> +*> [TXT] +*> \endhtmlonly +* +* Definition: +* =========== +* +* SUBROUTINE DGGBAL( JOB, N, A, LDA, B, LDB, ILO, IHI, LSCALE, +* RSCALE, WORK, INFO ) +* +* .. Scalar Arguments .. +* CHARACTER JOB +* INTEGER IHI, ILO, INFO, LDA, LDB, N +* .. +* .. Array Arguments .. +* DOUBLE PRECISION A( LDA, * ), B( LDB, * ), LSCALE( * ), +* $ RSCALE( * ), WORK( * ) +* .. +* +* +*> \par Purpose: +* ============= +*> +*> \verbatim +*> +*> DGGBAL balances a pair of general real matrices (A,B). This +*> involves, first, permuting A and B by similarity transformations to +*> isolate eigenvalues in the first 1 to ILO$-$1 and last IHI+1 to N +*> elements on the diagonal; and second, applying a diagonal similarity +*> transformation to rows and columns ILO to IHI to make the rows +*> and columns as close in norm as possible. Both steps are optional. +*> +*> Balancing may reduce the 1-norm of the matrices, and improve the +*> accuracy of the computed eigenvalues and/or eigenvectors in the +*> generalized eigenvalue problem A*x = lambda*B*x. +*> \endverbatim +* +* Arguments: +* ========== +* +*> \param[in] JOB +*> \verbatim +*> JOB is CHARACTER*1 +*> Specifies the operations to be performed on A and B: +*> = 'N': none: simply set ILO = 1, IHI = N, LSCALE(I) = 1.0 +*> and RSCALE(I) = 1.0 for i = 1,...,N. +*> = 'P': permute only; +*> = 'S': scale only; +*> = 'B': both permute and scale. +*> \endverbatim +*> +*> \param[in] N +*> \verbatim +*> N is INTEGER +*> The order of the matrices A and B. N >= 0. +*> \endverbatim +*> +*> \param[in,out] A +*> \verbatim +*> A is DOUBLE PRECISION array, dimension (LDA,N) +*> On entry, the input matrix A. +*> On exit, A is overwritten by the balanced matrix. +*> If JOB = 'N', A is not referenced. +*> \endverbatim +*> +*> \param[in] LDA +*> \verbatim +*> LDA is INTEGER +*> The leading dimension of the array A. LDA >= max(1,N). +*> \endverbatim +*> +*> \param[in,out] B +*> \verbatim +*> B is DOUBLE PRECISION array, dimension (LDB,N) +*> On entry, the input matrix B. +*> On exit, B is overwritten by the balanced matrix. +*> If JOB = 'N', B is not referenced. +*> \endverbatim +*> +*> \param[in] LDB +*> \verbatim +*> LDB is INTEGER +*> The leading dimension of the array B. LDB >= max(1,N). +*> \endverbatim +*> +*> \param[out] ILO +*> \verbatim +*> ILO is INTEGER +*> \endverbatim +*> +*> \param[out] IHI +*> \verbatim +*> IHI is INTEGER +*> ILO and IHI are set to integers such that on exit +*> A(i,j) = 0 and B(i,j) = 0 if i > j and +*> j = 1,...,ILO-1 or i = IHI+1,...,N. +*> If JOB = 'N' or 'S', ILO = 1 and IHI = N. +*> \endverbatim +*> +*> \param[out] LSCALE +*> \verbatim +*> LSCALE is DOUBLE PRECISION array, dimension (N) +*> Details of the permutations and scaling factors applied +*> to the left side of A and B. If P(j) is the index of the +*> row interchanged with row j, and D(j) +*> is the scaling factor applied to row j, then +*> LSCALE(j) = P(j) for J = 1,...,ILO-1 +*> = D(j) for J = ILO,...,IHI +*> = P(j) for J = IHI+1,...,N. +*> The order in which the interchanges are made is N to IHI+1, +*> then 1 to ILO-1. +*> \endverbatim +*> +*> \param[out] RSCALE +*> \verbatim +*> RSCALE is DOUBLE PRECISION array, dimension (N) +*> Details of the permutations and scaling factors applied +*> to the right side of A and B. If P(j) is the index of the +*> column interchanged with column j, and D(j) +*> is the scaling factor applied to column j, then +*> LSCALE(j) = P(j) for J = 1,...,ILO-1 +*> = D(j) for J = ILO,...,IHI +*> = P(j) for J = IHI+1,...,N. +*> The order in which the interchanges are made is N to IHI+1, +*> then 1 to ILO-1. +*> \endverbatim +*> +*> \param[out] WORK +*> \verbatim +*> WORK is DOUBLE PRECISION array, dimension (lwork) +*> lwork must be at least max(1,6*N) when JOB = 'S' or 'B', and +*> at least 1 when JOB = 'N' or 'P'. +*> \endverbatim +*> +*> \param[out] INFO +*> \verbatim +*> INFO is INTEGER +*> = 0: successful exit +*> < 0: if INFO = -i, the i-th argument had an illegal value. +*> \endverbatim +* +* Authors: +* ======== +* +*> \author Univ. of Tennessee +*> \author Univ. of California Berkeley +*> \author Univ. of Colorado Denver +*> \author NAG Ltd. +* +*> \date December 2016 +* +*> \ingroup doubleGBcomputational +* +*> \par Further Details: +* ===================== +*> +*> \verbatim +*> +*> See R.C. WARD, Balancing the generalized eigenvalue problem, +*> SIAM J. Sci. Stat. Comp. 2 (1981), 141-152. +*> \endverbatim +*> +* ===================================================================== + SUBROUTINE DGGBAL( JOB, N, A, LDA, B, LDB, ILO, IHI, LSCALE, + $ RSCALE, WORK, INFO ) +* +* -- LAPACK computational routine (version 3.7.0) -- +* -- LAPACK is a software package provided by Univ. of Tennessee, -- +* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- +* December 2016 +* +* .. Scalar Arguments .. + CHARACTER JOB + INTEGER IHI, ILO, INFO, LDA, LDB, N +* .. +* .. Array Arguments .. + DOUBLE PRECISION A( LDA, * ), B( LDB, * ), LSCALE( * ), + $ RSCALE( * ), WORK( * ) +* .. +* +* ===================================================================== +* +* .. Parameters .. + DOUBLE PRECISION ZERO, HALF, ONE + PARAMETER ( ZERO = 0.0D+0, HALF = 0.5D+0, ONE = 1.0D+0 ) + DOUBLE PRECISION THREE, SCLFAC + PARAMETER ( THREE = 3.0D+0, SCLFAC = 2.0D+0 ) +* .. +* .. Local Scalars .. + INTEGER I, ICAB, IFLOW, IP1, IR, IRAB, IT, J, JC, JP1, + $ K, KOUNT, L, LCAB, LM1, LRAB, LSFMAX, LSFMIN, + $ M, NR, NRP2 + DOUBLE PRECISION ALPHA, BASL, BETA, CAB, CMAX, COEF, COEF2, + $ COEF5, COR, EW, EWC, GAMMA, PGAMMA, RAB, SFMAX, + $ SFMIN, SUM, T, TA, TB, TC +* .. +* .. External Functions .. + LOGICAL LSAME + INTEGER IDAMAX + DOUBLE PRECISION DDOT, DLAMCH + EXTERNAL LSAME, IDAMAX, DDOT, DLAMCH +* .. +* .. External Subroutines .. + EXTERNAL DAXPY, DSCAL, DSWAP, XERBLA +* .. +* .. Intrinsic Functions .. + INTRINSIC ABS, DBLE, INT, LOG10, MAX, MIN, SIGN +* .. +* .. Executable Statements .. +* +* Test the input parameters +* + INFO = 0 + IF( .NOT.LSAME( JOB, 'N' ) .AND. .NOT.LSAME( JOB, 'P' ) .AND. + $ .NOT.LSAME( JOB, 'S' ) .AND. .NOT.LSAME( JOB, 'B' ) ) THEN + INFO = -1 + ELSE IF( N.LT.0 ) THEN + INFO = -2 + ELSE IF( LDA.LT.MAX( 1, N ) ) THEN + INFO = -4 + ELSE IF( LDB.LT.MAX( 1, N ) ) THEN + INFO = -6 + END IF + IF( INFO.NE.0 ) THEN + CALL XERBLA( 'DGGBAL', -INFO ) + RETURN + END IF +* +* Quick return if possible +* + IF( N.EQ.0 ) THEN + ILO = 1 + IHI = N + RETURN + END IF +* + IF( N.EQ.1 ) THEN + ILO = 1 + IHI = N + LSCALE( 1 ) = ONE + RSCALE( 1 ) = ONE + RETURN + END IF +* + IF( LSAME( JOB, 'N' ) ) THEN + ILO = 1 + IHI = N + DO 10 I = 1, N + LSCALE( I ) = ONE + RSCALE( I ) = ONE + 10 CONTINUE + RETURN + END IF +* + K = 1 + L = N + IF( LSAME( JOB, 'S' ) ) + $ GO TO 190 +* + GO TO 30 +* +* Permute the matrices A and B to isolate the eigenvalues. +* +* Find row with one nonzero in columns 1 through L +* + 20 CONTINUE + L = LM1 + IF( L.NE.1 ) + $ GO TO 30 +* + RSCALE( 1 ) = ONE + LSCALE( 1 ) = ONE + GO TO 190 +* + 30 CONTINUE + LM1 = L - 1 + DO 80 I = L, 1, -1 + DO 40 J = 1, LM1 + JP1 = J + 1 + IF( A( I, J ).NE.ZERO .OR. B( I, J ).NE.ZERO ) + $ GO TO 50 + 40 CONTINUE + J = L + GO TO 70 +* + 50 CONTINUE + DO 60 J = JP1, L + IF( A( I, J ).NE.ZERO .OR. B( I, J ).NE.ZERO ) + $ GO TO 80 + 60 CONTINUE + J = JP1 - 1 +* + 70 CONTINUE + M = L + IFLOW = 1 + GO TO 160 + 80 CONTINUE + GO TO 100 +* +* Find column with one nonzero in rows K through N +* + 90 CONTINUE + K = K + 1 +* + 100 CONTINUE + DO 150 J = K, L + DO 110 I = K, LM1 + IP1 = I + 1 + IF( A( I, J ).NE.ZERO .OR. B( I, J ).NE.ZERO ) + $ GO TO 120 + 110 CONTINUE + I = L + GO TO 140 + 120 CONTINUE + DO 130 I = IP1, L + IF( A( I, J ).NE.ZERO .OR. B( I, J ).NE.ZERO ) + $ GO TO 150 + 130 CONTINUE + I = IP1 - 1 + 140 CONTINUE + M = K + IFLOW = 2 + GO TO 160 + 150 CONTINUE + GO TO 190 +* +* Permute rows M and I +* + 160 CONTINUE + LSCALE( M ) = I + IF( I.EQ.M ) + $ GO TO 170 + CALL DSWAP( N-K+1, A( I, K ), LDA, A( M, K ), LDA ) + CALL DSWAP( N-K+1, B( I, K ), LDB, B( M, K ), LDB ) +* +* Permute columns M and J +* + 170 CONTINUE + RSCALE( M ) = J + IF( J.EQ.M ) + $ GO TO 180 + CALL DSWAP( L, A( 1, J ), 1, A( 1, M ), 1 ) + CALL DSWAP( L, B( 1, J ), 1, B( 1, M ), 1 ) +* + 180 CONTINUE + GO TO ( 20, 90 )IFLOW +* + 190 CONTINUE + ILO = K + IHI = L +* + IF( LSAME( JOB, 'P' ) ) THEN + DO 195 I = ILO, IHI + LSCALE( I ) = ONE + RSCALE( I ) = ONE + 195 CONTINUE + RETURN + END IF +* + IF( ILO.EQ.IHI ) + $ RETURN +* +* Balance the submatrix in rows ILO to IHI. +* + NR = IHI - ILO + 1 + DO 200 I = ILO, IHI + RSCALE( I ) = ZERO + LSCALE( I ) = ZERO +* + WORK( I ) = ZERO + WORK( I+N ) = ZERO + WORK( I+2*N ) = ZERO + WORK( I+3*N ) = ZERO + WORK( I+4*N ) = ZERO + WORK( I+5*N ) = ZERO + 200 CONTINUE +* +* Compute right side vector in resulting linear equations +* + BASL = LOG10( SCLFAC ) + DO 240 I = ILO, IHI + DO 230 J = ILO, IHI + TB = B( I, J ) + TA = A( I, J ) + IF( TA.EQ.ZERO ) + $ GO TO 210 + TA = LOG10( ABS( TA ) ) / BASL + 210 CONTINUE + IF( TB.EQ.ZERO ) + $ GO TO 220 + TB = LOG10( ABS( TB ) ) / BASL + 220 CONTINUE + WORK( I+4*N ) = WORK( I+4*N ) - TA - TB + WORK( J+5*N ) = WORK( J+5*N ) - TA - TB + 230 CONTINUE + 240 CONTINUE +* + COEF = ONE / DBLE( 2*NR ) + COEF2 = COEF*COEF + COEF5 = HALF*COEF2 + NRP2 = NR + 2 + BETA = ZERO + IT = 1 +* +* Start generalized conjugate gradient iteration +* + 250 CONTINUE +* + GAMMA = DDOT( NR, WORK( ILO+4*N ), 1, WORK( ILO+4*N ), 1 ) + + $ DDOT( NR, WORK( ILO+5*N ), 1, WORK( ILO+5*N ), 1 ) +* + EW = ZERO + EWC = ZERO + DO 260 I = ILO, IHI + EW = EW + WORK( I+4*N ) + EWC = EWC + WORK( I+5*N ) + 260 CONTINUE +* + GAMMA = COEF*GAMMA - COEF2*( EW**2+EWC**2 ) - COEF5*( EW-EWC )**2 + IF( GAMMA.EQ.ZERO ) + $ GO TO 350 + IF( IT.NE.1 ) + $ BETA = GAMMA / PGAMMA + T = COEF5*( EWC-THREE*EW ) + TC = COEF5*( EW-THREE*EWC ) +* + CALL DSCAL( NR, BETA, WORK( ILO ), 1 ) + CALL DSCAL( NR, BETA, WORK( ILO+N ), 1 ) +* + CALL DAXPY( NR, COEF, WORK( ILO+4*N ), 1, WORK( ILO+N ), 1 ) + CALL DAXPY( NR, COEF, WORK( ILO+5*N ), 1, WORK( ILO ), 1 ) +* + DO 270 I = ILO, IHI + WORK( I ) = WORK( I ) + TC + WORK( I+N ) = WORK( I+N ) + T + 270 CONTINUE +* +* Apply matrix to vector +* + DO 300 I = ILO, IHI + KOUNT = 0 + SUM = ZERO + DO 290 J = ILO, IHI + IF( A( I, J ).EQ.ZERO ) + $ GO TO 280 + KOUNT = KOUNT + 1 + SUM = SUM + WORK( J ) + 280 CONTINUE + IF( B( I, J ).EQ.ZERO ) + $ GO TO 290 + KOUNT = KOUNT + 1 + SUM = SUM + WORK( J ) + 290 CONTINUE + WORK( I+2*N ) = DBLE( KOUNT )*WORK( I+N ) + SUM + 300 CONTINUE +* + DO 330 J = ILO, IHI + KOUNT = 0 + SUM = ZERO + DO 320 I = ILO, IHI + IF( A( I, J ).EQ.ZERO ) + $ GO TO 310 + KOUNT = KOUNT + 1 + SUM = SUM + WORK( I+N ) + 310 CONTINUE + IF( B( I, J ).EQ.ZERO ) + $ GO TO 320 + KOUNT = KOUNT + 1 + SUM = SUM + WORK( I+N ) + 320 CONTINUE + WORK( J+3*N ) = DBLE( KOUNT )*WORK( J ) + SUM + 330 CONTINUE +* + SUM = DDOT( NR, WORK( ILO+N ), 1, WORK( ILO+2*N ), 1 ) + + $ DDOT( NR, WORK( ILO ), 1, WORK( ILO+3*N ), 1 ) + ALPHA = GAMMA / SUM +* +* Determine correction to current iteration +* + CMAX = ZERO + DO 340 I = ILO, IHI + COR = ALPHA*WORK( I+N ) + IF( ABS( COR ).GT.CMAX ) + $ CMAX = ABS( COR ) + LSCALE( I ) = LSCALE( I ) + COR + COR = ALPHA*WORK( I ) + IF( ABS( COR ).GT.CMAX ) + $ CMAX = ABS( COR ) + RSCALE( I ) = RSCALE( I ) + COR + 340 CONTINUE + IF( CMAX.LT.HALF ) + $ GO TO 350 +* + CALL DAXPY( NR, -ALPHA, WORK( ILO+2*N ), 1, WORK( ILO+4*N ), 1 ) + CALL DAXPY( NR, -ALPHA, WORK( ILO+3*N ), 1, WORK( ILO+5*N ), 1 ) +* + PGAMMA = GAMMA + IT = IT + 1 + IF( IT.LE.NRP2 ) + $ GO TO 250 +* +* End generalized conjugate gradient iteration +* + 350 CONTINUE + SFMIN = DLAMCH( 'S' ) + SFMAX = ONE / SFMIN + LSFMIN = INT( LOG10( SFMIN ) / BASL+ONE ) + LSFMAX = INT( LOG10( SFMAX ) / BASL ) + DO 360 I = ILO, IHI + IRAB = IDAMAX( N-ILO+1, A( I, ILO ), LDA ) + RAB = ABS( A( I, IRAB+ILO-1 ) ) + IRAB = IDAMAX( N-ILO+1, B( I, ILO ), LDB ) + RAB = MAX( RAB, ABS( B( I, IRAB+ILO-1 ) ) ) + LRAB = INT( LOG10( RAB+SFMIN ) / BASL+ONE ) + IR = INT(LSCALE( I ) + SIGN( HALF, LSCALE( I ) )) + IR = MIN( MAX( IR, LSFMIN ), LSFMAX, LSFMAX-LRAB ) + LSCALE( I ) = SCLFAC**IR + ICAB = IDAMAX( IHI, A( 1, I ), 1 ) + CAB = ABS( A( ICAB, I ) ) + ICAB = IDAMAX( IHI, B( 1, I ), 1 ) + CAB = MAX( CAB, ABS( B( ICAB, I ) ) ) + LCAB = INT( LOG10( CAB+SFMIN ) / BASL+ONE ) + JC = INT(RSCALE( I ) + SIGN( HALF, RSCALE( I ) )) + JC = MIN( MAX( JC, LSFMIN ), LSFMAX, LSFMAX-LCAB ) + RSCALE( I ) = SCLFAC**JC + 360 CONTINUE +* +* Row scaling of matrices A and B +* + DO 370 I = ILO, IHI + CALL DSCAL( N-ILO+1, LSCALE( I ), A( I, ILO ), LDA ) + CALL DSCAL( N-ILO+1, LSCALE( I ), B( I, ILO ), LDB ) + 370 CONTINUE +* +* Column scaling of matrices A and B +* + DO 380 J = ILO, IHI + CALL DSCAL( IHI, RSCALE( J ), A( 1, J ), 1 ) + CALL DSCAL( IHI, RSCALE( J ), B( 1, J ), 1 ) + 380 CONTINUE +* + RETURN +* +* End of DGGBAL +* + END diff --git a/slycot/src/flapack.pyf.src b/slycot/src/flapack.pyf.src new file mode 100644 index 00000000..ad3f4dd1 --- /dev/null +++ b/slycot/src/flapack.pyf.src @@ -0,0 +1,51 @@ +! Signatures for f2py wrappers of FORTRAN LAPACK functions. +! +! Author: Pearu Peterson +! Created: Jan-Feb 2002 +! $Revision$ $Date$ +! +! Additions by Travis Oliphant, Tiziano Zito, Collin RM Stocks, Fabian Pedregosa +! Skipper Seabold, Ilhan Polat +! +! Shorthand Notations: +! -------------------- +! +! +! +! +! +! +! +! +! +! +! +! +! +! + +python module _flapack + usercode ''' +#define F_INT int +''' + +interface + + ! Following classification is due to + ! http://www.netlib.org/lapack/explore-html/ + + include 'flapack_user.pyf.src' + include 'flapack_gen.pyf.src' + include 'flapack_gen_banded.pyf.src' + include 'flapack_gen_tri.pyf.src' + include 'flapack_sym_herm.pyf.src' + include 'flapack_pos_def.pyf.src' + include 'flapack_pos_def_tri.pyf.src' + include 'flapack_other.pyf.src' + +end interface + +end python module _flapack + +! This file was auto-generated with f2py (version:2.10.173). +! See http://cens.ioc.ee/projects/f2py2e/ diff --git a/slycot/src/generate_f2pymod.py b/slycot/src/generate_f2pymod.py new file mode 100644 index 00000000..a29eee94 --- /dev/null +++ b/slycot/src/generate_f2pymod.py @@ -0,0 +1,305 @@ +#!/usr/bin/env python3 +""" +Process f2py template files (`filename.pyf.src` -> `filename.pyf`) + +Usage: python generate_pyf.py filename.pyf.src -o filename.pyf +""" + +import argparse +import os +import re +import subprocess + + +# START OF CODE VENDORED FROM `numpy.distutils.from_template` +############################################################# +""" +process_file(filename) + + takes templated file .xxx.src and produces .xxx file where .xxx + is .pyf .f90 or .f using the following template rules: + + '<..>' denotes a template. + + All function and subroutine blocks in a source file with names that + contain '<..>' will be replicated according to the rules in '<..>'. + + The number of comma-separated words in '<..>' will determine the number of + replicates. + + '<..>' may have two different forms, named and short. For example, + + named: + where anywhere inside a block '

' will be replaced with + 'd', 's', 'z', and 'c' for each replicate of the block. + + <_c> is already defined: <_c=s,d,c,z> + <_t> is already defined: <_t=real,double precision,complex,double complex> + + short: + , a short form of the named, useful when no

appears inside + a block. + + In general, '<..>' contains a comma separated list of arbitrary + expressions. If these expression must contain a comma|leftarrow|rightarrow, + then prepend the comma|leftarrow|rightarrow with a backslash. + + If an expression matches '\\' then it will be replaced + by -th expression. + + Note that all '<..>' forms in a block must have the same number of + comma-separated entries. + + Predefined named template rules: + + + + + +""" + +routine_start_re = re.compile( + r'(\n|\A)(( (\$|\*))|)\s*(subroutine|function)\b', + re.I +) +routine_end_re = re.compile(r'\n\s*end\s*(subroutine|function)\b.*(\n|\Z)', re.I) +function_start_re = re.compile(r'\n (\$|\*)\s*function\b', re.I) + +def parse_structure(astr): + """ Return a list of tuples for each function or subroutine each + tuple is the start and end of a subroutine or function to be + expanded. + """ + + spanlist = [] + ind = 0 + while True: + m = routine_start_re.search(astr, ind) + if m is None: + break + start = m.start() + if function_start_re.match(astr, start, m.end()): + while True: + i = astr.rfind('\n', ind, start) + if i==-1: + break + start = i + if astr[i:i+7]!='\n $': + break + start += 1 + m = routine_end_re.search(astr, m.end()) + ind = end = m and m.end()-1 or len(astr) + spanlist.append((start, end)) + return spanlist + +template_re = re.compile(r"<\s*(\w[\w\d]*)\s*>") +named_re = re.compile(r"<\s*(\w[\w\d]*)\s*=\s*(.*?)\s*>") +list_re = re.compile(r"<\s*((.*?))\s*>") + +def find_repl_patterns(astr): + reps = named_re.findall(astr) + names = {} + for rep in reps: + name = rep[0].strip() or unique_key(names) + repl = rep[1].replace(r'\,', '@comma@') + thelist = conv(repl) + names[name] = thelist + return names + +def find_and_remove_repl_patterns(astr): + names = find_repl_patterns(astr) + astr = re.subn(named_re, '', astr)[0] + return astr, names + +item_re = re.compile(r"\A\\(?P\d+)\Z") +def conv(astr): + b = astr.split(',') + l = [x.strip() for x in b] + for i in range(len(l)): + m = item_re.match(l[i]) + if m: + j = int(m.group('index')) + l[i] = l[j] + return ','.join(l) + +def unique_key(adict): + """ Obtain a unique key given a dictionary.""" + allkeys = list(adict.keys()) + done = False + n = 1 + while not done: + newkey = '__l%s' % (n) + if newkey in allkeys: + n += 1 + else: + done = True + return newkey + + +template_name_re = re.compile(r'\A\s*(\w[\w\d]*)\s*\Z') +def expand_sub(substr, names): + substr = substr.replace(r'\>', '@rightarrow@') + substr = substr.replace(r'\<', '@leftarrow@') + lnames = find_repl_patterns(substr) + substr = named_re.sub(r"<\1>", substr) # get rid of definition templates + + def listrepl(mobj): + thelist = conv(mobj.group(1).replace(r'\,', '@comma@')) + if template_name_re.match(thelist): + return "<%s>" % (thelist) + name = None + for key in lnames.keys(): # see if list is already in dictionary + if lnames[key] == thelist: + name = key + if name is None: # this list is not in the dictionary yet + name = unique_key(lnames) + lnames[name] = thelist + return "<%s>" % name + + substr = list_re.sub(listrepl, substr) # convert all lists to named templates + # newnames are constructed as needed + + numsubs = None + base_rule = None + rules = {} + for r in template_re.findall(substr): + if r not in rules: + thelist = lnames.get(r, names.get(r, None)) + if thelist is None: + raise ValueError('No replicates found for <%s>' % (r)) + if r not in names and not thelist.startswith('_'): + names[r] = thelist + rule = [i.replace('@comma@', ',') for i in thelist.split(',')] + num = len(rule) + + if numsubs is None: + numsubs = num + rules[r] = rule + base_rule = r + elif num == numsubs: + rules[r] = rule + else: + print("Mismatch in number of replacements (base <{}={}>) " + "for <{}={}>. Ignoring." + .format(base_rule, ','.join(rules[base_rule]), r, thelist)) + if not rules: + return substr + + def namerepl(mobj): + name = mobj.group(1) + return rules.get(name, (k+1)*[name])[k] + + newstr = '' + for k in range(numsubs): + newstr += template_re.sub(namerepl, substr) + '\n\n' + + newstr = newstr.replace('@rightarrow@', '>') + newstr = newstr.replace('@leftarrow@', '<') + return newstr + +def process_str(allstr): + newstr = allstr + writestr = '' + + struct = parse_structure(newstr) + + oldend = 0 + names = {} + names.update(_special_names) + for sub in struct: + cleanedstr, defs = find_and_remove_repl_patterns(newstr[oldend:sub[0]]) + writestr += cleanedstr + names.update(defs) + writestr += expand_sub(newstr[sub[0]:sub[1]], names) + oldend = sub[1] + writestr += newstr[oldend:] + + return writestr + +include_src_re = re.compile( + r"(\n|\A)\s*include\s*['\"](?P[\w\d./\\]+\.src)['\"]", + re.I +) + +def resolve_includes(source): + d = os.path.dirname(source) + with open(source) as fid: + lines = [] + for line in fid: + m = include_src_re.match(line) + if m: + fn = m.group('name') + if not os.path.isabs(fn): + fn = os.path.join(d, fn) + if os.path.isfile(fn): + lines.extend(resolve_includes(fn)) + else: + lines.append(line) + else: + lines.append(line) + return lines + +def process_file(source): + lines = resolve_includes(source) + return process_str(''.join(lines)) + +_special_names = find_repl_patterns(''' +<_c=s,d,c,z> +<_t=real,double precision,complex,double complex> + + + + + +''') + +# END OF CODE VENDORED FROM `numpy.distutils.from_template` +########################################################### + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("infile", type=str, + help="Path to the input file") + parser.add_argument("-o", "--outdir", type=str, + help="Path to the output directory") + parser.add_argument("--free-threading", + action=argparse.BooleanOptionalAction, + help="Whether to add --free-threading-compatible") + args = parser.parse_args() + + if not args.infile.endswith(('.pyf', '.pyf.src', '.f.src')): + raise ValueError(f"Input file has unknown extension: {args.infile}") + + outdir_abs = os.path.join(os.getcwd(), args.outdir) + + # Write out the .pyf/.f file + if args.infile.endswith(('.pyf.src', '.f.src')): + code = process_file(args.infile) + fname_pyf = os.path.join(args.outdir, + os.path.splitext(os.path.split(args.infile)[1])[0]) + + with open(fname_pyf, 'w') as f: + f.write(code) + else: + fname_pyf = args.infile + + nogil_arg = [] + if args.free_threading: + nogil_arg = ['--freethreading-compatible'] + + # Now invoke f2py to generate the C API module file + if args.infile.endswith(('.pyf.src', '.pyf')): + p = subprocess.Popen( + ['f2py', fname_pyf, '--build-dir', outdir_abs] + nogil_arg, + stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=os.getcwd() + ) + out, err = p.communicate() + if not (p.returncode == 0): + raise RuntimeError(f"Processing {fname_pyf} with f2py failed!\n" + f"{out.decode()}\n" + f"{err.decode()}") + + +if __name__ == "__main__": + main() diff --git a/slycot/src/lapack_bal.pyf b/slycot/src/lapack_bal.pyf new file mode 100644 index 00000000..bc1599ab --- /dev/null +++ b/slycot/src/lapack_bal.pyf @@ -0,0 +1,244 @@ +! -*- f90 -*- +! Signatures for f2py wrappers of FORTRAN LAPACK functions. +! +! Author: Pearu Peterson +! Created: Jan-Feb 2002 +! $Revision$ $Date$ +! +! Additions by Lee McCuller, based on the scipy sources by Travis Oliphant, +! Tiziano Zito, Collin RM Stocks, Fabian Pedregosa +! Skipper Seabold, Ilhan Polat +! +! Shorthand Notations: +! -------------------- +! +! +! +! +! +! +! +! +! +! +! +! +! +! + +subroutine sgebal(scale,permute,n,a,m,lo,hi,pivscale,info) + ! + ! ba,lo,hi,pivscale,info = gebal(a,scale=0,permute=0,overwrite_a=0) + ! Balance general matrix a. + ! hi,lo are such that ba[i][j]==0 if i>j and j=0...lo-1 or i=hi+1..n-1 + ! pivscale([0:lo], [lo:hi+1], [hi:n+1]) = (p1,d,p2) where (p1,p2)[j] is + ! the index of the row and column interchanged with row and column j. + ! d[j] is the scaling factor applied to row and column j. + ! The order in which the interchanges are made is n-1 to hi+1, then 0 to lo-1. + ! + ! P * A * P = [[T1,X,Y],[0,B,Z],[0,0,T2]] + ! BA = [[T1,X*D,Y],[0,inv(D)*B*D,ind(D)*Z],[0,0,T2]] + ! where D = diag(d), T1,T2 are upper triangular matrices. + ! lo,hi mark the starting and ending columns of submatrix B. + + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&m,&lo,&hi,pivscale,&info); hi--; lo--; } + callprotoargument char*,F_INT*,float*,F_INT*,F_INT*,F_INT*,float*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a,n) :: m = shape(a,0) + integer intent(hide),depend(a) :: n = shape(a,1) + check(m>=n) m + integer intent(out) :: hi,lo + real dimension(n),intent(out),depend(n) :: pivscale + real dimension(m,n),intent(in,out,copy,out=ba) :: a + integer intent(out) :: info + +end subroutine sgebal + + +subroutine dgebal(scale,permute,n,a,m,lo,hi,pivscale,info) + ! + ! ba,lo,hi,pivscale,info = gebal(a,scale=0,permute=0,overwrite_a=0) + ! Balance general matrix a. + ! hi,lo are such that ba[i][j]==0 if i>j and j=0...lo-1 or i=hi+1..n-1 + ! pivscale([0:lo], [lo:hi+1], [hi:n+1]) = (p1,d,p2) where (p1,p2)[j] is + ! the index of the row and column interchanged with row and column j. + ! d[j] is the scaling factor applied to row and column j. + ! The order in which the interchanges are made is n-1 to hi+1, then 0 to lo-1. + ! + ! P * A * P = [[T1,X,Y],[0,B,Z],[0,0,T2]] + ! BA = [[T1,X*D,Y],[0,inv(D)*B*D,ind(D)*Z],[0,0,T2]] + ! where D = diag(d), T1,T2 are upper triangular matrices. + ! lo,hi mark the starting and ending columns of submatrix B. + + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&m,&lo,&hi,pivscale,&info); hi--; lo--; } + callprotoargument char*,F_INT*,double*,F_INT*,F_INT*,F_INT*,double*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a,n) :: m = shape(a,0) + integer intent(hide),depend(a) :: n = shape(a,1) + check(m>=n) m + integer intent(out) :: hi,lo + double precision dimension(n),intent(out),depend(n) :: pivscale + double precision dimension(m,n),intent(in,out,copy,out=ba) :: a + integer intent(out) :: info + +end subroutine dgebal + + +subroutine cgebal(scale,permute,n,a,m,lo,hi,pivscale,info) + ! + ! ba,lo,hi,pivscale,info = gebal(a,scale=0,permute=0,overwrite_a=0) + ! Balance general matrix a. + ! hi,lo are such that ba[i][j]==0 if i>j and j=0...lo-1 or i=hi+1..n-1 + ! pivscale([0:lo], [lo:hi+1], [hi:n+1]) = (p1,d,p2) where (p1,p2)[j] is + ! the index of the row and column interchanged with row and column j. + ! d[j] is the scaling factor applied to row and column j. + ! The order in which the interchanges are made is n-1 to hi+1, then 0 to lo-1. + ! + ! P * A * P = [[T1,X,Y],[0,B,Z],[0,0,T2]] + ! BA = [[T1,X*D,Y],[0,inv(D)*B*D,ind(D)*Z],[0,0,T2]] + ! where D = diag(d), T1,T2 are upper triangular matrices. + ! lo,hi mark the starting and ending columns of submatrix B. + + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&m,&lo,&hi,pivscale,&info); hi--; lo--; } + callprotoargument char*,F_INT*,complex_float*,F_INT*,F_INT*,F_INT*,float*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a,n) :: m = shape(a,0) + integer intent(hide),depend(a) :: n = shape(a,1) + check(m>=n) m + integer intent(out) :: hi,lo + real dimension(n),intent(out),depend(n) :: pivscale + complex dimension(m,n),intent(in,out,copy,out=ba) :: a + integer intent(out) :: info + +end subroutine cgebal + + +subroutine zgebal(scale,permute,n,a,m,lo,hi,pivscale,info) + ! + ! ba,lo,hi,pivscale,info = gebal(a,scale=0,permute=0,overwrite_a=0) + ! Balance general matrix a. + ! hi,lo are such that ba[i][j]==0 if i>j and j=0...lo-1 or i=hi+1..n-1 + ! pivscale([0:lo], [lo:hi+1], [hi:n+1]) = (p1,d,p2) where (p1,p2)[j] is + ! the index of the row and column interchanged with row and column j. + ! d[j] is the scaling factor applied to row and column j. + ! The order in which the interchanges are made is n-1 to hi+1, then 0 to lo-1. + ! + ! P * A * P = [[T1,X,Y],[0,B,Z],[0,0,T2]] + ! BA = [[T1,X*D,Y],[0,inv(D)*B*D,ind(D)*Z],[0,0,T2]] + ! where D = diag(d), T1,T2 are upper triangular matrices. + ! lo,hi mark the starting and ending columns of submatrix B. + + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&m,&lo,&hi,pivscale,&info); hi--; lo--; } + callprotoargument char*,F_INT*,complex_double*,F_INT*,F_INT*,F_INT*,double*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a,n) :: m = shape(a,0) + integer intent(hide),depend(a) :: n = shape(a,1) + check(m>=n) m + integer intent(out) :: hi,lo + double precision dimension(n),intent(out),depend(n) :: pivscale + double complex dimension(m,n),intent(in,out,copy,out=ba) :: a + integer intent(out) :: info + +end subroutine zgebal + + + +subroutine sggbal(scale,permute,n,a,lda,b,ldb,lo,hi,lscale,rscale,work,lwork,info) ! in zggbal.f + ! WORK is DOUBLE PRECISION array, dimension (lwork) + ! lwork must be at least MAX(1,6*N) when JOB = 'S' or 'B', and + ! at least 1 when JOB = 'N' or 'P'. + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&lda,b,&ldb,&lo,&hi,lscale,rscale,work,&info); hi--; lo--; } + callprotoargument char*,F_INT*,float*,F_INT*,float*,F_INT*,F_INT*,F_INT*,float*,float*,float*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a) :: n = shape(a,1) + integer intent(hide),depend(a,n) :: lda = shape(a,0) + integer intent(hide),depend(b,n) :: ldb = shape(b,0) + check(lda>=n) lda + check(ldb>=n) ldb + real dimension(lda,n),intent(in,out,copy,out=ao) :: a + real dimension(ldb,n),intent(in,out,copy,out=bo) :: b + integer intent(out) :: hi,lo + real dimension(n),intent(out),depend(n) :: lscale + real dimension(n),intent(out),depend(n) :: rscale + real precision intent(hide,cache),dimension(lwork) :: work + integer optional :: lwork = (scale?MAX(1,6*n):1) + integer intent(out) :: info +end subroutine sgebal + + +subroutine dggbal(scale,permute,n,a,lda,b,ldb,lo,hi,lscale,rscale,work,lwork,info) ! in zggbal.f + ! WORK is DOUBLE PRECISION array, dimension (lwork) + ! lwork must be at least MAX(1,6*N) when JOB = 'S' or 'B', and + ! at least 1 when JOB = 'N' or 'P'. + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&lda,b,&ldb,&lo,&hi,lscale,rscale,work,&info); hi--; lo--; } + callprotoargument char*,F_INT*,double*,F_INT*,double*,F_INT*,F_INT*,F_INT*,double*,double*,double*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a) :: n = shape(a,1) + integer intent(hide),depend(a,n) :: lda = shape(a,0) + integer intent(hide),depend(b,n) :: ldb = shape(b,0) + check(lda>=n) lda + check(ldb>=n) ldb + double precision dimension(lda,n),intent(in,out,copy,out=ao) :: a + double precision dimension(ldb,n),intent(in,out,copy,out=bo) :: b + integer intent(out) :: hi,lo + double precision dimension(n),intent(out),depend(n) :: lscale + double precision dimension(n),intent(out),depend(n) :: rscale + double precision intent(hide,cache),dimension(lwork),depend(lwork) :: work + integer optional :: lwork = (scale?MAX(1,6*n):1) + integer intent(out) :: info +end subroutine dgebal + + +subroutine cggbal(scale,permute,n,a,lda,b,ldb,lo,hi,lscale,rscale,work,lwork,info) ! in zggbal.f + ! WORK is DOUBLE PRECISION array, dimension (lwork) + ! lwork must be at least MAX(1,6*N) when JOB = 'S' or 'B', and + ! at least 1 when JOB = 'N' or 'P'. + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&lda,b,&ldb,&lo,&hi,lscale,rscale,work,&info); hi--; lo--; } + callprotoargument char*,F_INT*,complex_float*,F_INT*,complex_float*,F_INT*,F_INT*,F_INT*,float*,float*,complex_float*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a) :: n = shape(a,1) + integer intent(hide),depend(a,n) :: lda = shape(a,0) + integer intent(hide),depend(b,n) :: ldb = shape(b,0) + check(lda>=n) lda + check(ldb>=n) ldb + complex dimension(lda,n),intent(in,out,copy,out=ao) :: a + complex dimension(ldb,n),intent(in,out,copy,out=bo) :: b + integer intent(out) :: hi,lo + real dimension(n),intent(out),depend(n) :: lscale + real dimension(n),intent(out),depend(n) :: rscale + complex precision intent(hide,cache),dimension(lwork),depend(lwork) :: work + integer optional :: lwork = (scale?MAX(1,6*n):1) + integer intent(out) :: info +end subroutine cgebal + + +subroutine zggbal(scale,permute,n,a,lda,b,ldb,lo,hi,lscale,rscale,work,lwork,info) ! in zggbal.f + ! WORK is DOUBLE PRECISION array, dimension (lwork) + ! lwork must be at least MAX(1,6*N) when JOB = 'S' or 'B', and + ! at least 1 when JOB = 'N' or 'P'. + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&lda,b,&ldb,&lo,&hi,lscale,rscale,work,&info); hi--; lo--; } + callprotoargument char*,F_INT*,complex_double*,F_INT*,complex_double*,F_INT*,F_INT*,F_INT*,double*,double*,complex_double*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a) :: n = shape(a,1) + integer intent(hide),depend(a,n) :: lda = shape(a,0) + integer intent(hide),depend(b,n) :: ldb = shape(b,0) + check(lda>=n) lda + check(ldb>=n) ldb + double complex dimension(lda,n),intent(in,out,copy,out=ao) :: a + double complex dimension(ldb,n),intent(in,out,copy,out=bo) :: b + integer intent(out) :: hi,lo + double precision dimension(n),intent(out),depend(n) :: lscale + double precision dimension(n),intent(out),depend(n) :: rscale + double complex precision intent(hide,cache),dimension(lwork),depend(lwork) :: work + integer optional :: lwork = (scale?MAX(1,6*n):1) + integer intent(out) :: info +end subroutine zgebal + diff --git a/slycot/src/lapack_bal.pyf.src b/slycot/src/lapack_bal.pyf.src new file mode 100644 index 00000000..fd272820 --- /dev/null +++ b/slycot/src/lapack_bal.pyf.src @@ -0,0 +1,73 @@ +! -*- f90 -*- +! Note: the context of this file is case sensitive. +! Shorthand Notations: +! -------------------- +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! + +subroutine gebal(scale,permute,n,a,m,lo,hi,pivscale,info) + ! + ! ba,lo,hi,pivscale,info = gebal(a,scale=0,permute=0,overwrite_a=0) + ! Balance general matrix a. + ! hi,lo are such that ba[i][j]==0 if i>j and j=0...lo-1 or i=hi+1..n-1 + ! pivscale([0:lo], [lo:hi+1], [hi:n+1]) = (p1,d,p2) where (p1,p2)[j] is + ! the index of the row and column interchanged with row and column j. + ! d[j] is the scaling factor applied to row and column j. + ! The order in which the interchanges are made is n-1 to hi+1, then 0 to lo-1. + ! + ! P * A * P = [[T1,X,Y],[0,B,Z],[0,0,T2]] + ! BA = [[T1,X*D,Y],[0,inv(D)*B*D,ind(D)*Z],[0,0,T2]] + ! where D = diag(d), T1,T2 are upper triangular matrices. + ! lo,hi mark the starting and ending columns of submatrix B. + + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&m,&lo,&hi,pivscale,&info); hi--; lo--; } + callprotoargument char*,F_INT*,*,F_INT*,F_INT*,F_INT*,*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a,n) :: m = shape(a,0) + integer intent(hide),depend(a) :: n = shape(a,1) + check(m>=n) m + integer intent(out) :: hi,lo + dimension(n),intent(out),depend(n) :: pivscale + dimension(m,n),intent(in,out,copy,out=ba) :: a + integer intent(out) :: info + +end subroutine gebal + +subroutine ggbal(scale,permute,n,a,lda,b,ldb,lo,hi,lscale,rscale,work,lwork,info) ! in zggbal.f + ! WORK is DOUBLE PRECISION array, dimension (lwork) + ! lwork must be at least max(1,6*N) when JOB = 'S' or 'B', and + ! at least 1 when JOB = 'N' or 'P'. + callstatement { (*f2py_func)((permute?(scale?"B":"P"):(scale?"S":"N")),&n,a,&lda,b,&ldb,&lo,&hi,lscale,rscale,work,&info); hi--; lo--; } + callprotoargument char*,F_INT*,*,F_INT*,*,F_INT*,F_INT*,F_INT*,*,*,*,F_INT* + integer intent(in),optional :: permute = 0 + integer intent(in),optional :: scale = 0 + integer intent(hide),depend(a) :: n = shape(a,1) + integer intent(hide),depend(a,n) :: lda = shape(a,0) + integer intent(hide),depend(b,n) :: ldb = shape(b,0) + check(lda>=n) lda + check(ldb>=n) ldb + dimension(lda,n),intent(in,out,copy,out=ao) :: a + dimension(ldb,n),intent(in,out,copy,out=bo) :: b + integer intent(out) :: hi,lo + dimension(n),intent(out),depend(n) :: lscale + dimension(n),intent(out),depend(n) :: rscale + precision intent(hide,cache),dimension(lwork),depend(lwork) :: work + integer optional :: lwork = (scale?max(1,6*n):1) + integer intent(out) :: info +end subroutine gebal + diff --git a/slycot/src/lapack_svd.pyf.src b/slycot/src/lapack_svd.pyf.src new file mode 100644 index 00000000..d64bd470 --- /dev/null +++ b/slycot/src/lapack_svd.pyf.src @@ -0,0 +1,374 @@ +! -*- f90 -*- +! Note: the context of this file is case sensitive. +! Shorthand Notations: +! -------------------- +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! + +python module lapack_svd ! in + interface ! in :lapack_svd +! subroutine dgesvd(jobu,jobvt,m,n,a,lda,s,u,ldu,vt,ldvt,work,lwork,info) ! in :lapack_svd:dgesvd.f +! character :: jobu +! character :: jobvt +! integer :: m +! integer :: n +! double precision dimension(lda,*) :: a +! integer, optional,check(shape(a,0)==lda),depend(a) :: lda=shape(a,0) +! double precision dimension(*) :: s +! double precision dimension(ldu,*) :: u +! integer, optional,check(shape(u,0)==ldu),depend(u) :: ldu=shape(u,0) +! double precision dimension(ldvt,*) :: vt +! integer, optional,check(shape(vt,0)==ldvt),depend(vt) :: ldvt=shape(vt,0) +! double precision dimension(*) :: work +! integer :: lwork +! integer :: info +! end subroutine dgesvd +! subroutine dgesvdx(jobu,jobvt,range,m,n,a,lda,vl,vu,il,iu,ns,s,u,ldu,vt,ldvt,work,lwork,iwork,info) ! in :lapack_svd:dgesvdx.f +! character :: jobu +! character :: jobvt +! character :: range +! integer :: m +! integer :: n +! double precision dimension(lda,*) :: a +! integer, optional,check(shape(a,0)==lda),depend(a) :: lda=shape(a,0) +! double precision :: vl +! double precision :: vu +! integer :: il +! integer :: iu +! integer :: ns +! double precision dimension(*) :: s +! double precision dimension(ldu,*) :: u +! integer, optional,check(shape(u,0)==ldu),depend(u) :: ldu=shape(u,0) +! double precision dimension(ldvt,*) :: vt +! integer, optional,check(shape(vt,0)==ldvt),depend(vt) :: ldvt=shape(vt,0) +! double precision dimension(*) :: work +! integer :: lwork +! integer dimension(*) :: iwork +! integer :: info +! end subroutine dgesvdx +! subroutine zgesvd(jobu,jobvt,m,n,a,lda,s,u,ldu,vt,ldvt,work,lwork,rwork,info) ! in :lapack_svd:zgesvd.f +! character :: jobu +! character :: jobvt +! integer :: m +! integer :: n +! complex*16 dimension(lda,*) :: a +! integer, optional,check(shape(a,0)==lda),depend(a) :: lda=shape(a,0) +! double precision dimension(*) :: s +! complex*16 dimension(ldu,*) :: u +! integer, optional,check(shape(u,0)==ldu),depend(u) :: ldu=shape(u,0) +! complex*16 dimension(ldvt,*) :: vt +! integer, optional,check(shape(vt,0)==ldvt),depend(vt) :: ldvt=shape(vt,0) +! complex*16 dimension(*) :: work +! integer :: lwork +! double precision dimension(*) :: rwork +! integer :: info +! end subroutine zgesvd +! subroutine zgesvdx(jobu,jobvt,range,m,n,a,lda,vl,vu,il,iu,ns,s,u,ldu,vt,ldvt,work,lwork,rwork,iwork,info) ! in :lapack_svd:zgesvdx.f +! character :: jobu +! character :: jobvt +! character :: range +! integer :: m +! integer :: n +! complex*16 dimension(lda,*) :: a +! integer, optional,check(shape(a,0)==lda),depend(a) :: lda=shape(a,0) +! double precision :: vl +! double precision :: vu +! integer :: il +! integer :: iu +! integer :: ns +! double precision dimension(*) :: s +! complex*16 dimension(ldu,*) :: u +! integer, optional,check(shape(u,0)==ldu),depend(u) :: ldu=shape(u,0) +! complex*16 dimension(ldvt,*) :: vt +! integer, optional,check(shape(vt,0)==ldvt),depend(vt) :: ldvt=shape(vt,0) +! complex*16 dimension(*) :: work +! integer :: lwork +! double precision dimension(*) :: rwork +! integer dimension(*) :: iwork +! integer :: info +! end subroutine zgesvdx + + subroutine gesvd(m,n,minmn,u0,u1,vt0,vt1,a,compute_u,compute_v,full_matrices,u,s,vt,work,lwork,info) + + ! u,s,vt,info = gesvd(a,compute_u=1,compute_v=1,lwork=..,overwrite_a=0) + ! Compute the singular value decomposition (SVD): + ! A = U * SIGMA * transpose(V) + ! A - M x N matrix + ! U - M x M matrix or min(M,N) x N if full_matrices=False + ! SIGMA - M x N zero matrix with a main diagonal filled with min(M,N) + ! singular values + ! transpose(V) - N x N matrix or N x min(M,N) if full_matrices=False + + callstatement (*f2py_func)((compute_u?(full_matrices?"A":"S"):"N"),(compute_v?(full_matrices?"A":"S"):"N"),&m,&n,a,&m,s,u,&u0,vt,&vt0,work,&lwork,&info) + callprotoargument char*,char*,int*,int*,*,int*,*,*,int*,*,int*,*,int*,int* + + integer intent(in),optional,check(compute_u==0||compute_u==1):: compute_u = 1 + integer intent(in),optional,check(compute_v==0||compute_v==1):: compute_v = 1 + integer intent(in),optional,check(full_matrices==0||full_matrices==1):: full_matrices = 1 + integer intent(hide),depend(a):: m = shape(a,0) + integer intent(hide),depend(a):: n = shape(a,1) + integer intent(hide),depend(m,n):: minmn = MIN(m,n) + integer intent(hide),depend(compute_u,minmn) :: u0 = (compute_u?m:1) + integer intent(hide),depend(compute_u,minmn, full_matrices) :: u1 = (compute_u?(full_matrices?m:minmn):1) + integer intent(hide),depend(compute_v,minmn, full_matrices) :: vt0 = (compute_v?(full_matrices?n:minmn):1) + integer intent(hide),depend(compute_v,minmn) :: vt1 = (compute_v?n:1) + dimension(m,n),intent(in,copy,aligned8) :: a + dimension(minmn),intent(out),depend(minmn) :: s + dimension(u0,u1),intent(out),depend(u0, u1) :: u + dimension(vt0,vt1),intent(out),depend(vt0, vt1) :: vt + dimension(lwork),intent(hide,cache),depend(lwork) :: work + integer optional,intent(in),depend(minmn) :: lwork = max(MAX(3*minmn+MAX(m,n),5*minmn),1) + integer intent(out) :: info + + end subroutine gesvd + + subroutine gesvd_lwork(m,n,minmn,u0,vt0,a,compute_u,compute_v,full_matrices,u,s,vt,work,lwork,info) + ! LWORK computation for (S/D)GESVD + + fortranname gesvd + callstatement (*f2py_func)((compute_u?(full_matrices?"A":"S"):"N"),(compute_v?(full_matrices?"A":"S"):"N"),&m,&n,a,&m,&s,&u,&u0,&vt,&vt0,&work,&lwork,&info) + callprotoargument char*,char*,int*,int*,*,int*,*,*,int*,*,int*,*,int*,int* + + integer intent(in),optional,check(compute_u==0||compute_u==1):: compute_u = 1 + integer intent(in),optional,check(compute_v==0||compute_v==1):: compute_v = 1 + integer intent(in),optional,check(full_matrices==0||full_matrices==1):: full_matrices = 1 + integer intent(hide),depend(a):: m = shape(a,0) + integer intent(hide),depend(a):: n = shape(a,1) + integer intent(hide),depend(m,n):: minmn = MIN(m,n) + integer intent(hide),depend(compute_u,minmn) :: u0 = (compute_u?m:1) + integer intent(hide),depend(compute_v,minmn, full_matrices) :: vt0 = (compute_v?(full_matrices?n:minmn):1) + dimension(m,n),intent(in) :: a + intent(hide) :: s + intent(hide) :: u + intent(hide) :: vt + integer intent(hide) :: lwork = -1 + intent(out) :: work + integer intent(out) :: info + + end subroutine gesvd_lwork + + subroutine gesvd(m,n,minmn,u0,u1,vt0,vt1,a,compute_u,compute_v,full_matrices,u,s,vt,work,rwork,lwork,info) + + ! u,s,vt,info = gesvd(a,compute_uv=1,lwork=..,overwrite_a=0) + ! Compute the singular value decomposition (SVD): + ! A = U * SIGMA * conjugate-transpose(V) + ! A - M x N matrix + ! U - M x M matrix or min(M,N) x N if full_matrices=False + ! SIGMA - M x N zero matrix with a main diagonal filled with min(M,N) + ! singular values + ! transpose(V) - N x N matrix or N x min(M,N) if full_matrices=False + + callstatement (*f2py_func)((compute_u?(full_matrices?"A":"S"):"N"),(compute_v?(full_matrices?"A":"S"):"N"),&m,&n,a,&m,s,u,&u0,vt,&vt0,work,&lwork,rwork,&info) + callprotoargument char*,char*,int*,int*,*,int*,*,*,int*,*,int*,*,int*,*,int* + + integer intent(in),optional,check(compute_u==0||compute_u==1):: compute_u = 1 + integer intent(in),optional,check(compute_v==0||compute_v==1):: compute_v = 1 + integer intent(in),optional,check(full_matrices==0||full_matrices==1):: full_matrices = 1 + integer intent(hide),depend(a):: m = shape(a,0) + integer intent(hide),depend(a):: n = shape(a,1) + integer intent(hide),depend(m,n):: minmn = MIN(m,n) + integer intent(hide),depend(compute_u,minmn) :: u0 = (compute_u?m:1) + integer intent(hide),depend(compute_u,minmn, full_matrices) :: u1 = (compute_u?(full_matrices?m:minmn):1) + integer intent(hide),depend(compute_v,minmn, full_matrices) :: vt0 = (compute_v?(full_matrices?n:minmn):1) + integer intent(hide),depend(compute_v,minmn) :: vt1 = (compute_v?n:1) + dimension(m,n),intent(in, copy) :: a + dimension(minmn),intent(out),depend(minmn) :: s + dimension(u0,u1),intent(out),depend(u0,u1) :: u + dimension(vt0,vt1),intent(out),depend(vt0,vt1) :: vt + dimension(lwork),intent(hide,cache),depend(lwork) :: work + dimension((MAX(1,5*minmn))),intent(hide,cache),depend(minmn) :: rwork + integer optional,intent(in),depend(minmn) :: lwork = MAX(2*minmn+MAX(m,n),1) + integer intent(out) :: info + + end subroutine gesvd + + subroutine gesvd_lwork(m,n,minmn,u0,vt0,a,compute_u,compute_v,full_matrices,u,s,vt,work,rwork,lwork,info) + ! (C/Z)GESVD call with LWORK=-1 -- copypaste of above gesvd with dummy arrays + + fortranname gesvd + callstatement (*f2py_func)((compute_u?(full_matrices?"A":"S"):"N"),(compute_v?(full_matrices?"A":"S"):"N"),&m,&n,a,&m,&s,&u,&u0,&vt,&vt0,&work,&lwork,&rwork,&info) + callprotoargument char*,char*,int*,int*,*,int*,*,*,int*,*,int*,*,int*,*,int* + + integer intent(in),optional,check(compute_u==0||compute_u==1):: compute_u = 1 + integer intent(in),optional,check(compute_v==0||compute_v==1):: compute_v = 1 + integer intent(in),optional,check(full_matrices==0||full_matrices==1):: full_matrices = 1 + integer intent(hide),depend(a):: m = shape(a,0) + integer intent(hide),depend(a):: n = shape(a,1) + integer intent(hide),depend(m,n):: minmn = MIN(m,n) + integer intent(hide),depend(compute_u,minmn) :: u0 = (compute_u?m:1) + integer intent(hide),depend(compute_v,minmn, full_matrices) :: vt0 = (compute_v?(full_matrices?n:minmn):1) + integer intent(hide) :: lwork = -1 + dimension(m,n),intent(in) :: a + intent(hide) :: s + intent(hide) :: u + intent(hide) :: vt + intent(out) :: work + intent(hide) :: rwork + integer intent(out) :: info + + end subroutine gesvd_lwork + +! subroutine zgesvdx(jobu,jobvt,range,m,n,a,lda,vl,vu,il,iu,ns,s,u,ldu,vt,ldvt,work,lwork,rwork,iwork,info) ! in :lapack_svd:zgesvdx.f + subroutine gesvdx(m,n,minmn,u0,u1,vt0,vt1,a,compute_u,compute_v,u,ns,s,vt,work,lwork,iwork,info,vl,vu,il,iu) + + ! u,s,vt,info = gesvdx(a,compute_u=1,compute_v=1,lwork=..,overwrite_a=0) + ! Compute the singular value decomposition (SVD): + ! A = U * SIGMA * transpose(V) + ! A - M x N matrix + ! U - M x M matrix or min(M,N) x N if full_matrices=False + ! SIGMA - M x N zero matrix with a main diagonal filled with min(M,N) + ! singular values + ! transpose(V) - N x N matrix or N x min(M,N) if full_matrices=False + + callstatement (*f2py_func)((compute_u?"V":"N"), (compute_v?"V":"N"), "I", &m, &n, a, &m, &vl, &vu, &il, &iu, &ns, s, u, &u0, vt, &vt0, work, &lwork, iwork, &info) + + callprotoargument char*,char*,char*,int*,int*,*,int*,*,*,int*,int*,int*,*,*,int*,*,int*,*,int*,int*,int* + + integer intent(in),optional,check(compute_u==0||compute_u==1):: compute_u = 1 + integer intent(in),optional,check(compute_v==0||compute_v==1):: compute_v = 1 + integer intent(hide),depend(a):: m = shape(a,0) + integer intent(hide),depend(a):: n = shape(a,1) + integer intent(hide),depend(m,n):: minmn = MIN(m,n) + integer intent(hide),depend(compute_u,minmn) :: u0 = (compute_u?m:1) + integer intent(hide),depend(compute_u,minmn) :: u1 = (compute_u?minmn:1) + integer intent(hide),depend(compute_v,minmn) :: vt0 = (compute_v?minmn:1) + integer intent(hide),depend(compute_v,minmn) :: vt1 = (compute_v?n:1) + dimension(m,n),intent(in,copy,aligned8) :: a + dimension(minmn),intent(out),depend(minmn) :: s + dimension(u0,u1),intent(out),depend(u0, u1) :: u + dimension(vt0,vt1),intent(out),depend(vt0, vt1) :: vt + dimension(lwork),intent(hide,cache),depend(lwork) :: work + integer dimension(12*minmn),intent(out),depend(minmn) :: iwork + intent(hide):: vl=0 + intent(hide):: vu=0 + integer intent(in),optional,depend(minmn, iu),check((il>=1)&&(il<=iu)):: il = 1 + integer intent(in),optional,depend(minmn),check((iu<=minmn)):: iu = minmn + integer optional,intent(in),depend(minmn) :: lwork = max(MAX(3*minmn+MAX(m,n),5*minmn),1) + integer intent(out) :: info + integer intent(out) :: ns + + end subroutine gesvdx + + subroutine gesvdx_lwork(m,n,minmn,u0,vt0,a,compute_u,compute_v,u,ns,s,vt,work,lwork,iwork,info,vl,vu,il,iu) + ! LWORK computation for (S/D)GESVDX + + fortranname gesvdx + callstatement (*f2py_func)((compute_u?"V":"N"), (compute_v?"V":"N"), "I", &m, &n, a, &m, &vl, &vu, &il, &iu, &ns, &s, &u, &u0, &vt, &vt0, &work, &lwork, &iwork, &info) + + callprotoargument char*,char*,char*,int*,int*,*,int*,*,*,int*,int*,int*,*,*,int*,*,int*,*,int*,int*,int* + + integer intent(in),optional,check((compute_u==0) || (compute_u==1)):: compute_u = 1 + integer intent(in),optional,check((compute_v==0) || (compute_v==1)):: compute_v = 1 + integer intent(hide),depend(a):: m = shape(a,0) + integer intent(hide),depend(a):: n = shape(a,1) + integer intent(hide),depend(m,n):: minmn = MIN(m,n) + integer intent(hide),depend(compute_u,minmn) :: u0 = (compute_u?minmn:1) + integer intent(hide),depend(compute_v,minmn) :: vt0 = (compute_v?minmn:1) + intent(hide):: vl=0 + intent(hide):: vu=0 + integer intent(in),optional,depend(minmn, iu),check((il>=1)&&(il<=iu)):: il = 1 + integer intent(in),optional,depend(minmn),check((iu<=minmn)):: iu = minmn + dimension(m,n),intent(in,copy,aligned8) :: a + intent(hide) :: s + intent(hide) :: u + intent(hide) :: vt + integer dimension(12*minmn),intent(hide),depend(minmn) :: iwork + integer intent(hide) :: ns + integer intent(hide) :: lwork = -1 + intent(out) :: work + integer intent(out) :: info + + end subroutine gesvdx_lwork + + subroutine gesvdx(m,n,minmn,u0,u1,vt0,vt1,a,compute_u,compute_v,u,ns,s,vt,work,lwork,iwork,info,vl,vu,il,iu,rwork) + + ! u,s,vt,info = gesvdx(a,compute_u=1,compute_v=1,lwork=..,overwrite_a=0) + ! Compute the singular value decomposition (SVD): + ! A = U * SIGMA * transpose(V) + ! A - M x N matrix + ! U - M x M matrix or min(M,N) x N if full_matrices=False + ! SIGMA - M x N zero matrix with a main diagonal filled with min(M,N) + ! singular values + ! transpose(V) - N x N matrix or N x min(M,N) if full_matrices=False + + callstatement (*f2py_func)((compute_u?"V":"N"), (compute_v?"V":"N"), "I", &m, &n, a, &m, &vl, &vu, &il, &iu, &ns, s, u, &u0, vt, &vt0, work, &lwork, rwork, iwork, &info) + + callprotoargument char*,char*,char*,int*,int*,*,int*,*,*,int*,int*,int*,*,*,int*,*,int*,*,int*,*,int*,int* + + integer intent(in),optional,check(compute_u==0||compute_u==1):: compute_u = 1 + integer intent(in),optional,check(compute_v==0||compute_v==1):: compute_v = 1 + integer intent(hide),depend(a):: m = shape(a,0) + integer intent(hide),depend(a):: n = shape(a,1) + integer intent(hide),depend(m,n):: minmn = MIN(m,n) + integer intent(hide),depend(compute_u,minmn) :: u0 = (compute_u?m:1) + integer intent(hide),depend(compute_u,minmn) :: u1 = (compute_u?minmn:1) + integer intent(hide),depend(compute_v,minmn) :: vt0 = (compute_v?minmn:1) + integer intent(hide),depend(compute_v,minmn) :: vt1 = (compute_v?n:1) + dimension(m,n),intent(in,copy,aligned8) :: a + dimension(minmn),intent(out),depend(minmn) :: s + dimension(u0,u1),intent(out),depend(u0, u1) :: u + dimension(vt0,vt1),intent(out),depend(vt0, vt1) :: vt + dimension(lwork),intent(hide,cache),depend(lwork) :: work + integer dimension(12*minmn),intent(out),depend(minmn) :: iwork + intent(hide):: vl=0 + intent(hide):: vu=0 + integer intent(in),optional,depend(minmn, iu),check((il>=1)&&(il<=iu)):: il = 1 + integer intent(in),optional,depend(minmn),check((iu<=minmn)):: iu = minmn + integer optional,intent(in),depend(minmn) :: lwork = max(MAX(3*minmn+MAX(m,n),5*minmn),1) + dimension((MAX(1,minmn*(minmn*2+15*minmn)))),intent(hide,cache),depend(minmn) :: rwork + integer intent(out) :: info + integer intent(out) :: ns + + end subroutine gesvdx + + subroutine gesvdx_lwork(m,n,minmn,u0,vt0,a,compute_u,compute_v,u,ns,s,vt,work,lwork,iwork,info,vl,vu,il,iu,rwork) + ! LWORK computation for (S/D)GESVDX + + fortranname gesvdx + callstatement (*f2py_func)((compute_u?"V":"N"), (compute_v?"V":"N"), "I", &m, &n, a, &m, &vl, &vu, &il, &iu, &ns, &s, &u, &u0, &vt, &vt0, &work, &lwork, &rwork, &iwork, &info) + + callprotoargument char*,char*,char*,int*,int*,*,int*,*,*,int*,int*,int*,*,*,int*,*,int*,*,int*,*,int*,int* + + integer intent(in),optional,check((compute_u==0) || (compute_u==1)):: compute_u = 1 + integer intent(in),optional,check((compute_v==0) || (compute_v==1)):: compute_v = 1 + integer intent(hide),depend(a):: m = shape(a,0) + integer intent(hide),depend(a):: n = shape(a,1) + integer intent(hide),depend(m,n):: minmn = MIN(m,n) + integer intent(hide),depend(compute_u,minmn) :: u0 = (compute_u?minmn:1) + integer intent(hide),depend(compute_v,minmn) :: vt0 = (compute_v?minmn:1) + intent(hide):: vl=0 + intent(hide):: vu=0 + integer intent(in),optional,depend(minmn, iu),check((il>=1)&&(il<=iu)):: il = 1 + integer intent(in),optional,depend(minmn),check((iu<=minmn)):: iu = minmn + dimension(m,n),intent(in,copy,aligned8) :: a + intent(hide) :: s + intent(hide) :: u + intent(hide) :: vt + integer dimension(12*minmn),intent(hide),depend(minmn) :: iwork + integer intent(hide) :: ns + integer intent(hide) :: lwork = -1 + intent(out) :: work + intent(hide) :: rwork + integer intent(out) :: info + + end subroutine gesvdx_lwork + + end interface +end python module lapack_svd + +! This file was auto-generated with f2py (version:2). +! See http://cens.ioc.ee/projects/f2py2e/ diff --git a/slycot/src/math.pyf b/slycot/src/math.pyf index fe78cdde..573e9bb8 100644 --- a/slycot/src/math.pyf +++ b/slycot/src/math.pyf @@ -21,20 +21,20 @@ subroutine mb02ed(typet,k,n,nrhs,t,ldt,b,ldb,dwork,ldwork,info) ! in MB02ED.f integer, intent(hide),optional,check(shape(t, 0) == ldt),depend(t) :: ldt=shape(t, 0) double precision intent(in,out,copy),dimension(ldb,*) :: b integer, intent(hide),optional,check(shape(b, 0) == ldb),depend(b) :: ldb=shape(b, 0) - double precision intent(cache,hide),dimension(ldwork) :: dwork - integer optional,check(ldwork>=n*k*k+(n+2)*k), depend(n,k) :: ldwork=max(1,n*k*k+(n+2)*k) + double precision intent(cache,hide),dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=n*k*k+(n+2)*k), depend(n,k) :: ldwork=MAX(1,n*k*k+(n+2)*k) integer intent(out):: info end subroutine mb02ed -subroutine mb03rd(jobx,sort,n,pmax,a,lda,x,ldx,nblcks,blsize,wr,wi,tol,dwork,info) ! in MB03RD.f +subroutine mb03rd(jobx,sort,n,pMAX,a,lda,x,ldx,nblcks,blsize,wr,wi,tol,dwork,info) ! in MB03RD.f character intent(in) :: jobx character intent(in),required :: sort integer intent(in),required,check(n>=0) :: n - double precision intent(in),required,check(pmax>=1.0) :: pmax + double precision intent(in),required,check(pMAX>=1.0) :: pMAX double precision intent(in,out,copy),dimension(lda,n),depend(n) :: a - integer intent(hide),check(lda>=max(1,n)),depend(a,n) :: lda=shape(a,0) + integer intent(hide),check(lda>=MAX(1,n)),depend(a,n) :: lda=shape(a,0) double precision intent(in,out,copy),dimension(ldx,n),depend(n) :: x - integer intent(hide),check((*jobx == 'N' && ldx>=1) || (*jobx == 'U' && ldx >= max(1,n))),depend(x,n,jobx) :: ldx=shape(x,0) + integer intent(hide),check((*jobx == 'N' && ldx>=1) || (*jobx == 'U' && ldx >= MAX(1,n))),depend(x,n,jobx) :: ldx=shape(x,0) integer intent(out) :: nblcks integer intent(out),dimension(n) :: blsize double precision intent(out),dimension(n) :: wr @@ -47,12 +47,12 @@ end subroutine mb03rd subroutine mb03vd(n,p,ilo,ihi,a,lda1,lda2,tau,ldtau,dwork,info) ! in MB03VD.f integer intent(in),check(n>=0) :: n integer intent(hide),depend(a),check(p>=1) :: p=shape(a,2) - integer intent(in),depend(n),check(1<=ilo && ilo<=max(1,n)) :: ilo + integer intent(in),depend(n),check(1<=ilo && ilo<=MAX(1,n)) :: ilo integer intent(in),depend(n,ilo),check(min(ilo,n)<=ihi && ihi<=n) :: ihi double precision intent(in,out,copy),dimension(lda1,lda2,p) :: a - integer intent(hide),depend(a,n),check(lda1>=max(1,n)) :: lda1=shape(a,0) - integer intent(hide),depend(a,n),check(lda2>=max(1,n)) :: lda2=shape(a,1) - double precision intent(out),depend(n,p),dimension(max(1,n-1),p) :: tau + integer intent(hide),depend(a,n),check(lda1>=MAX(1,n)) :: lda1=shape(a,0) + integer intent(hide),depend(a,n),check(lda2>=MAX(1,n)) :: lda2=shape(a,1) + double precision intent(out),depend(n,p),dimension(MAX(1,n-1),p) :: tau integer intent(hide),depend(tau) :: ldtau=shape(tau,0) double precision intent(hide,cache),depend(n),dimension(n) :: dwork integer intent(out) :: info @@ -61,15 +61,15 @@ end subroutine mb03vd subroutine mb03vy(n,p,ilo,ihi,a,lda1,lda2,tau,ldtau,dwork,ldwork,info) ! in MB03VY.f integer intent(in),check(n>=0) :: n integer intent(hide),depend(a),check(p>=1) :: p=shape(a,2) - integer intent(in),depend(n),check(1<=ilo && ilo<=max(1,n)) :: ilo + integer intent(in),depend(n),check(1<=ilo && ilo<=MAX(1,n)) :: ilo integer intent(in),depend(n,ilo),check(min(ilo,n)<=ihi && ihi<=n) :: ihi double precision intent(in,out,copy),dimension(lda1,lda2,p) :: a - integer intent(hide),depend(a,n),check(lda1>=max(1,n)) :: lda1=shape(a,0) - integer intent(hide),depend(a,n),check(lda2>=max(1,n)) :: lda2=shape(a,1) + integer intent(hide),depend(a,n),check(lda1>=MAX(1,n)) :: lda1=shape(a,0) + integer intent(hide),depend(a,n),check(lda2>=MAX(1,n)) :: lda2=shape(a,1) double precision intent(in),depend(n,p),dimension(ldtau,p) :: tau - integer intent(hide),depend(tau),check(ldtau>=max(1,n-1)) :: ldtau=shape(tau,0) - double precision intent(hide,cache),depend(ldwork),dimension(ldwork) :: dwork - integer intent(in),optional,check(ldwork>=max(1,n)) :: ldwork=max(1,n) + integer intent(hide),depend(tau),check(ldtau>=MAX(1,n-1)) :: ldtau=shape(tau,0) + double precision intent(hide,cache),depend(ldwork),dimension(ldwork),depend(ldwork) :: dwork + integer intent(in),optional,check(ldwork>=MAX(1,n)) :: ldwork=MAX(1,n) integer intent(out) :: info end subroutine mb03vy @@ -78,20 +78,20 @@ subroutine mb03wd(job,compz,n,p,ilo,ihi,iloz,ihiz,h,ldh1,ldh2,z,ldz1,ldz2,wr,wi, character intent(in) :: compz integer intent(in),check(n>=0) :: n integer intent(hide),depend(h),check(p>=1) :: p=shape(h,2) - integer intent(in),depend(n),check(1<=ilo && ilo<=max(1,n)) :: ilo + integer intent(in),depend(n),check(1<=ilo && ilo<=MAX(1,n)) :: ilo integer intent(in),depend(n,ilo),check(min(ilo,n)<=ihi && ihi<=n) :: ihi integer intent(in),depend(ilo),check(1<=iloz & iloz<=ilo) :: iloz integer intent(in),depend(n,ihi),check(ihi<=ihiz && ihiz<=n) :: ihiz double precision intent(in,out,copy),dimension(ldh1,ldh2,p) :: h - integer intent(hide),depend(h,n),check(ldh1>=max(1,n)) :: ldh1=shape(h,0) - integer intent(hide),depend(h,n),check(ldh2>=max(1,n)) :: ldh2=shape(h,1) + integer intent(hide),depend(h,n),check(ldh1>=MAX(1,n)) :: ldh1=shape(h,0) + integer intent(hide),depend(h,n),check(ldh2>=MAX(1,n)) :: ldh2=shape(h,1) double precision intent(in,out,copy),depend(p),dimension(ldz1,ldz2,p) :: z integer intent(hide),depend(z) :: ldz1=shape(z,0) integer intent(hide),depend(z) :: ldz2=shape(z,1) double precision intent(out), dimension(n), depend(n) :: wr double precision intent(out), dimension(n), depend(n) :: wi - double precision intent(hide,cache), dimension(ldwork) :: dwork - integer optional,check(ldwork>=ihi-ilo+p-1), depend(ihi,ilo,p) :: ldwork=max(1,ihi-ilo+p-1) + double precision intent(hide,cache), dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=ihi-ilo+p-1), depend(ihi,ilo,p) :: ldwork=MAX(1,ihi-ilo+p-1) integer intent(out) :: info end subroutine mb03wd @@ -124,7 +124,7 @@ subroutine mb05nd(n,delta,a,lda,ex,ldex,exint,ldexin,tol,iwork,dwork,ldwork,info integer intent(hide),check(shape(exint,0)==ldexin),depend(exint) :: ldexin=shape(exint,0) double precision required :: tol integer intent(cache,hide),dimension(n),depend(n) :: iwork - double precision intent(cache,hide),dimension(max(2*n*n,1)),depend(n) :: dwork + double precision intent(cache,hide),dimension(MAX(2*n*n,1)),depend(n) :: dwork integer intent(hide),depend(dwork):: ldwork=shape(dwork,0) integer intent(out) :: info end subroutine mb05nd diff --git a/slycot/src/synthesis.pyf b/slycot/src/synthesis.pyf index 1f797763..3383b75e 100644 --- a/slycot/src/synthesis.pyf +++ b/slycot/src/synthesis.pyf @@ -20,7 +20,7 @@ subroutine sb01bd(dico,n,m,np,alpha,a,lda,b,ldb,wr,wi,nfp,nap,nup,f,ldf,z,ldz,to integer intent(hide),depend(z) :: ldz=shape(z,0) double precision :: tol = 0 double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer :: ldwork = max(5*n,2*n+5*m)+1 + integer :: ldwork = MAX(5*n,2*n+5*m)+1 integer intent(out) :: iwarn integer intent(out) :: info end subroutine sb01bd @@ -47,8 +47,8 @@ subroutine sb02md(dico,hinv,uplo,scal,sort,n,a,lda,g,ldg,q,ldq,rcond,wr,wi,s,lds double precision intent(out),dimension(2*n,2*n),depend(n) :: s integer intent(hide),depend(s) :: lds=shape(s,0) integer intent(hide,cache),dimension(2*n),depend(n) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(3,6*n)),depend(n) :: ldwork=max(3,6*n) + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(3,6*n)),depend(n) :: ldwork=MAX(3,6*n) logical intent(hide,cache),dimension(2*n),depend(n) :: bwork end subroutine sb02md ! @@ -88,8 +88,8 @@ subroutine sb02od_n(dico,jobb,fact,uplo,jobl,sort,n,m,p,a,lda,b,ldb,q,ldq,r,ldr, double precision intent(hide),dimension(2*n,2*n) :: u ! not needed as jobb = 'B' integer intent(hide),depend(u) :: ldu=shape(u,0) double precision :: tol=0 - integer intent(hide,cache),dimension(max(2*n,m)),depend(n,m) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork + integer intent(hide,cache),dimension(MAX(2*n,m)),depend(n,m) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork integer optional :: ldwork=16*n+3*m+16 logical intent(hide,cache),dimension(2*n),depend(n) :: bwork integer intent(out) :: info @@ -128,8 +128,8 @@ subroutine sb02od_c(dico,jobb,fact,uplo,jobl,sort,n,m,p,a,lda,b,ldb,q,ldq,r,ldr, double precision intent(hide),dimension(2*n,2*n) :: u ! not needed as jobb = 'B' integer intent(hide),depend(u) :: ldu=shape(u,0) double precision :: tol=0 - integer intent(hide,cache),dimension(max(2*n,m)),depend(n,m) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork + integer intent(hide,cache),dimension(MAX(2*n,m)),depend(n,m) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork integer optional :: ldwork=16*n+3*m+16 logical intent(hide,cache),dimension(2*n),depend(n) :: bwork integer intent(out) :: info @@ -168,8 +168,8 @@ subroutine sb02od_d(dico,jobb,fact,uplo,jobl,sort,n,m,p,a,lda,b,ldb,q,ldq,r,ldr, double precision intent(hide),dimension(2*n,2*n) :: u ! not needed as jobb = 'B' integer intent(hide),depend(u) :: ldu=shape(u,0) double precision :: tol=0 - integer intent(hide,cache),dimension(max(2*n,m)),depend(n,m) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork + integer intent(hide,cache),dimension(MAX(2*n,m)),depend(n,m) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork integer optional :: ldwork=16*n+3*m+16 logical intent(hide,cache),dimension(2*n),depend(n) :: bwork integer intent(out) :: info @@ -208,8 +208,8 @@ subroutine sb02od_b(dico,jobb,fact,uplo,jobl,sort,n,m,p,a,lda,b,ldb,q,ldq,r,ldr, double precision intent(hide),dimension(2*n,2*n) :: u ! not needed as jobb = 'B' integer intent(hide),depend(u) :: ldu=shape(u,0) double precision :: tol=0 - integer intent(hide,cache),dimension(max(2*n,m)),depend(n,m) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork + integer intent(hide,cache),dimension(MAX(2*n,m)),depend(n,m) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork integer optional :: ldwork=16*n+3*m+16 logical intent(hide,cache),dimension(2*n),depend(n) :: bwork integer intent(out) :: info @@ -241,7 +241,7 @@ subroutine sb02mt_n(jobg,jobl,fact,uplo,n,m,a,lda,b,ldb,q,ldq,r,ldr,l,ldl,ipiv,o integer intent(hide),depend(g) :: ldg=shape(g,0) integer intent(hide,cache),dimension(m) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer :: ldwork = max(3,n)*m+2 + integer :: ldwork = MAX(3,n)*m+2 integer intent(out) :: info end subroutine sb02mt_n subroutine sb02mt_c(jobg,jobl,fact,uplo,n,m,a,lda,b,ldb,q,ldq,r,ldr,l,ldl,ipiv,oufact,g,ldg,iwork,dwork,ldwork,info) ! in SB02MT.f @@ -295,7 +295,7 @@ subroutine sb02mt_nl(jobg,jobl,fact,uplo,n,m,a,lda,b,ldb,q,ldq,r,ldr,l,ldl,ipiv, integer intent(hide),depend(g) :: ldg=shape(g,0) integer intent(hide,cache),dimension(m) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer :: ldwork = max(3,n)*m+2 + integer :: ldwork = MAX(3,n)*m+2 integer intent(out) :: info end subroutine sb02mt_nl subroutine sb02mt_cl(jobg,jobl,fact,uplo,n,m,a,lda,b,ldb,q,ldq,r,ldr,l,ldl,ipiv,oufact,g,ldg,iwork,dwork,ldwork,info) ! in SB02MT.f @@ -344,8 +344,8 @@ subroutine sb03md(dico,job,fact,trana,n,a,lda,u,ldu,c,ldc,scale,sep,ferr,wr,wi,i double precision intent(out),dimension(n),depend(n) :: wr double precision intent(out),dimension(n),depend(n) :: wi integer intent(hide,cache),dimension(n*n),depend(n) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(2*n*n,3*n)),depend(n) :: ldwork=max(2*n*n,3*n) + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(2*n*n,3*n)),depend(n) :: ldwork=MAX(2*n*n,3*n) integer intent(out) :: info end subroutine sb03md subroutine sb03od(dico,fact,trans,n,m,a,lda,q,ldq,b,ldb,scale,wr,wi,dwork,ldwork,info) ! in SB03OD.f @@ -364,8 +364,8 @@ subroutine sb03od(dico,fact,trans,n,m,a,lda,q,ldq,b,ldb,scale,wr,wi,dwork,ldwork double precision intent(out) :: scale double precision intent(out),dimension(n),depend(n) :: wr double precision intent(out),dimension(n),depend(n) :: wi - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(1,4*n)),depend(n,m) :: ldwork=max(1,4*n) + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(1,4*n)),depend(n,m) :: ldwork=MAX(1,4*n) integer intent(out) :: info end subroutine sb03od subroutine sb04md(n,m,a,lda,b,ldb,c,ldc,z,ldz,iwork,dwork,ldwork,info) ! in SB04MD.f @@ -380,8 +380,8 @@ subroutine sb04md(n,m,a,lda,b,ldb,c,ldc,z,ldz,iwork,dwork,ldwork,info) ! in SB04 double precision intent(out),dimension(m,m),depend(m) :: z integer intent(hide),depend(z) :: ldz=shape(z,0) integer intent(hide,cache),dimension(4*n),depend(n) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional,depend(n,m) :: ldwork = max(2*n*n+8*n,max(5*m,n+m)) + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional,depend(n,m) :: ldwork = MAX(2*n*n+8*n,MAX(5*m,n+m)) integer intent(out) :: info end subroutine sb04md subroutine sb04qd(n,m,a,lda,b,ldb,c,ldc,z,ldz,iwork,dwork,ldwork,info) ! in SB04QD.f @@ -397,8 +397,8 @@ subroutine sb04qd(n,m,a,lda,b,ldb,c,ldc,z,ldz,iwork,dwork,ldwork,info) ! in SB04 double precision intent(out),dimension(m,m),depend(m) :: z integer intent(hide),depend(z) :: ldz=shape(z,0) integer intent(hide,cache),dimension(4*n),depend(n) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional,depend(n,m) :: ldwork = max(2*n*n+9*n,max(5*m,n+m)) + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional,depend(n,m) :: ldwork = MAX(2*n*n+9*n,MAX(5*m,n+m)) integer intent(out) :: info end subroutine sb04qd subroutine sb10ad(job,n,m,np,ncon,nmeas,gamma,a,lda,b,ldb,c,ldc,d,ldd,ak,ldak,bk,ldbk,ck,ldck,dk,lddk,ac,ldac,bc,ldbc,cc,ldcc,dc,lddc,rcond,gtol,actol,iwork,liwork,dwork,ldwork,bwork,lbwork,info) ! in :python-control:SB10AD.f @@ -483,8 +483,8 @@ subroutine sb10dd(n,m,np,ncon,nmeas,gamma,a,lda,b,ldb,c,ldc,d,ldd,ak,ldak,bk,ldb integer intent(hide), depend(z) :: ldz=shape(z,0) double precision intent(out), dimension(8) :: rcond double precision optional :: tol=0.0 - ! integer intent(hide,cache), dimension(max(2*max(m,n),max(m,max(m+np,n*n)))), depend(n,m,np,ncon,nmeas) :: iwork - integer intent(hide), dimension(max(2*max(max(max(max(n,m-ncon),np-nmeas),ncon),nmeas),n*n)), depend(n,m,np,ncon,nmeas) :: iwork + ! integer intent(hide,cache), dimension(MAX(2*MAX(m,n),MAX(m,MAX(m+np,n*n)))), depend(n,m,np,ncon,nmeas) :: iwork + integer intent(hide), dimension(MAX(2*MAX(MAX(MAX(MAX(n,m-ncon),np-nmeas),ncon),nmeas),n*n)), depend(n,m,np,ncon,nmeas) :: iwork double precision intent(hide,cache), dimension(ldwork), depend(ldwork) :: dwork integer optional :: ldwork logical intent(hide,cache), dimension(2*n), depend(n) :: bwork @@ -515,7 +515,7 @@ subroutine sb10fd(n,m,np,ncon,nmeas,gamma,a,lda,b,ldb,c,ldc,d,ldd,ak,ldak,bk,ldb integer intent(hide),depend(dk) :: lddk=shape(dk,0) double precision intent(out),dimension(4) :: rcond double precision intent(in) :: tol - integer intent(hide,cache),dimension(max(2*max(n,m-ncon),2*max(np-nmeas,ncon)),n*n),depend(n,m,ncon,np,nmeas) :: iwork + integer intent(hide,cache),dimension(MAX(2*MAX(n,m-ncon),2*MAX(np-nmeas,ncon)),n*n),depend(n,m,ncon,np,nmeas) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork integer intent(in) :: ldwork logical intent(hide,cache),dimension(2*n),depend(n) :: bwork @@ -550,7 +550,7 @@ subroutine sb10hd(n,m,np,ncon,nmeas,a,lda,b,ldb,c,ldc,d,ldd,ak,ldak,bk,ldbk,ck,l integer intent(hide), depend(dk) :: lddk=shape(dk,0) double precision intent(out), dimension(4) :: rcond double precision optional:: tol=0.0 - integer intent(hide), dimension(max(2*n,n*n)), depend(n) :: iwork + integer intent(hide), dimension(MAX(2*n,n*n)), depend(n) :: iwork double precision intent(hide), dimension(ldwork), depend(ldwork) :: dwork integer optional:: ldwork logical intent(hide), dimension(2*n), depend(n) :: bwork @@ -584,12 +584,12 @@ subroutine sb10yd(discfl,flag,lendat,rfrdat,ifrdat,omega,n,a,lda,b,c,d,tol,iwork double precision intent(in), dimension(lendat), depend(lendat) :: omega integer intent(in,out,copy), :: n double precision intent(out), dimension(lda,n) :: a - integer, intent(hide) :: lda=max(n,1) + integer, intent(hide) :: lda=MAX(n,1) double precision intent(out), dimension(n,1) :: b double precision intent(out), dimension(1,n) :: c double precision intent(out), dimension(1,1) :: d double precision :: tol - integer intent(hide, cache), dimension(max(2,2*n+1)), depend(n) :: iwork + integer intent(hide, cache), dimension(MAX(2,2*n+1)), depend(n) :: iwork double precision intent(hide, cache), dimension(ldwork), depend(ldwork) :: dwork integer intent(in) :: ldwork complex*16 intent(hide, cache), dimension(lzwork), depend(lzwork) :: zwork @@ -620,8 +620,8 @@ subroutine sg03ad(dico,job,fact,trans,uplo,n,a,lda,e,lde,q,ldq,z,ldz,x,ldx,scale double precision intent(out), dimension(n), depend(n) :: alphai double precision intent(out), dimension(n), depend(n) :: beta integer intent(hide,cache),dimension(n*n),depend(n) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(1,max(2*n*n,8*n+16))),depend(n) :: ldwork=max(1,max(2*n*n,8*n+16)) + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(1,MAX(2*n*n,8*n+16))),depend(n) :: ldwork=MAX(1,MAX(2*n*n,8*n+16)) integer intent(out) :: info end subroutine sg03ad subroutine sg02ad_g(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b,ldb,q,ldq,r,ldr,l,ldl,rcondu,x,ldx,alfar,alfai,beta,s,lds,t,ldt,u,ldu,tol,iwork,dwork,ldwork,bwork,iwarn,info) ! in SG02AD.f @@ -637,34 +637,34 @@ subroutine sg02ad_g(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b,l integer intent(input), (check n>=0) :: n integer intent(hide), (check m>=0) :: m = 0 ! Unused for jobb = 'G' integer intent(hide) :: p = 0 ! Unused for jobb = 'G'' - double precision dimension(max(1,n),n), depend(n) :: a + double precision dimension(MAX(1,n),n), depend(n) :: a integer intent(hide), depend(a) :: lda=shape(a,0) - double precision dimension(max(1,n),n), depend(n) :: e + double precision dimension(MAX(1,n),n), depend(n) :: e integer intent(hide), depend(e) :: lde=shape(e,0) - double precision dimension(max(1,n),n), depend(n) :: b + double precision dimension(MAX(1,n),n), depend(n) :: b integer intent(hide), depend(b) :: ldb=shape(b,0) - double precision dimension(max(1,n),n), depend(n) :: q + double precision dimension(MAX(1,n),n), depend(n) :: q integer intent(hide), depend(q) :: ldq=shape(q,0) double precision intent(hide), dimension(1,1) :: r ! Unused for jobb = 'G' integer intent(hide), depend(r) :: ldr=shape(r,0) double precision intent(hide), dimension(1,1) :: l ! Unused for jobb = 'G' integer intent(hide), depend(l) :: ldl=shape(l,0) ! Unused for jobb = 'G' double precision intent(out) :: rcondu - double precision intent(out), dimension(max(1,n),n), depend(n) :: x + double precision intent(out), dimension(MAX(1,n),n), depend(n) :: x integer intent(hide), depend(x) :: ldx=shape(x,0) double precision intent(out), dimension(2*n), depend(n) :: alfar double precision intent(out), dimension(2*n), depend(n) :: alfai double precision intent(out), dimension(2*n), depend(n) :: beta - double precision intent(out), dimension(max(1,2*n),2*n), depend(n) :: s + double precision intent(out), dimension(MAX(1,2*n),2*n), depend(n) :: s integer intent(hide), depend(s) :: lds=shape(s,0) - double precision intent(out), dimension(max(1,2*n),2*n), depend(n) :: t + double precision intent(out), dimension(MAX(1,2*n),2*n), depend(n) :: t integer intent(hide), depend(t) :: ldt=shape(t,0) - double precision intent(out), dimension(max(1,2*n),2*n), depend(n) :: u + double precision intent(out), dimension(MAX(1,2*n),2*n), depend(n) :: u integer intent(hide), depend(u) :: ldu=shape(u,0) double precision intent(hide) :: tol = 0 ! Unused for jobb = 'G' integer intent(hide,cache), dimension(2*n), depend(n) :: iwork ! Since jobb = 'G' - double precision intent(hide,cache), dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(7*(2*n+1)+16,max(16*n,8*n+16))),depend(n) :: ldwork=max(7*(2*n+1)+16,max(16*n,8*n+16)) + double precision intent(hide,cache), dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(7*(2*n+1)+16,MAX(16*n,8*n+16))),depend(n) :: ldwork=MAX(7*(2*n+1)+16,MAX(16*n,8*n+16)) logical intent(hide,cache), dimension(2*n), depend(n) :: bwork integer intent(out) :: iwarn integer intent(out) :: info @@ -682,34 +682,34 @@ subroutine sg02ad_bn(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b, integer (check n>=0) :: n integer (check m>=0) :: m integer intent(hide) :: p = 0 ! Unused for fact = 'N' - double precision dimension(max(1,n),n), depend(n) :: a + double precision dimension(MAX(1,n),n), depend(n) :: a integer intent(hide), depend(a) :: lda=shape(a,0) - double precision dimension(max(1,n),n), depend(n) :: e + double precision dimension(MAX(1,n),n), depend(n) :: e integer intent(hide), depend(e) :: lde=shape(e,0) - double precision dimension(max(1,n),m), depend(n,m) :: b + double precision dimension(MAX(1,n),m), depend(n,m) :: b integer intent(hide), depend(b) :: ldb=shape(b,0) - double precision dimension(max(1,n),n), depend(n) :: q + double precision dimension(MAX(1,n),n), depend(n) :: q integer intent(hide), depend(q) :: ldq=shape(q,0) - double precision dimension(max(1,m),m), depend(m) :: r ! fact = 'N' + double precision dimension(MAX(1,m),m), depend(m) :: r ! fact = 'N' integer intent(hide), depend(r) :: ldr=shape(r,0) - double precision dimension(max(1,n),m), depend(n,m) :: l ! It would be nicer to not force the dimension here when not used + double precision dimension(MAX(1,n),m), depend(n,m) :: l ! It would be nicer to not force the dimension here when not used integer intent(hide), depend(l) :: ldl=shape(l,0) double precision intent(out) :: rcondu - double precision intent(out), dimension(max(1,n),n), depend(n) :: x + double precision intent(out), dimension(MAX(1,n),n), depend(n) :: x integer intent(hide), depend(x) :: ldx=shape(x,0) double precision intent(out), dimension(2*n), depend(n) :: alfar double precision intent(out), dimension(2*n), depend(n) :: alfai double precision intent(out), dimension(2*n), depend(n) :: beta - double precision intent(out), dimension(max(1,2*n+m),2*n+m), depend(n,m) :: s + double precision intent(out), dimension(MAX(1,2*n+m),2*n+m), depend(n,m) :: s integer intent(hide), depend(s) :: lds=shape(s,0) - double precision intent(out), dimension(max(1,2*n+m),2*n), depend(n,m) :: t + double precision intent(out), dimension(MAX(1,2*n+m),2*n), depend(n,m) :: t integer intent(hide), depend(t) :: ldt=shape(t,0) - double precision intent(out), dimension(max(1,2*n),2*n), depend(n) :: u + double precision intent(out), dimension(MAX(1,2*n),2*n), depend(n) :: u integer intent(hide), depend(u) :: ldu=shape(u,0) double precision optional :: tol = -1 - integer intent(hide,cache), dimension(max(m,2*n)), depend(n,m) :: iwork ! Since jobb = 'B' - double precision intent(hide,cache), dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(3*m,max(2*n+m,max(7*(2*n+1)+16,max(16*n,8*n+16))))),depend(n,m) :: ldwork=max(3*m,max(2*n+m,max(7*(2*n+1)+16,max(16*n,8*n+16)))) + integer intent(hide,cache), dimension(MAX(m,2*n)), depend(n,m) :: iwork ! Since jobb = 'B' + double precision intent(hide,cache), dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(3*m,MAX(2*n+m,MAX(7*(2*n+1)+16,MAX(16*n,8*n+16))))),depend(n,m) :: ldwork=MAX(3*m,MAX(2*n+m,MAX(7*(2*n+1)+16,MAX(16*n,8*n+16)))) logical intent(hide,cache), dimension(2*n), depend(n) :: bwork integer intent(out) :: iwarn integer intent(out) :: info @@ -727,17 +727,17 @@ subroutine sg02ad_bc(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b, integer (check n>=0) :: n integer (check m>=0) :: m integer (check p>=0) :: p - double precision dimension(max(1,n),n), depend(n) :: a + double precision dimension(MAX(1,n),n), depend(n) :: a integer intent(hide), depend(a) :: lda=shape(a,0) - double precision dimension(max(1,n),n), depend(n) :: e + double precision dimension(MAX(1,n),n), depend(n) :: e integer intent(hide), depend(e) :: lde=shape(e,0) - double precision dimension(max(1,n),m), depend(n,m) :: b + double precision dimension(MAX(1,n),m), depend(n,m) :: b integer intent(hide), depend(b) :: ldb=shape(b,0) - double precision dimension(max(1,p),n), depend(p,n) :: q ! fact = 'C' + double precision dimension(MAX(1,p),n), depend(p,n) :: q ! fact = 'C' integer intent(hide), depend(q) :: ldq=shape(q,0) - double precision dimension(max(1,m),m), depend(m) :: r ! fact = 'C' + double precision dimension(MAX(1,m),m), depend(m) :: r ! fact = 'C' integer intent(hide), depend(r) :: ldr=shape(r,0) - double precision dimension(max(1,n),m), depend(n,m) :: l ! It would be nicer to not force the dimension here when not used + double precision dimension(MAX(1,n),m), depend(n,m) :: l ! It would be nicer to not force the dimension here when not used integer intent(hide), depend(l) :: ldl=shape(l,0) double precision intent(out) :: rcondu double precision intent(out), dimension(n,n), depend(n) :: x @@ -745,16 +745,16 @@ subroutine sg02ad_bc(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b, double precision intent(out), dimension(2*n), depend(n) :: alfar double precision intent(out), dimension(2*n), depend(n) :: alfai double precision intent(out), dimension(2*n), depend(n) :: beta - double precision intent(out), dimension(max(1,2*n+m),2*n+m), depend(n,m) :: s + double precision intent(out), dimension(MAX(1,2*n+m),2*n+m), depend(n,m) :: s integer intent(hide), depend(s) :: lds=shape(s,0) - double precision intent(out), dimension(max(1,2*n+m),2*n), depend(n,m) :: t + double precision intent(out), dimension(MAX(1,2*n+m),2*n), depend(n,m) :: t integer intent(hide), depend(t) :: ldt=shape(t,0) - double precision intent(out), dimension(max(1,2*n),2*n), depend(n) :: u + double precision intent(out), dimension(MAX(1,2*n),2*n), depend(n) :: u integer intent(hide), depend(u) :: ldu=shape(u,0) double precision optional :: tol = -1 - integer intent(hide,cache), dimension(max(m,2*n)), depend(n,m) :: iwork ! Since jobb = 'B' - double precision intent(hide,cache), dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(3*m,max(2*n+m,max(7*(2*n+1)+16,max(16*n,8*n+16))))),depend(n,m) :: ldwork=max(3*m,max(2*n+m,max(7*(2*n+1)+16,max(16*n,8*n+16)))) + integer intent(hide,cache), dimension(MAX(m,2*n)), depend(n,m) :: iwork ! Since jobb = 'B' + double precision intent(hide,cache), dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(3*m,MAX(2*n+m,MAX(7*(2*n+1)+16,MAX(16*n,8*n+16))))),depend(n,m) :: ldwork=MAX(3*m,MAX(2*n+m,MAX(7*(2*n+1)+16,MAX(16*n,8*n+16)))) logical intent(hide,cache), dimension(2*n), depend(n) :: bwork integer intent(out) :: iwarn integer intent(out) :: info @@ -772,17 +772,17 @@ subroutine sg02ad_bd(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b, integer (check n>=0) :: n integer (check m>=0) :: m integer (check p>=0) :: p - double precision dimension(max(1,n),n), depend(n) :: a + double precision dimension(MAX(1,n),n), depend(n) :: a integer intent(hide), depend(a) :: lda=shape(a,0) - double precision dimension(max(1,n),n), depend(n) :: e + double precision dimension(MAX(1,n),n), depend(n) :: e integer intent(hide), depend(e) :: lde=shape(e,0) - double precision dimension(max(1,n),m), depend(n,m) :: b + double precision dimension(MAX(1,n),m), depend(n,m) :: b integer intent(hide), depend(b) :: ldb=shape(b,0) - double precision dimension(max(1,n),n), depend(n) :: q ! fact = 'D' + double precision dimension(MAX(1,n),n), depend(n) :: q ! fact = 'D' integer intent(hide), depend(q) :: ldq=shape(q,0) - double precision dimension(max(1,p),m), depend(p,m) :: r ! fact = 'D' + double precision dimension(MAX(1,p),m), depend(p,m) :: r ! fact = 'D' integer intent(hide), depend(r) :: ldr=shape(r,0) - double precision dimension(max(1,n),m), depend(n,m) :: l ! It would be nicer to not force the dimension here when not used + double precision dimension(MAX(1,n),m), depend(n,m) :: l ! It would be nicer to not force the dimension here when not used integer intent(hide), depend(l) :: ldl=shape(l,0) double precision intent(out) :: rcondu double precision intent(out), dimension(n,n), depend(n) :: x @@ -790,16 +790,16 @@ subroutine sg02ad_bd(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b, double precision intent(out), dimension(2*n), depend(n) :: alfar double precision intent(out), dimension(2*n), depend(n) :: alfai double precision intent(out), dimension(2*n), depend(n) :: beta - double precision intent(out), dimension(max(1,2*n+m),2*n+m), depend(n,m) :: s + double precision intent(out), dimension(MAX(1,2*n+m),2*n+m), depend(n,m) :: s integer intent(hide), depend(s) :: lds=shape(s,0) - double precision intent(out), dimension(max(1,2*n+m),2*n), depend(n,m) :: t + double precision intent(out), dimension(MAX(1,2*n+m),2*n), depend(n,m) :: t integer intent(hide), depend(t) :: ldt=shape(t,0) - double precision intent(out), dimension(max(1,2*n),2*n), depend(n) :: u + double precision intent(out), dimension(MAX(1,2*n),2*n), depend(n) :: u integer intent(hide), depend(u) :: ldu=shape(u,0) double precision optional :: tol = -1 - integer intent(hide,cache), dimension(max(m,2*n)), depend(n,m) :: iwork ! Since jobb = 'B' - double precision intent(hide,cache), dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(3*m,max(2*n+m,max(7*(2*n+1)+16,max(16*n,8*n+16))))),depend(n,m) :: ldwork=max(3*m,max(2*n+m,max(7*(2*n+1)+16,max(16*n,8*n+16)))) + integer intent(hide,cache), dimension(MAX(m,2*n)), depend(n,m) :: iwork ! Since jobb = 'B' + double precision intent(hide,cache), dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(3*m,MAX(2*n+m,MAX(7*(2*n+1)+16,MAX(16*n,8*n+16))))),depend(n,m) :: ldwork=MAX(3*m,MAX(2*n+m,MAX(7*(2*n+1)+16,MAX(16*n,8*n+16)))) logical intent(hide,cache), dimension(2*n), depend(n) :: bwork integer intent(out) :: iwarn integer intent(out) :: info @@ -817,17 +817,17 @@ subroutine sg02ad_bb(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b, integer (check n>=0) :: n integer (check m>=0) :: m integer (check p>=0) :: p - double precision dimension(max(1,n),n), depend(n) :: a + double precision dimension(MAX(1,n),n), depend(n) :: a integer intent(hide), depend(a) :: lda=shape(a,0) - double precision dimension(max(1,n),n), depend(n) :: e + double precision dimension(MAX(1,n),n), depend(n) :: e integer intent(hide), depend(e) :: lde=shape(e,0) - double precision dimension(max(1,n),m), depend(n,m) :: b + double precision dimension(MAX(1,n),m), depend(n,m) :: b integer intent(hide), depend(b) :: ldb=shape(b,0) - double precision dimension(max(1,p),n), depend(p,n) :: q ! fact = 'B' + double precision dimension(MAX(1,p),n), depend(p,n) :: q ! fact = 'B' integer intent(hide), depend(q) :: ldq=shape(q,0) - double precision dimension(max(1,p),m), depend(p,m) :: r ! fact = 'B' + double precision dimension(MAX(1,p),m), depend(p,m) :: r ! fact = 'B' integer intent(hide), depend(r) :: ldr=shape(r,0) - double precision dimension(max(1,n),m), depend(n,m) :: l ! It would be nicer to not force the dimension here when not used + double precision dimension(MAX(1,n),m), depend(n,m) :: l ! It would be nicer to not force the dimension here when not used integer intent(hide), depend(l) :: ldl=shape(l,0) double precision intent(out) :: rcondu double precision intent(out), dimension(n,n), depend(n) :: x @@ -835,16 +835,16 @@ subroutine sg02ad_bb(dico,jobb,fact,uplo,jobl,scal,sort,acc,n,m,p,a,lda,e,lde,b, double precision intent(out), dimension(2*n), depend(n) :: alfar double precision intent(out), dimension(2*n), depend(n) :: alfai double precision intent(out), dimension(2*n), depend(n) :: beta - double precision intent(out), dimension(max(1,2*n+m),2*n+m), depend(n,m) :: s + double precision intent(out), dimension(MAX(1,2*n+m),2*n+m), depend(n,m) :: s integer intent(hide), depend(s) :: lds=shape(s,0) - double precision intent(out), dimension(max(1,2*n+m),2*n), depend(n,m) :: t + double precision intent(out), dimension(MAX(1,2*n+m),2*n), depend(n,m) :: t integer intent(hide), depend(t) :: ldt=shape(t,0) - double precision intent(out), dimension(max(1,2*n),2*n), depend(n) :: u + double precision intent(out), dimension(MAX(1,2*n),2*n), depend(n) :: u integer intent(hide), depend(u) :: ldu=shape(u,0) double precision optional :: tol = -1 - integer intent(hide,cache), dimension(max(m,2*n)), depend(n) :: iwork ! Since jobb = 'B' - double precision intent(hide,cache), dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(3*m,max(2*n+m,max(7*(2*n+1)+16,max(16*n,8*n+16))))),depend(n,m) :: ldwork=max(3*m,max(2*n+m,max(7*(2*n+1)+16,max(8*n+16,16*n)))) + integer intent(hide,cache), dimension(MAX(m,2*n)), depend(n) :: iwork ! Since jobb = 'B' + double precision intent(hide,cache), dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(3*m,MAX(2*n+m,MAX(7*(2*n+1)+16,MAX(16*n,8*n+16))))),depend(n,m) :: ldwork=MAX(3*m,MAX(2*n+m,MAX(7*(2*n+1)+16,MAX(8*n+16,16*n)))) logical intent(hide,cache), dimension(2*n), depend(n) :: bwork integer intent(out) :: iwarn integer intent(out) :: info @@ -864,13 +864,13 @@ subroutine sg03bd(dico,fact,trans,n,m,a,lda,e,lde,q,ldq,z,ldz,b,ldb,scale,alphar integer intent(hide),depend(q) :: ldq=shape(q,0) double precision dimension(n,n),depend(n) :: z integer intent(hide),depend(z) :: ldz=shape(z,0) - double precision intent(in,out,copy),dimension(max(m,n),n),depend(m,n) :: b + double precision intent(in,out,copy),dimension(MAX(m,n),n),depend(m,n) :: b integer intent(hide),depend(b) :: ldb=shape(b,0) double precision intent(out) :: scale double precision intent(out),dimension(n),depend(n) :: alphar double precision intent(out),dimension(n),depend(n) :: alphai double precision intent(out),dimension(n),depend(n) :: beta - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional,check(ldwork>=max(4*n,6*n-6)),depend(n,m) :: ldwork=max(4*n,6*n-6) + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional,check(ldwork>=MAX(4*n,6*n-6)),depend(n,m) :: ldwork=MAX(4*n,6*n-6) integer intent(out) :: info end subroutine sg03bd diff --git a/slycot/src/transform.pyf b/slycot/src/transform.pyf index 524996aa..c9999773 100644 --- a/slycot/src/transform.pyf +++ b/slycot/src/transform.pyf @@ -1,12 +1,12 @@ ! -*- f90 -*- ! Note: the context of this file is case sensitive. -subroutine tb01id(job,n,m,p,maxred,a,lda,b,ldb,c,ldc,scale,info) ! in TB01ID.f +subroutine tb01id(job,n,m,p,MAXred,a,lda,b,ldb,c,ldc,scale,info) ! in TB01ID.f character intent(in) :: job = 'A' integer required,check(n>0) :: n integer required,check(m>0) :: m integer required,check(p>0) :: p - double precision intent(in,out),check(maxred<=0 || maxred>1) :: maxred + double precision intent(in,out),check(MAXred<=0 || MAXred>1) :: MAXred double precision intent(in,out,copy),dimension(n,n),depend(n) :: a integer intent(hide),depend(a) :: lda=shape(a,0) double precision intent(in,out,copy),dimension(n,m),depend(n,m) :: b @@ -25,11 +25,11 @@ subroutine tb03ad_l(leri,equil,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nr,index_bn,pcoeff, integer check(p>0) :: p double precision intent(in,out),dimension(n,n),depend(n) :: a integer intent(hide),depend(a) :: lda=shape(a,0) - double precision intent(in,out),dimension(n,max(m,p)),depend(n,m,p) :: b + double precision intent(in,out),dimension(n,MAX(m,p)),depend(n,m,p) :: b integer intent(hide),depend(b) :: ldb=shape(b,0) - double precision intent(in,out),dimension(max(m,p),n),depend(n,m,p) :: c + double precision intent(in,out),dimension(MAX(m,p),n),depend(n,m,p) :: c integer intent(hide),depend(c) :: ldc=shape(c,0) - double precision dimension(max(m,p),max(m,p)),depend(m,p) :: d + double precision dimension(MAX(m,p),MAX(m,p)),depend(m,p) :: d integer intent(hide),depend(d) :: ldd=shape(d,0) integer intent(out) :: nr integer intent(out),dimension(p) :: index_bn @@ -43,9 +43,9 @@ subroutine tb03ad_l(leri,equil,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nr,index_bn,pcoeff, integer intent(hide),depend(vcoeff) :: ldvco1=shape(vcoeff,0) integer intent(hide),depend(vcoeff) :: ldvco2=shape(vcoeff,1) double precision :: tol = 0 - integer intent(hide,cache),dimension(n+max(m,p)) :: iwork + integer intent(hide,cache),dimension(n+MAX(m,p)) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer :: ldwork = max( 2*n + 3*max(m,p), p*(p+2)) + integer :: ldwork = MAX( 2*n + 3*MAX(m,p), p*(p+2)) integer intent(out) :: info end subroutine tb03ad_l subroutine tb03ad_r(leri,equil,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nr,index_bn,pcoeff,ldpco1,ldpco2,qcoeff,ldqco1,ldqco2,vcoeff,ldvco1,ldvco2,tol,iwork,dwork,ldwork,info) ! in :new:TB03AD.f @@ -57,27 +57,27 @@ subroutine tb03ad_r(leri,equil,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nr,index_bn,pcoeff, integer check(p>0) :: p double precision intent(in,out),dimension(n,n),depend(n) :: a integer intent(hide),depend(a) :: lda=shape(a,0) - double precision intent(in,out),dimension(n,max(m,p)),depend(n,m,p) :: b + double precision intent(in,out),dimension(n,MAX(m,p)),depend(n,m,p) :: b integer intent(hide),depend(b) :: ldb=shape(b,0) - double precision intent(in,out),dimension(max(m,p),n),depend(n,m,p) :: c + double precision intent(in,out),dimension(MAX(m,p),n),depend(n,m,p) :: c integer intent(hide),depend(c) :: ldc=shape(c,0) - double precision dimension(max(m,p),max(m,p)),depend(m,p) :: d + double precision dimension(MAX(m,p),MAX(m,p)),depend(m,p) :: d integer intent(hide),depend(d) :: ldd=shape(d,0) integer intent(out) :: nr integer intent(out),dimension(m) :: index_bn double precision intent(out),dimension(m,m,n+1) :: pcoeff integer intent(hide),depend(pcoeff) :: ldpco1=shape(pcoeff,0) integer intent(hide),depend(pcoeff) :: ldpco2=shape(pcoeff,1) - double precision intent(out),dimension(max(m,p),max(m,p),n+1) :: qcoeff + double precision intent(out),dimension(MAX(m,p),MAX(m,p),n+1) :: qcoeff integer intent(hide),depend(qcoeff) :: ldqco1=shape(qcoeff,0) integer intent(hide),depend(qcoeff) :: ldqco2=shape(qcoeff,1) double precision intent(out),dimension(m,n,n+1) :: vcoeff integer intent(hide),depend(vcoeff) :: ldvco1=shape(vcoeff,0) integer intent(hide),depend(vcoeff) :: ldvco2=shape(vcoeff,1) double precision :: tol = 0 - integer intent(hide,cache),dimension(n+max(m,p)) :: iwork + integer intent(hide,cache),dimension(n+MAX(m,p)) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer :: ldwork = max( 2*n + 3*max(m,p), m*(m+2)) + integer :: ldwork = MAX( 2*n + 3*MAX(m,p), m*(m+2)) integer intent(out) :: info end subroutine tb03ad_r subroutine tb04ad_r(rowcol,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nr,index_bn,dcoeff,lddcoe,ucoeff,lduco1,lduco2,tol1,tol2,iwork,dwork,ldwork,info) ! in TB04AD.f @@ -86,26 +86,26 @@ subroutine tb04ad_r(rowcol,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nr,index_bn,dcoeff,lddc integer check(n>=0) :: n integer check(m>=0) :: m integer check(p>=0) :: p - double precision intent(in,out,copy), dimension(max(1,n),n),depend(n) :: a + double precision intent(in,out,copy), dimension(MAX(1,n),n),depend(n) :: a integer intent(hide),depend(a) :: lda=shape(a,0) - double precision intent(in,out,copy),dimension(max(1,n),m),depend(n,m) :: b + double precision intent(in,out,copy),dimension(MAX(1,n),m),depend(n,m) :: b integer intent(hide),depend(b) :: ldb=shape(b,0) - double precision intent(in,out,copy),dimension(max(1,p),n),depend(n,p) :: c + double precision intent(in,out,copy),dimension(MAX(1,p),n),depend(n,p) :: c integer intent(hide),depend(c) :: ldc=shape(c,0) - double precision intent(in),dimension(max(1,p),m),depend(m,p) :: d + double precision intent(in),dimension(MAX(1,p),m),depend(m,p) :: d integer intent(hide),depend(d) :: ldd=shape(d,0) integer intent(out) :: nr integer intent(out),dimension(p),depend(p) :: index_bn - double precision intent(out),dimension(max(1,p),n+1),depend(p,n) :: dcoeff + double precision intent(out),dimension(MAX(1,p),n+1),depend(p,n) :: dcoeff integer intent(hide),depend(dcoeff) :: lddcoe=shape(dcoeff,0) - double precision intent(out),dimension(max(1,p),max(1,m),n+1),depend(p,m,n) :: ucoeff + double precision intent(out),dimension(MAX(1,p),MAX(1,m),n+1),depend(p,m,n) :: ucoeff integer intent(hide),depend(ucoeff) :: lduco1=shape(ucoeff,0) integer intent(hide),depend(ucoeff) :: lduco2=shape(ucoeff,1) double precision :: tol1 = 0 double precision :: tol2 = 0 - integer intent(hide,cache),dimension(n+max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,n*(n+1)+max(n*m+2*n+max(n,m),max(3*m,p))) + integer intent(hide,cache),dimension(n+MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(n+1)+MAX(n*m+2*n+MAX(n,m),MAX(3*m,p))) integer intent(out) :: info end subroutine tb04ad_r subroutine tb04ad_c(rowcol,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nr,index_bn,dcoeff,lddcoe,ucoeff,lduco1,lduco2,tol1,tol2,iwork,dwork,ldwork,info) ! in TB04AD.f @@ -114,26 +114,26 @@ subroutine tb04ad_c(rowcol,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nr,index_bn,dcoeff,lddc integer check(n>=0) :: n integer check(m>=0) :: m integer check(p>=0) :: p - double precision intent(in,out,copy), dimension(max(1,n),n),depend(n) :: a + double precision intent(in,out,copy), dimension(MAX(1,n),n),depend(n) :: a integer intent(hide),depend(a) :: lda=shape(a,0) - double precision intent(in,out,copy),dimension(max(1,n),max(m,p)),depend(n,m,p) :: b + double precision intent(in,out,copy),dimension(MAX(1,n),MAX(m,p)),depend(n,m,p) :: b integer intent(hide),depend(b) :: ldb=shape(b,0) - double precision intent(in,out,copy),dimension(max(1,max(m,p)),n),depend(n,m,p) :: c + double precision intent(in,out,copy),dimension(MAX(1,MAX(m,p)),n),depend(n,m,p) :: c integer intent(hide),depend(c) :: ldc=shape(c,0) - double precision intent(in),dimension(max(1,max(m,p)),max(m,p)),depend(m,p) :: d + double precision intent(in),dimension(MAX(1,MAX(m,p)),MAX(m,p)),depend(m,p) :: d integer intent(hide),depend(d) :: ldd=shape(d,0) integer intent(out) :: nr integer intent(out),dimension(m),depend(m) :: index_bn - double precision intent(out),dimension(max(1,m),n+1),depend(m,n) :: dcoeff + double precision intent(out),dimension(MAX(1,m),n+1),depend(m,n) :: dcoeff integer intent(hide),depend(dcoeff) :: lddcoe=shape(dcoeff,0) - double precision intent(out),dimension(max(1,m),max(1,p),n+1),depend(m,p,n) :: ucoeff + double precision intent(out),dimension(MAX(1,m),MAX(1,p),n+1),depend(m,p,n) :: ucoeff integer intent(hide),depend(dcoeff) :: lduco1=shape(ucoeff,0) integer intent(hide),depend(ucoeff) :: lduco2=shape(ucoeff,1) double precision :: tol1 = 0 double precision :: tol2 = 0 - integer intent(hide,cache),dimension(n+max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,n*(n+1)+max(n*p+2*n+max(n,p),max(3*p,m))) + integer intent(hide,cache),dimension(n+MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,n*(n+1)+MAX(n*p+2*n+MAX(n,p),MAX(3*p,m))) integer intent(out) :: info end subroutine tb04ad_c subroutine tb05ad_ag(baleig,inita,n,m,p,freq,a,lda,b,ldb,c,ldc,rcond,g,ldg,evre,evim,hinvb,ldhinv,iwork,dwork,ldwork,zwork,lzwork,info) @@ -239,7 +239,7 @@ subroutine tc01od_l(leri,m,p,indlim,pcoeff,ldpco1,ldpco2,qcoeff,ldqco1,ldqco2,in double precision intent(in,out),dimension(p,p,indlim),depend(p,indlim) :: pcoeff integer intent(hide),depend(pcoeff) :: ldpco1=shape(pcoeff,0) integer intent(hide),depend(pcoeff) :: ldpco2=shape(pcoeff,1) - double precision intent(in,out),dimension(max(m,p),max(m,p),indlim),depend(m,p,indlim) :: qcoeff + double precision intent(in,out),dimension(MAX(m,p),MAX(m,p),indlim),depend(m,p,indlim) :: qcoeff integer intent(hide),depend(qcoeff) :: ldqco1=shape(qcoeff,0) integer intent(hide),depend(qcoeff) :: ldqco2=shape(qcoeff,1) integer intent(out) :: info @@ -253,7 +253,7 @@ subroutine tc01od_r(leri,m,p,indlim,pcoeff,ldpco1,ldpco2,qcoeff,ldqco1,ldqco2,in double precision dimension(m,m,indlim),depend(p,indlim) :: pcoeff integer intent(hide),depend(pcoeff) :: ldpco1=shape(pcoeff,0) integer intent(hide),depend(pcoeff) :: ldpco2=shape(pcoeff,1) - double precision dimension(max(m,p),max(m,p),indlim),depend(m,p,indlim) :: qcoeff + double precision dimension(MAX(m,p),MAX(m,p),indlim),depend(m,p,indlim) :: qcoeff integer intent(hide),depend(qcoeff) :: ldqco1=shape(qcoeff,0) integer intent(hide),depend(qcoeff) :: ldqco2=shape(qcoeff,1) integer intent(out) :: info @@ -274,15 +274,15 @@ subroutine tc04ad_l(leri,m,p,index_bn,pcoeff,ldpco1,ldpco2,qcoeff,ldqco1,ldqco2, double precision intent(out) :: rcond double precision intent(out),dimension(n,n),depend(n) :: a integer intent(hide),depend(a) :: lda=shape(a,0) - double precision intent(out),dimension(n,max(m,p)),depend(n,m,p) :: b + double precision intent(out),dimension(n,MAX(m,p)),depend(n,m,p) :: b integer intent(hide),depend(b) :: ldb=shape(b,0) - double precision intent(out),dimension(max(m,p),n),depend(n,m,p) :: c + double precision intent(out),dimension(MAX(m,p),n),depend(n,m,p) :: c integer intent(hide),depend(c) :: ldc=shape(c,0) - double precision intent(out),dimension(max(m,p),max(m,p)),depend(m,p) :: d + double precision intent(out),dimension(MAX(m,p),MAX(m,p)),depend(m,p) :: d integer intent(hide),depend(d) :: ldd=shape(d,0) - integer intent(hide,cache),dimension(2*max(m,p)),depend(m,p) :: iwork + integer intent(hide,cache),dimension(2*MAX(m,p)),depend(m,p) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer depend(m,p) :: ldwork = max(m,p)*(max(m,p)+4) + integer depend(m,p) :: ldwork = MAX(m,p)*(MAX(m,p)+4) integer intent(out) :: info end subroutine tc04ad_l subroutine tc04ad_r(leri,m,p,index_bn,pcoeff,ldpco1,ldpco2,qcoeff,ldqco1,ldqco2,n,rcond,a,lda,b,ldb,c,ldc,d,ldd,iwork,dwork,ldwork,info) ! in TC04AD.f @@ -294,22 +294,22 @@ subroutine tc04ad_r(leri,m,p,index_bn,pcoeff,ldpco1,ldpco2,qcoeff,ldqco1,ldqco2, double precision required,dimension(m,m,*),depend(m) :: pcoeff integer intent(hide),depend(pcoeff) :: ldpco1=shape(pcoeff,0) integer intent(hide),depend(pcoeff) :: ldpco2=shape(pcoeff,1) - double precision required,dimension(max(m,p),max(m,p),*),depend(m,p) :: qcoeff + double precision required,dimension(MAX(m,p),MAX(m,p),*),depend(m,p) :: qcoeff integer intent(hide),depend(qcoeff) :: ldqco1=shape(qcoeff,0) integer intent(hide),depend(qcoeff) :: ldqco2=shape(qcoeff,1) integer intent(in,out) :: n != sum(index_bn) double precision intent(out) :: rcond double precision intent(out),dimension(n,n),depend(n) :: a integer intent(hide),depend(a) :: lda=shape(a,0) - double precision intent(out),dimension(n,max(m,p)),depend(n,m,p) :: b + double precision intent(out),dimension(n,MAX(m,p)),depend(n,m,p) :: b integer intent(hide),depend(b) :: ldb=shape(b,0) - double precision intent(out),dimension(max(m,p),n),depend(n,m,p) :: c + double precision intent(out),dimension(MAX(m,p),n),depend(n,m,p) :: c integer intent(hide),depend(c) :: ldc=shape(c,0) - double precision intent(out),dimension(max(m,p),max(m,p)),depend(m,p) :: d + double precision intent(out),dimension(MAX(m,p),MAX(m,p)),depend(m,p) :: d integer intent(hide),depend(d) :: ldd=shape(d,0) - integer intent(hide,cache),dimension(2*max(m,p)),depend(m,p) :: iwork + integer intent(hide,cache),dimension(2*MAX(m,p)),depend(m,p) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer depend(m,p) :: ldwork = max(m,p)*(max(m,p)+4) + integer depend(m,p) :: ldwork = MAX(m,p)*(MAX(m,p)+4) integer intent(out) :: info end subroutine tc04ad_r subroutine td04ad_r(rowcol,m,p,index_bn,dcoeff,lddcoe,ucoeff,lduco1,lduco2,nr,a,lda,b,ldb,c,ldc,d,ldd,tol,iwork,dwork,ldwork,info) ! in TD04AD.f @@ -318,24 +318,24 @@ subroutine td04ad_r(rowcol,m,p,index_bn,dcoeff,lddcoe,ucoeff,lduco1,lduco2,nr,a, integer check(m>=0) :: m integer check(p>=0) :: p integer dimension(p),depend(p) :: index_bn - double precision intent(in,copy),dimension(max(1,p),*),depend(p) :: dcoeff + double precision intent(in,copy),dimension(MAX(1,p),*),depend(p) :: dcoeff integer intent(hide),depend(dcoeff) :: lddcoe=shape(dcoeff,0) - double precision intent(in,copy),dimension(max(1,p),max(1,m),*),depend(p,m) :: ucoeff + double precision intent(in,copy),dimension(MAX(1,p),MAX(1,m),*),depend(p,m) :: ucoeff integer intent(hide),depend(ucoeff) :: lduco1=shape(ucoeff,0) integer intent(hide),depend(ucoeff) :: lduco2=shape(ucoeff,1) integer intent(in,out) :: nr !=sum(index_bn) - double precision intent(out),dimension(max(1,nr),max(1,nr)),depend(nr) :: a + double precision intent(out),dimension(MAX(1,nr),MAX(1,nr)),depend(nr) :: a integer intent(hide),depend(a) :: lda = shape(a,0) - double precision intent(out),dimension(max(1,nr),max(m,p)),depend(nr,m,p) :: b + double precision intent(out),dimension(MAX(1,nr),MAX(m,p)),depend(nr,m,p) :: b integer intent(hide),depend(b) :: ldb = shape(b,0) - double precision intent(out),dimension(max(1,max(m,p)),max(1,nr)),depend(nr,m,p) :: c + double precision intent(out),dimension(MAX(1,MAX(m,p)),MAX(1,nr)),depend(nr,m,p) :: c integer intent(hide),depend(c) :: ldc = shape(c,0) - double precision intent(out),dimension(max(1,p),m),depend(p,m) :: d + double precision intent(out),dimension(MAX(1,p),m),depend(p,m) :: d integer intent(hide),depend(d) :: ldd = shape(d,0) double precision :: tol = 0 - integer intent(hide,cache),dimension(nr+max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,nr+max(nr,max(3*m,3*p))) + integer intent(hide,cache),dimension(nr+MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,nr+MAX(nr,MAX(3*m,3*p))) integer intent(out) :: info end subroutine td04ad_r subroutine td04ad_c(rowcol,m,p,index_bn,dcoeff,lddcoe,ucoeff,lduco1,lduco2,nr,a,lda,b,ldb,c,ldc,d,ldd,tol,iwork,dwork,ldwork,info) ! in TD04AD.f @@ -344,24 +344,24 @@ subroutine td04ad_c(rowcol,m,p,index_bn,dcoeff,lddcoe,ucoeff,lduco1,lduco2,nr,a, integer check(m>=0) :: m integer check(p>=0) :: p integer dimension(m),depend(m) :: index_bn - double precision intent(in,copy),dimension(max(1,m),*),depend(m) :: dcoeff + double precision intent(in,copy),dimension(MAX(1,m),*),depend(m) :: dcoeff integer intent(hide),depend(dcoeff) :: lddcoe=shape(dcoeff,0) - double precision intent(in,copy),dimension(max(1,max(m,p)),max(1,max(m,p)),*),depend(p,m) :: ucoeff + double precision intent(in,copy),dimension(MAX(1,MAX(m,p)),MAX(1,MAX(m,p)),*),depend(p,m) :: ucoeff integer intent(hide),depend(ucoeff) :: lduco1=shape(ucoeff,0) integer intent(hide),depend(ucoeff) :: lduco2=shape(ucoeff,1) integer intent(in,out) :: nr != sum(index_bn) - double precision intent(out),dimension(max(1,nr),max(1,nr)),depend(nr) :: a + double precision intent(out),dimension(MAX(1,nr),MAX(1,nr)),depend(nr) :: a integer intent(hide),depend(a) :: lda = shape(a,0) - double precision intent(out),dimension(max(1,nr),max(m,p)),depend(nr,m,p) :: b + double precision intent(out),dimension(MAX(1,nr),MAX(m,p)),depend(nr,m,p) :: b integer intent(hide),depend(b) :: ldb = shape(b,0) - double precision intent(out),dimension(max(1,max(m,p)),max(1,nr)),depend(nr,m,p) :: c + double precision intent(out),dimension(MAX(1,MAX(m,p)),MAX(1,nr)),depend(nr,m,p) :: c integer intent(hide),depend(c) :: ldc = shape(c,0) - double precision intent(out),dimension(max(1,max(m,p)),max(m,p)),depend(p,m) :: d + double precision intent(out),dimension(MAX(1,MAX(m,p)),MAX(m,p)),depend(p,m) :: d integer intent(hide),depend(d) :: ldd = shape(d,0) double precision :: tol = 0 - integer intent(hide,cache),dimension(nr+max(m,p)) :: iwork - double precision intent(hide,cache),dimension(ldwork) :: dwork - integer optional :: ldwork = max(1,nr+max(nr,max(3*m,3*p))) + integer intent(hide,cache),dimension(nr+MAX(m,p)) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = MAX(1,nr+MAX(nr,MAX(3*m,3*p))) integer intent(out) :: info end subroutine td04ad_c subroutine tf01md(n,m,p,ny,a,lda,b,ldb,c,ldc,d,ldd,u,ldu,x,y,ldy,dwork,info) ! in TF01MD.f @@ -398,7 +398,7 @@ subroutine tf01rd(na,nb,nc,n,a,lda,b,ldb,c,ldc,h,ldh,dwork,ldwork,info) ! in TF0 integer intent(hide),depend(c) :: ldc=shape(c,0) double precision intent(out),dimension(nc,n*nb),depend(n,nb,nc) :: h integer intent(hide),depend(h) :: ldh=shape(h,0) - double precision intent(hide,cache),dimension(ldwork) :: dwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork integer optional,depend(na,nc) :: ldwork = 2*na*nc integer intent(out) :: info end subroutine tf01rd @@ -410,17 +410,40 @@ subroutine tb01pd(job,equil,n,m,p,a,lda,b,ldb,c,ldc,nr,tol,iwork,dwork,ldwork,in integer required,check(p>=0) :: p double precision intent(in,out,copy),dimension(n,n),depend(n) :: a integer, intent(hide), depend(a) :: lda=shape(a,0) - double precision intent(in,out,copy),dimension(n,max(m,p)),depend(n,m,p) :: b + double precision intent(in,out,copy),dimension(n,MAX(m,p)),depend(n,m,p) :: b integer, intent(hide), depend(b) :: ldb=shape(b,0) - double precision intent(in,out,copy),dimension(max(p,m),n),depend(p,n,m) :: c + double precision intent(in,out,copy),dimension(MAX(p,m),n),depend(p,n,m) :: c integer, intent(hide), depend(c) :: ldc=shape(c,0) integer, intent(out) :: nr double precision, intent(in) :: tol = 0.0 - integer intent(hide,cache),dimension(n+max(m,p)),depend(n,m,p) :: iwork + integer intent(hide,cache),dimension(n+MAX(m,p)),depend(n,m,p) :: iwork double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork - integer optional,depend(n,m,p) :: ldwork=max(1,n+max(n,max(3*m,3*p))) + integer optional,depend(n,m,p) :: ldwork=MAX(1,n+MAX(n,MAX(3*m,3*p))) integer intent(out) :: info end subroutine tb01pd +subroutine tg01jd(job,systyp,equil,n,m,p,a,lda,e,lde,b,ldb,c,ldc,nr,infred,tol,iwork,dwork,ldwork,info) ! in TG01JD.f + character intent(in) :: job = 'M' + character intent(in) :: systyp = 'R' + character intent(in) :: equil = 'S' + integer required,check(n>=0) :: n + integer required,check(m>=0) :: m + integer required,check(p>=0) :: p + double precision intent(in,out,copy),dimension(n,n),depend(n) :: a + integer, intent(hide), depend(a) :: lda=shape(a,0) + double precision intent(in,out,copy),dimension(n,n),depend(n) :: e + integer, intent(hide), depend(e) :: lde=shape(e,0) + double precision intent(in,out,copy),dimension(n,MAX(m,p)),depend(n,m,p) :: b + integer, intent(hide), depend(b) :: ldb=shape(b,0) + double precision intent(in,out,copy),dimension(MAX(p,m),n),depend(p,n,m) :: c + integer, intent(hide), depend(c) :: ldc=shape(c,0) + integer, intent(out) :: nr + integer, intent(out), dimension(7) :: infred + double precision, intent(in) :: tol = 0.0 + integer, intent(hide,cache),dimension(2*n+MAX(m,p)),depend(n,m,p) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional,depend(n,m,p) :: ldwork=(2*n*n+n*m+n*p+MAX(n,MAX(2*p,2*p))) + integer intent(out) :: info +end subroutine tg01jd subroutine tg01ad(job,l,n,m,p,thresh,a,lda,e,lde,b,ldb,c,ldc,lscale,rscale,dwork,info) ! in TG01AD.f character :: job integer intent(in),required,check(l>=0) :: l @@ -528,3 +551,29 @@ subroutine tg01fd_uu(compq,compz,joba,l,n,m,p,a,lda,e,lde,b,ldb,c,ldc,q,ldq,z,ld integer required intent(in) :: ldwork integer intent(out) :: info end subroutine tg01fd_uu +subroutine tg01gd(jobs,l,n,m,p,a,lda,e,lde,b,ldb,c,ldc,d,ldd,lr,nr,ranke,infred,tol,iwork,dwork,ldwork,info) ! in SLICOT-Reference/src/TG01GD.f + character intent(in) :: jobs + integer intent(in),required,check(l>=0) :: l + integer intent(in),required,check(n>=0) :: n + integer intent(in),required,check(m>=0) :: m + integer intent(in),required,check(p>=0) :: p + double precision intent(in,out,copy),dimension(n,n),depend(n) :: a + integer intent(hide),depend(a) :: lda = shape(a,0) + double precision intent(in,out,copy),dimension(n,n),depend(n) :: e + integer intent(hide),depend(e) :: lde = shape(e,0) + double precision intent(in,out,copy),dimension(n,m),depend(n,m) :: b + integer intent(hide),depend(b) :: ldb = shape(b,0) + double precision intent(in,out,copy),dimension(p,n),depend(n,p) :: c + integer intent(hide),depend(c) :: ldc = shape(c,0) + double precision intent(in,out,copy),dimension(p,m),depend(m,p) :: d + integer intent(hide),depend(d) :: ldd = shape(d,0) + integer intent(out) :: lr + integer intent(out) :: nr + integer intent(out) :: ranke + integer intent(out) :: infred + double precision intent(in) :: tol + integer intent(hide,cache),depend(n),dimension(n) :: iwork + double precision intent(hide,cache),dimension(ldwork),depend(ldwork) :: dwork + integer optional :: ldwork = 2*l*n + l*m+ n*p + MAX(MAX(1, n+p), min(l,n) + MAX(3*n-1,MAX(m,l))) + integer intent(out) :: info +end subroutine tg01gd diff --git a/slycot/src/zggbal.f b/slycot/src/zggbal.f new file mode 100755 index 00000000..ef7f0856 --- /dev/null +++ b/slycot/src/zggbal.f @@ -0,0 +1,572 @@ +*> \brief \b ZGGBAL +* +* =========== DOCUMENTATION =========== +* +* Online html documentation available at +* http://www.netlib.org/lapack/explore-html/ +* +*> \htmlonly +*> Download ZGGBAL + dependencies +*> +*> [TGZ] +*> +*> [ZIP] +*> +*> [TXT] +*> \endhtmlonly +* +* Definition: +* =========== +* +* SUBROUTINE ZGGBAL( JOB, N, A, LDA, B, LDB, ILO, IHI, LSCALE, +* RSCALE, WORK, INFO ) +* +* .. Scalar Arguments .. +* CHARACTER JOB +* INTEGER IHI, ILO, INFO, LDA, LDB, N +* .. +* .. Array Arguments .. +* DOUBLE PRECISION LSCALE( * ), RSCALE( * ), WORK( * ) +* COMPLEX*16 A( LDA, * ), B( LDB, * ) +* .. +* +* +*> \par Purpose: +* ============= +*> +*> \verbatim +*> +*> ZGGBAL balances a pair of general complex matrices (A,B). This +*> involves, first, permuting A and B by similarity transformations to +*> isolate eigenvalues in the first 1 to ILO$-$1 and last IHI+1 to N +*> elements on the diagonal; and second, applying a diagonal similarity +*> transformation to rows and columns ILO to IHI to make the rows +*> and columns as close in norm as possible. Both steps are optional. +*> +*> Balancing may reduce the 1-norm of the matrices, and improve the +*> accuracy of the computed eigenvalues and/or eigenvectors in the +*> generalized eigenvalue problem A*x = lambda*B*x. +*> \endverbatim +* +* Arguments: +* ========== +* +*> \param[in] JOB +*> \verbatim +*> JOB is CHARACTER*1 +*> Specifies the operations to be performed on A and B: +*> = 'N': none: simply set ILO = 1, IHI = N, LSCALE(I) = 1.0 +*> and RSCALE(I) = 1.0 for i=1,...,N; +*> = 'P': permute only; +*> = 'S': scale only; +*> = 'B': both permute and scale. +*> \endverbatim +*> +*> \param[in] N +*> \verbatim +*> N is INTEGER +*> The order of the matrices A and B. N >= 0. +*> \endverbatim +*> +*> \param[in,out] A +*> \verbatim +*> A is COMPLEX*16 array, dimension (LDA,N) +*> On entry, the input matrix A. +*> On exit, A is overwritten by the balanced matrix. +*> If JOB = 'N', A is not referenced. +*> \endverbatim +*> +*> \param[in] LDA +*> \verbatim +*> LDA is INTEGER +*> The leading dimension of the array A. LDA >= max(1,N). +*> \endverbatim +*> +*> \param[in,out] B +*> \verbatim +*> B is COMPLEX*16 array, dimension (LDB,N) +*> On entry, the input matrix B. +*> On exit, B is overwritten by the balanced matrix. +*> If JOB = 'N', B is not referenced. +*> \endverbatim +*> +*> \param[in] LDB +*> \verbatim +*> LDB is INTEGER +*> The leading dimension of the array B. LDB >= max(1,N). +*> \endverbatim +*> +*> \param[out] ILO +*> \verbatim +*> ILO is INTEGER +*> \endverbatim +*> +*> \param[out] IHI +*> \verbatim +*> IHI is INTEGER +*> ILO and IHI are set to integers such that on exit +*> A(i,j) = 0 and B(i,j) = 0 if i > j and +*> j = 1,...,ILO-1 or i = IHI+1,...,N. +*> If JOB = 'N' or 'S', ILO = 1 and IHI = N. +*> \endverbatim +*> +*> \param[out] LSCALE +*> \verbatim +*> LSCALE is DOUBLE PRECISION array, dimension (N) +*> Details of the permutations and scaling factors applied +*> to the left side of A and B. If P(j) is the index of the +*> row interchanged with row j, and D(j) is the scaling factor +*> applied to row j, then +*> LSCALE(j) = P(j) for J = 1,...,ILO-1 +*> = D(j) for J = ILO,...,IHI +*> = P(j) for J = IHI+1,...,N. +*> The order in which the interchanges are made is N to IHI+1, +*> then 1 to ILO-1. +*> \endverbatim +*> +*> \param[out] RSCALE +*> \verbatim +*> RSCALE is DOUBLE PRECISION array, dimension (N) +*> Details of the permutations and scaling factors applied +*> to the right side of A and B. If P(j) is the index of the +*> column interchanged with column j, and D(j) is the scaling +*> factor applied to column j, then +*> RSCALE(j) = P(j) for J = 1,...,ILO-1 +*> = D(j) for J = ILO,...,IHI +*> = P(j) for J = IHI+1,...,N. +*> The order in which the interchanges are made is N to IHI+1, +*> then 1 to ILO-1. +*> \endverbatim +*> +*> \param[out] WORK +*> \verbatim +*> WORK is DOUBLE PRECISION array, dimension (lwork) +*> lwork must be at least max(1,6*N) when JOB = 'S' or 'B', and +*> at least 1 when JOB = 'N' or 'P'. +*> \endverbatim +*> +*> \param[out] INFO +*> \verbatim +*> INFO is INTEGER +*> = 0: successful exit +*> < 0: if INFO = -i, the i-th argument had an illegal value. +*> \endverbatim +* +* Authors: +* ======== +* +*> \author Univ. of Tennessee +*> \author Univ. of California Berkeley +*> \author Univ. of Colorado Denver +*> \author NAG Ltd. +* +*> \date June 2016 +* +*> \ingroup complex16GBcomputational +* +*> \par Further Details: +* ===================== +*> +*> \verbatim +*> +*> See R.C. WARD, Balancing the generalized eigenvalue problem, +*> SIAM J. Sci. Stat. Comp. 2 (1981), 141-152. +*> \endverbatim +*> +* ===================================================================== + SUBROUTINE ZGGBAL( JOB, N, A, LDA, B, LDB, ILO, IHI, LSCALE, + $ RSCALE, WORK, INFO ) +* +* -- LAPACK computational routine (version 3.7.0) -- +* -- LAPACK is a software package provided by Univ. of Tennessee, -- +* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- +* June 2016 +* +* .. Scalar Arguments .. + CHARACTER JOB + INTEGER IHI, ILO, INFO, LDA, LDB, N +* .. +* .. Array Arguments .. + DOUBLE PRECISION LSCALE( * ), RSCALE( * ), WORK( * ) + COMPLEX*16 A( LDA, * ), B( LDB, * ) +* .. +* +* ===================================================================== +* +* .. Parameters .. + DOUBLE PRECISION ZERO, HALF, ONE + PARAMETER ( ZERO = 0.0D+0, HALF = 0.5D+0, ONE = 1.0D+0 ) + DOUBLE PRECISION THREE, SCLFAC + PARAMETER ( THREE = 3.0D+0, SCLFAC = 2.0D+0 ) + COMPLEX*16 CZERO + PARAMETER ( CZERO = ( 0.0D+0, 0.0D+0 ) ) +* .. +* .. Local Scalars .. + INTEGER I, ICAB, IFLOW, IP1, IR, IRAB, IT, J, JC, JP1, + $ K, KOUNT, L, LCAB, LM1, LRAB, LSFMAX, LSFMIN, + $ M, NR, NRP2 + DOUBLE PRECISION ALPHA, BASL, BETA, CAB, CMAX, COEF, COEF2, + $ COEF5, COR, EW, EWC, GAMMA, PGAMMA, RAB, SFMAX, + $ SFMIN, SUM, T, TA, TB, TC + COMPLEX*16 CDUM +* .. +* .. External Functions .. + LOGICAL LSAME + INTEGER IZAMAX + DOUBLE PRECISION DDOT, DLAMCH + EXTERNAL LSAME, IZAMAX, DDOT, DLAMCH +* .. +* .. External Subroutines .. + EXTERNAL DAXPY, DSCAL, XERBLA, ZDSCAL, ZSWAP +* .. +* .. Intrinsic Functions .. + INTRINSIC ABS, DBLE, DIMAG, INT, LOG10, MAX, MIN, SIGN +* .. +* .. Statement Functions .. + DOUBLE PRECISION CABS1 +* .. +* .. Statement Function definitions .. + CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) ) +* .. +* .. Executable Statements .. +* +* Test the input parameters +* + INFO = 0 + IF( .NOT.LSAME( JOB, 'N' ) .AND. .NOT.LSAME( JOB, 'P' ) .AND. + $ .NOT.LSAME( JOB, 'S' ) .AND. .NOT.LSAME( JOB, 'B' ) ) THEN + INFO = -1 + ELSE IF( N.LT.0 ) THEN + INFO = -2 + ELSE IF( LDA.LT.MAX( 1, N ) ) THEN + INFO = -4 + ELSE IF( LDB.LT.MAX( 1, N ) ) THEN + INFO = -6 + END IF + IF( INFO.NE.0 ) THEN + CALL XERBLA( 'ZGGBAL', -INFO ) + RETURN + END IF +* +* Quick return if possible +* + IF( N.EQ.0 ) THEN + ILO = 1 + IHI = N + RETURN + END IF +* + IF( N.EQ.1 ) THEN + ILO = 1 + IHI = N + LSCALE( 1 ) = ONE + RSCALE( 1 ) = ONE + RETURN + END IF +* + IF( LSAME( JOB, 'N' ) ) THEN + ILO = 1 + IHI = N + DO 10 I = 1, N + LSCALE( I ) = ONE + RSCALE( I ) = ONE + 10 CONTINUE + RETURN + END IF +* + K = 1 + L = N + IF( LSAME( JOB, 'S' ) ) + $ GO TO 190 +* + GO TO 30 +* +* Permute the matrices A and B to isolate the eigenvalues. +* +* Find row with one nonzero in columns 1 through L +* + 20 CONTINUE + L = LM1 + IF( L.NE.1 ) + $ GO TO 30 +* + RSCALE( 1 ) = 1 + LSCALE( 1 ) = 1 + GO TO 190 +* + 30 CONTINUE + LM1 = L - 1 + DO 80 I = L, 1, -1 + DO 40 J = 1, LM1 + JP1 = J + 1 + IF( A( I, J ).NE.CZERO .OR. B( I, J ).NE.CZERO ) + $ GO TO 50 + 40 CONTINUE + J = L + GO TO 70 +* + 50 CONTINUE + DO 60 J = JP1, L + IF( A( I, J ).NE.CZERO .OR. B( I, J ).NE.CZERO ) + $ GO TO 80 + 60 CONTINUE + J = JP1 - 1 +* + 70 CONTINUE + M = L + IFLOW = 1 + GO TO 160 + 80 CONTINUE + GO TO 100 +* +* Find column with one nonzero in rows K through N +* + 90 CONTINUE + K = K + 1 +* + 100 CONTINUE + DO 150 J = K, L + DO 110 I = K, LM1 + IP1 = I + 1 + IF( A( I, J ).NE.CZERO .OR. B( I, J ).NE.CZERO ) + $ GO TO 120 + 110 CONTINUE + I = L + GO TO 140 + 120 CONTINUE + DO 130 I = IP1, L + IF( A( I, J ).NE.CZERO .OR. B( I, J ).NE.CZERO ) + $ GO TO 150 + 130 CONTINUE + I = IP1 - 1 + 140 CONTINUE + M = K + IFLOW = 2 + GO TO 160 + 150 CONTINUE + GO TO 190 +* +* Permute rows M and I +* + 160 CONTINUE + LSCALE( M ) = I + IF( I.EQ.M ) + $ GO TO 170 + CALL ZSWAP( N-K+1, A( I, K ), LDA, A( M, K ), LDA ) + CALL ZSWAP( N-K+1, B( I, K ), LDB, B( M, K ), LDB ) +* +* Permute columns M and J +* + 170 CONTINUE + RSCALE( M ) = J + IF( J.EQ.M ) + $ GO TO 180 + CALL ZSWAP( L, A( 1, J ), 1, A( 1, M ), 1 ) + CALL ZSWAP( L, B( 1, J ), 1, B( 1, M ), 1 ) +* + 180 CONTINUE + GO TO ( 20, 90 )IFLOW +* + 190 CONTINUE + ILO = K + IHI = L +* + IF( LSAME( JOB, 'P' ) ) THEN + DO 195 I = ILO, IHI + LSCALE( I ) = ONE + RSCALE( I ) = ONE + 195 CONTINUE + RETURN + END IF +* + IF( ILO.EQ.IHI ) + $ RETURN +* +* Balance the submatrix in rows ILO to IHI. +* + NR = IHI - ILO + 1 + DO 200 I = ILO, IHI + RSCALE( I ) = ZERO + LSCALE( I ) = ZERO +* + WORK( I ) = ZERO + WORK( I+N ) = ZERO + WORK( I+2*N ) = ZERO + WORK( I+3*N ) = ZERO + WORK( I+4*N ) = ZERO + WORK( I+5*N ) = ZERO + 200 CONTINUE +* +* Compute right side vector in resulting linear equations +* + BASL = LOG10( SCLFAC ) + DO 240 I = ILO, IHI + DO 230 J = ILO, IHI + IF( A( I, J ).EQ.CZERO ) THEN + TA = ZERO + GO TO 210 + END IF + TA = LOG10( CABS1( A( I, J ) ) ) / BASL +* + 210 CONTINUE + IF( B( I, J ).EQ.CZERO ) THEN + TB = ZERO + GO TO 220 + END IF + TB = LOG10( CABS1( B( I, J ) ) ) / BASL +* + 220 CONTINUE + WORK( I+4*N ) = WORK( I+4*N ) - TA - TB + WORK( J+5*N ) = WORK( J+5*N ) - TA - TB + 230 CONTINUE + 240 CONTINUE +* + COEF = ONE / DBLE( 2*NR ) + COEF2 = COEF*COEF + COEF5 = HALF*COEF2 + NRP2 = NR + 2 + BETA = ZERO + IT = 1 +* +* Start generalized conjugate gradient iteration +* + 250 CONTINUE +* + GAMMA = DDOT( NR, WORK( ILO+4*N ), 1, WORK( ILO+4*N ), 1 ) + + $ DDOT( NR, WORK( ILO+5*N ), 1, WORK( ILO+5*N ), 1 ) +* + EW = ZERO + EWC = ZERO + DO 260 I = ILO, IHI + EW = EW + WORK( I+4*N ) + EWC = EWC + WORK( I+5*N ) + 260 CONTINUE +* + GAMMA = COEF*GAMMA - COEF2*( EW**2+EWC**2 ) - COEF5*( EW-EWC )**2 + IF( GAMMA.EQ.ZERO ) + $ GO TO 350 + IF( IT.NE.1 ) + $ BETA = GAMMA / PGAMMA + T = COEF5*( EWC-THREE*EW ) + TC = COEF5*( EW-THREE*EWC ) +* + CALL DSCAL( NR, BETA, WORK( ILO ), 1 ) + CALL DSCAL( NR, BETA, WORK( ILO+N ), 1 ) +* + CALL DAXPY( NR, COEF, WORK( ILO+4*N ), 1, WORK( ILO+N ), 1 ) + CALL DAXPY( NR, COEF, WORK( ILO+5*N ), 1, WORK( ILO ), 1 ) +* + DO 270 I = ILO, IHI + WORK( I ) = WORK( I ) + TC + WORK( I+N ) = WORK( I+N ) + T + 270 CONTINUE +* +* Apply matrix to vector +* + DO 300 I = ILO, IHI + KOUNT = 0 + SUM = ZERO + DO 290 J = ILO, IHI + IF( A( I, J ).EQ.CZERO ) + $ GO TO 280 + KOUNT = KOUNT + 1 + SUM = SUM + WORK( J ) + 280 CONTINUE + IF( B( I, J ).EQ.CZERO ) + $ GO TO 290 + KOUNT = KOUNT + 1 + SUM = SUM + WORK( J ) + 290 CONTINUE + WORK( I+2*N ) = DBLE( KOUNT )*WORK( I+N ) + SUM + 300 CONTINUE +* + DO 330 J = ILO, IHI + KOUNT = 0 + SUM = ZERO + DO 320 I = ILO, IHI + IF( A( I, J ).EQ.CZERO ) + $ GO TO 310 + KOUNT = KOUNT + 1 + SUM = SUM + WORK( I+N ) + 310 CONTINUE + IF( B( I, J ).EQ.CZERO ) + $ GO TO 320 + KOUNT = KOUNT + 1 + SUM = SUM + WORK( I+N ) + 320 CONTINUE + WORK( J+3*N ) = DBLE( KOUNT )*WORK( J ) + SUM + 330 CONTINUE +* + SUM = DDOT( NR, WORK( ILO+N ), 1, WORK( ILO+2*N ), 1 ) + + $ DDOT( NR, WORK( ILO ), 1, WORK( ILO+3*N ), 1 ) + ALPHA = GAMMA / SUM +* +* Determine correction to current iteration +* + CMAX = ZERO + DO 340 I = ILO, IHI + COR = ALPHA*WORK( I+N ) + IF( ABS( COR ).GT.CMAX ) + $ CMAX = ABS( COR ) + LSCALE( I ) = LSCALE( I ) + COR + COR = ALPHA*WORK( I ) + IF( ABS( COR ).GT.CMAX ) + $ CMAX = ABS( COR ) + RSCALE( I ) = RSCALE( I ) + COR + 340 CONTINUE + IF( CMAX.LT.HALF ) + $ GO TO 350 +* + CALL DAXPY( NR, -ALPHA, WORK( ILO+2*N ), 1, WORK( ILO+4*N ), 1 ) + CALL DAXPY( NR, -ALPHA, WORK( ILO+3*N ), 1, WORK( ILO+5*N ), 1 ) +* + PGAMMA = GAMMA + IT = IT + 1 + IF( IT.LE.NRP2 ) + $ GO TO 250 +* +* End generalized conjugate gradient iteration +* + 350 CONTINUE + SFMIN = DLAMCH( 'S' ) + SFMAX = ONE / SFMIN + LSFMIN = INT( LOG10( SFMIN ) / BASL+ONE ) + LSFMAX = INT( LOG10( SFMAX ) / BASL ) + DO 360 I = ILO, IHI + IRAB = IZAMAX( N-ILO+1, A( I, ILO ), LDA ) + RAB = ABS( A( I, IRAB+ILO-1 ) ) + IRAB = IZAMAX( N-ILO+1, B( I, ILO ), LDB ) + RAB = MAX( RAB, ABS( B( I, IRAB+ILO-1 ) ) ) + LRAB = INT( LOG10( RAB+SFMIN ) / BASL+ONE ) + IR = INT(LSCALE( I ) + SIGN( HALF, LSCALE( I ) )) + IR = MIN( MAX( IR, LSFMIN ), LSFMAX, LSFMAX-LRAB ) + LSCALE( I ) = SCLFAC**IR + ICAB = IZAMAX( IHI, A( 1, I ), 1 ) + CAB = ABS( A( ICAB, I ) ) + ICAB = IZAMAX( IHI, B( 1, I ), 1 ) + CAB = MAX( CAB, ABS( B( ICAB, I ) ) ) + LCAB = INT( LOG10( CAB+SFMIN ) / BASL+ONE ) + JC = INT(RSCALE( I ) + SIGN( HALF, RSCALE( I ) )) + JC = MIN( MAX( JC, LSFMIN ), LSFMAX, LSFMAX-LCAB ) + RSCALE( I ) = SCLFAC**JC + 360 CONTINUE +* +* Row scaling of matrices A and B +* + DO 370 I = ILO, IHI + CALL ZDSCAL( N-ILO+1, LSCALE( I ), A( I, ILO ), LDA ) + CALL ZDSCAL( N-ILO+1, LSCALE( I ), B( I, ILO ), LDB ) + 370 CONTINUE +* +* Column scaling of matrices A and B +* + DO 380 J = ILO, IHI + CALL ZDSCAL( IHI, RSCALE( J ), A( 1, J ), 1 ) + CALL ZDSCAL( IHI, RSCALE( J ), B( 1, J ), 1 ) + 380 CONTINUE +* + RETURN +* +* End of ZGGBAL +* + END diff --git a/slycot/svd.py b/slycot/svd.py new file mode 100644 index 00000000..1bcb7a70 --- /dev/null +++ b/slycot/svd.py @@ -0,0 +1,168 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# SPDX-License-Identifier: Apache-2.0 +# SPDX-FileCopyrightText: © 2021 Massachusetts Institute of Technology. +# SPDX-FileCopyrightText: © 2021 Lee McCuller +# NOTICE: authors should document their contributions in concisely in NOTICE +# with details inline in source files, comments, and docstrings. +""" +""" + +from scipy._lib._util import _asarray_validated +from scipy.linalg.misc import LinAlgError, _datacopied +from scipy.linalg.blas import find_best_blas_type +from scipy.linalg.lapack import _compute_lwork + +from . import lapack_svd + + +def svd_full( + a, + full_matrices=True, + compute_u=True, + compute_v=True, + overwrite_a=False, + check_finite=True, +): + """ """ + a1 = _asarray_validated(a, check_finite=check_finite) + if len(a1.shape) != 2: + raise ValueError("expected matrix") + m, n = a1.shape + overwrite_a = overwrite_a or (_datacopied(a1, a)) + + prefix, dtype, prefer_fortran = find_best_blas_type(arrays=(a,)) + if prefix == "d": + gesXd, gesXd_lwork = lapack_svd.dgesvd, lapack_svd.dgesvd_lwork + elif prefix == "s": + gesXd, gesXd_lwork = lapack_svd.sgesvd, lapack_svd.sgesvd_lwork + elif prefix == "c": + gesXd, gesXd_lwork = lapack_svd.cgesvd, lapack_svd.cgesvd_lwork + else: + gesXd, gesXd_lwork = lapack_svd.zgesvd, lapack_svd.zgesvd_lwork + + # compute optimal lwork + lwork = _compute_lwork( + gesXd_lwork, + a1, + compute_u=compute_u, + compute_v=compute_v, + full_matrices=full_matrices, + ) + + # perform decomposition + u, s, v, info = gesXd( + a1, + compute_u=compute_u, + compute_v=compute_v, + lwork=lwork, + full_matrices=full_matrices, + overwrite_a=overwrite_a, + ) + + if info > 0: + raise LinAlgError("SVD did not converge") + if info < 0: + raise ValueError("illegal value in %d-th argument of internal gesdd" % -info) + if compute_u and compute_v: + return u, s, v + elif compute_u: + return u, s + elif compute_v: + return s, v + else: + return s + + +def svd( + a, + compute_u=True, + compute_v=True, + il=None, + iu=None, + overwrite_a=False, + check_finite=True, +): + """ """ + # check if the bounds check is being used + if il is None and iu is None: + return svd_full( + a=a, + compute_u=compute_u, + compute_v=compute_v, + overwrite_a=overwrite_a, + check_finite=check_finite, + ) + minmn = min(a.shape[0], a.shape[1]) + + if il is None: + il = 1 + elif il < 0: + if il < -minmn: + il = -minmn + il = minmn + il + 1 + else: + # change to fortran convention + il += 1 + if il > minmn: + il = minmn + + if iu is None: + iu = minmn + elif iu < 0: + iu = minmn + iu + 1 + else: + # change to fortran convention + iu += 1 + if iu > minmn: + iu = minmn + + a1 = _asarray_validated(a, check_finite=check_finite) + if len(a1.shape) != 2: + raise ValueError("expected matrix") + m, n = a1.shape + overwrite_a = overwrite_a or (_datacopied(a1, a)) + + prefix, dtype, prefer_fortran = find_best_blas_type(arrays=(a,)) + if prefix == "d": + gesXd, gesXd_lwork = lapack_svd.dgesvdx, lapack_svd.dgesvdx_lwork + elif prefix == "s": + gesXd, gesXd_lwork = lapack_svd.sgesvdx, lapack_svd.sgesvdx_lwork + elif prefix == "c": + gesXd, gesXd_lwork = lapack_svd.cgesvdx, lapack_svd.cgesvdx_lwork + else: + gesXd, gesXd_lwork = lapack_svd.zgesvdx, lapack_svd.zgesvdx_lwork + + # compute optimal lwork + lwork = _compute_lwork( + gesXd_lwork, + a1, + compute_u=compute_u, + compute_v=compute_v, + il=il, + iu=iu, + ) + + # perform decomposition + u, ns, s, v, iwork, info = gesXd( + a1, + compute_u=compute_u, + compute_v=compute_v, + il=il, + iu=iu, + lwork=lwork, + overwrite_a=overwrite_a, + ) + + if info > 0: + raise LinAlgError("SVD did not converge") + if info < 0: + raise ValueError("illegal value in %d-th argument of internal gesdd" % -info) + if compute_u and compute_v: + return u[:ns], s[:ns], v[:ns] + elif compute_u: + return u[:ns], s[:ns] + elif compute_v: + return s[:ns], v[:ns] + else: + return s[:ns] diff --git a/slycot/transform.py b/slycot/transform.py index 43762b5a..e25faf49 100644 --- a/slycot/transform.py +++ b/slycot/transform.py @@ -192,6 +192,119 @@ def tb01pd(n, m, p, A, B, C, job='M', equil='S', tol=1e-8, ldwork=None): raise_if_slycot_error(out[-1], arg_list) return out[:-1] +def tg01jd(n, m, p, A, E, B, C, job='I', systyp='R', equil='S', tol=1e-13, ldwork=None): + """Ar, Br, Cr, nr = tb01jd(n,m,p,A,B,C,[job,equil,tol,ldwork]) + + To find a reduced (controllable, observable, or minimal) state- + space representation (Ar,Er,Br,Cr) for any original state-space + representation (A,E,B,C). The matrix Ar,Er is in upper block + Hessenberg form. Also removes unobservable/controllable states + at infinity. + + Parameters + ---------- + n : int + Order of the State-space representation. + m : int + Number of inputs. + p : int + Number of outputs. + A : (n, n) array_like + State dynamics matrix. + E : (n, n) array_like + State descriptor dynamics Matrix + B : (n, max(m,p)) array_like + The leading n-by-m part of this array must contain the original + input/state matrix B; the remainder of the leading n-by-max(m,p) + part is used as internal workspace. + C : (p, n) array_like + The leading p-by-n part of this array must contain the original + state/output matrix C; the remainder of the leading max(1,m,p)-by-n + part is used as internal workspace. + job : {'I', 'C', 'O'}, optional + Indicates whether the user wishes to remove the + uncontrollable and/or unobservable parts as follows: + = 'I': Remove both the uncontrollable and unobservable + parts to get a minimal state-space representation; + = 'C': Remove the uncontrollable part only to get a + controllable state-space representation; + = 'O': Remove the unobservable part only to get an + observable state-space representation. + Default is 'I'. + systyp : {'R', 'S', 'P'}, defaults to 'R' + = 'R': Rational transfer-function matrix; (most general) + = 'S': Proper (standard) transfer-function matrix; + = 'P': Polynomial transfer-function matrix. + equil : {'S', 'N'}, optional + Specifies whether the user wishes to preliminarily balance + the triplet (A,B,C) as follows: + = 'S': Perform balancing (scaling); + = 'N': Do not perform balancing. + tol : float, optional + The tolerance to be used in rank determination when + transforming (A, B, C). If the user sets tol > 0, then + the given value of tol is used as a lower bound for the + reciprocal condition number. + Default is `1e-13`. + ldwork : int, optional + The length of the cache array. Default is None to use a + default, preferred size 2*n*n+n*m+n*p+MAX(n,2*p,2*p) + + Returns + ------- + Ar : (nr, nr) ndarray + Contains the upper block Hessenberg state dynamics matrix + Ar of a minimal, controllable, or observable realization + for the original system, depending on the value of JOB, + JOB = 'I', JOB = 'C', or JOB = 'O', respectively. + Er : (nr, nr) ndarray + Contains the upper block Hessenberg state descriptor + dynamics matrix Er of a minimal, controllable, or + observable realization for the original system, depending + on the value of JOB, + JOB = 'I', JOB = 'C', or JOB = 'O', respectively. + Br : (nr, m) ndarray + Contains the transformed input/state matrix Br of a + minimal, controllable, or observable realization for the + original system, depending on the value of JOB, JOB = 'I', + JOB = 'C', or JOB = 'O', respectively. If JOB = 'C', only + the first IWORK(1) rows of B are nonzero. + Cr : (p, nr) ndarray + Contains the transformed state/output matrix Cr of a + minimal, C controllable, or observable realization for the + original C system, depending on the value of JOB, JOB = + 'I', C JOB = 'C', or JOB = 'O', respectively. C If JOB = + 'I', or JOB = 'O', only the last IWORK(1) columns C (in + the first NR columns) of C are nonzero. + nr : int + The order of the reduced state-space representation + (Ar,Br,Cr) of a minimal, controllable, or observable + realization for the original system, depending on + JOB = 'I', JOB = 'C', or JOB = 'O'. + """ + hidden = ' (hidden by the wrapper)' + arg_list = ['job', 'equil', 'n','m','p','A','lda'+hidden,'B','ldb'+hidden, + 'C','ldc'+hidden,'nr','tol','iwork'+hidden,'dwork'+hidden, + 'ldwork','info'+hidden] + if ldwork is None: + # the wrapper knows good ldwork + ldwork = None + elif EQUIL == 'S': + assert(ldwork >= max(8*n,2*m,2*p)) + raise SlycotParameterError("ldwork is too small", -15) + elif EQUIL == 'N': + assert(ldwork >= max(n,2*m,2*p)) + raise SlycotParameterError("ldwork is too small", -15) + out = _wrapper.tg01jd(n=n,m=m,p=p,a=A,e=E,b=B,c=C, + job=job,systyp=systyp,equil=equil, + tol=tol,ldwork=ldwork) + + # extra information about block sizes returned by the wrapped + # function + infred = out[5] + raise_if_slycot_error(out[-1], arg_list) + return out[:5] + def tb03ad(n,m,p,A,B,C,D,leri,equil='N',tol=0.0,ldwork=None): """ A_min,b_min,C_min,nr,index,pcoeff,qcoeff,vcoeff = tb03ad_l(n,m,p,A,B,C,D,leri,[equil,tol,ldwork]) @@ -1266,4 +1379,246 @@ def tg01fd(l,n,m,p,A,E,B,C,Q=None,Z=None,compq='N',compz='N',joba='N',tol=0.0,ld return A,E,B,C,ranke,rnka22,Q,Z +#TODO clean documentation +def tg01gd( + jobs, + l, n, m, p, + a, e, b, c, d, + tol=0, + ldwork=None +): + """ + A,E,B,C,D,lr,nr,ranke,infred = tg01gd(jobs,l,n,m,p,A,E,B,C,D,tol,ldwork) + + To find a reduced descriptor representation (Ar-lambda*Er,Br,Cr) + without non-dynamic modes for a descriptor representation + (A-lambda*E,B,C). Optionally, the reduced descriptor system can + be put into a standard form with the leading diagonal block + of Er identity. + + Arguments + + Mode Parameters + + JOBS CHARACTER*1 + Indicates whether the user wishes to transform the leading + diagonal block of Er to an identity matrix, as follows: + = 'S': make Er with leading diagonal identity; + = 'D': keep Er unreduced or upper triangular. + + Input/Output Parameters + + L (input) INTEGER + The number of rows of the matrices A, E, and B; + also the number of differential equations. L >= 0. + + N (input) INTEGER + The number of columns of the matrices A, E, and C; + also the dimension of descriptor state vector. N >= 0. + + M (input) INTEGER + The number of columns of the matrix B; + also the dimension of the input vector. M >= 0. + + P (input) INTEGER + The number of rows of the matrix C. + also the dimension of the output vector. P >= 0. + + A (input/output) DOUBLE PRECISION array, dimension (LDA,N) + On entry, the leading L-by-N part of this array must + contain the state dynamics matrix A. + On exit, if NR < N, the leading LR-by-NR part of this + array contains the reduced order state matrix Ar of a + descriptor realization without non-dynamic modes. + Array A contains the original state dynamics matrix if + INFRED < 0. + + LDA INTEGER + The leading dimension of the array A. LDA >= MAX(1,L). + + E (input/output) DOUBLE PRECISION array, dimension (LDE,N) + On entry, the leading L-by-N part of this array must + contain the descriptor matrix E. + On exit, if INFRED >= 0, the leading LR-by-NR part of this + array contains the reduced order descriptor matrix Er of a + descriptor realization without non-dynamic modes. + In this case, only the leading RANKE-by-RANKE submatrix + of Er is nonzero and this submatrix is nonsingular and + upper triangular. Array E contains the original descriptor + matrix if INFRED < 0. If JOBS = 'S', then the leading + RANKE-by-RANKE submatrix results in an identity matrix. + + LDE INTEGER + The leading dimension of the array E. LDE >= MAX(1,L). + + B (input/output) DOUBLE PRECISION array, dimension (LDB,M) + On entry, the leading L-by-M part of this array must + contain the input matrix B. + On exit, the leading LR-by-M part of this array contains + the reduced order input matrix Br of a descriptor + realization without non-dynamic modes. Array B contains + the original input matrix if INFRED < 0. + + LDB INTEGER + The leading dimension of the array B. LDB >= MAX(1,L). + + C (input/output) DOUBLE PRECISION array, dimension (LDC,N) + On entry, the leading P-by-N part of this array must + contain the output matrix C. + On exit, the leading P-by-NR part of this array contains + the reduced order output matrix Cr of a descriptor + realization without non-dynamic modes. Array C contains + the original output matrix if INFRED < 0. + + LDC INTEGER + The leading dimension of the array C. LDC >= MAX(1,P). + + D (input/output) DOUBLE PRECISION array, dimension (LDD,M) + On entry, the leading P-by-M part of this array must + contain the original feedthrough matrix D. + On exit, the leading P-by-M part of this array contains + the feedthrough matrix Dr of a reduced descriptor + realization without non-dynamic modes. + + LDD INTEGER + The leading dimension of the array D. LDD >= MAX(1,P). + + LR (output) INTEGER + The number of reduced differential equations. + + NR (output) INTEGER + The dimension of the reduced descriptor state vector. + + RANKE (output) INTEGER + The estimated rank of the matrix E. + + INFRED (output) INTEGER + This parameter contains information on performed reduction + and on structure of resulting system matrices, as follows: + INFRED >= 0 the reduced system is in an SVD-like + coordinate form with Er upper triangular; + INFRED is the achieved order reduction. + INFRED < 0 no reduction achieved and the original + system has been restored. + + Tolerances + + TOL DOUBLE PRECISION + The tolerance to be used in rank determinations when + transforming (A-lambda*E). If the user sets TOL > 0, + then the given value of TOL is used as a lower bound for + reciprocal condition numbers in rank determinations; a + (sub)matrix whose estimated condition number is less than + 1/TOL is considered to be of full rank. If the user sets + TOL <= 0, then an implicitly computed, default tolerance, + defined by TOLDEF = L*N*EPS, is used instead, where EPS + is the machine precision (see LAPACK Library routine + DLAMCH). TOL < 1. + + Workspace + + IWORK INTEGER array, dimension (N) + + DWORK DOUBLE PRECISION array, dimension (LDWORK) + On exit, if INFO = 0, DWORK(1) returns the optimal value + of LDWORK. + + LDWORK INTEGER + The length of the array DWORK. + LDWORK >= 1, if MIN(L,N) = 0; otherwise, + LDWORK >= MAX( N+P, MIN(L,N)+MAX(3*N-1,M,L) ). + If LDWORK >= 2*L*N+L*M+N*P+ + MAX( 1, N+P, MIN(L,N)+MAX(3*N-1,M,L) ) then + the original matrices are restored if no order reduction + is possible. This is achieved by saving system matrices + before reduction and restoring them if no order reduction + took place. + + If LDWORK = -1, then a workspace query is assumed; the + routine only calculates the optimal size of the DWORK + array, returns this value as the first entry of the DWORK + array, and no error message related to LDWORK is issued by + XERBLA. The optimal size does not necessarily include the + space needed for saving the original system matrices. + + Error Indicator + + INFO INTEGER + = 0: successful exit; + < 0: if INFO = -i, the i-th argument had an illegal + value. + + Method + + The subroutine elliminates the non-dynamics modes in two steps: + + Step 1: Reduce the system to the SVD-like coordinate form + (Q'*A*Z-lambda*Q'*E*Z, Q'*B, C*Z) , where + + ( A11 A12 A13 ) ( E11 0 0 ) ( B1 ) + Q'*A*Z = ( A21 A22 0 ), Q'*E*Z = ( 0 0 0 ), Q'*B = ( B2 ), + ( A31 0 0 ) ( 0 0 0 ) ( B3 ) + + C*Z = ( C1 C2 C3 ), + + where E11 and A22 are upper triangular invertible matrices. + + Step 2: Compute the reduced system as (Ar-lambda*Er,Br,Cr,Dr), + where + ( A11 - A12*inv(A22)*A21, A13 ) ( E11 0 ) + Ar = ( ), Er = ( ), + ( A31 0 ) ( 0 0 ) + + ( B1 - A12*inv(A22)*B2 ) + Br = ( ), Cr = ( C1 - C2*inv(A22)*A21, C3 ), + ( B3 ) + + Dr = D - C2*inv(A22)*B2. + + Step 3: If desired (JOBS = 'S'), reduce the descriptor system to + the standard form + + Ar <- diag(inv(Er),I)*Ar; Br <- diag(inv(Er),I)*Br; + Er = diag(I,0). + + If L = N and LR = NR = RANKE, then if Step 3 is performed, + the resulting system is a standard state space system. + + Numerical Aspects + + If L = N, the algorithm requires 0( N**3 ) floating point + operations. + + """ + + hidden = ' (hidden by the wrapper)' + arg_list = [ + 'jobs', + 'l', 'n', 'm', 'p', + 'A', 'lda'+hidden, + 'E', 'lde'+hidden, + 'B', 'ldb'+hidden, + 'C', 'ldc'+hidden, + 'D', 'ldd'+hidden, + 'tol', + 'dwork'+hidden, + 'info' + ] + + out = _wrapper.tg01gd(jobs,l,n,m,p,a,e,b,c,d,tol) + info = out[-1] + raise_if_slycot_error(info, arg_list) + A,E,B,C,D,lr,nr,ranke,infred,info = out + return ( + A[..., :nr, :nr], + E[..., :nr, :nr], + B[..., :nr, :], + C[..., :, :nr], + D, + lr, + nr, + ranke, + infred + ) + # to be replaced by python wrappers