summaryrefslogtreecommitdiff
path: root/TESTING
diff options
context:
space:
mode:
authorKyle Guinn <elyk03@gmail.com>2017-02-03 02:04:18 -0600
committerKyle Guinn <elyk03@gmail.com>2017-02-03 02:04:18 -0600
commitdecbedea650acbe947d33d642115988f361f0ccd (patch)
tree379dd9465ee7cc52e6466c42432eb7a183d965da /TESTING
parentdb6ff20c43112038cc901c605e02b4011dbe433d (diff)
downloadlapack-decbedea650acbe947d33d642115988f361f0ccd.tar.gz
lapack-decbedea650acbe947d33d642115988f361f0ccd.tar.bz2
lapack-decbedea650acbe947d33d642115988f361f0ccd.zip
Remove duplicate sources
${SECOND_SRC} and ${DSECOND_SRC} are already included in LAPACK, so no need to link them again.
Diffstat (limited to 'TESTING')
-rw-r--r--TESTING/EIG/CMakeLists.txt12
-rw-r--r--TESTING/LIN/CMakeLists.txt20
2 files changed, 14 insertions, 18 deletions
diff --git a/TESTING/EIG/CMakeLists.txt b/TESTING/EIG/CMakeLists.txt
index d4577133..2c41999d 100644
--- a/TESTING/EIG/CMakeLists.txt
+++ b/TESTING/EIG/CMakeLists.txt
@@ -123,21 +123,17 @@ macro(add_eig_executable name)
endmacro()
if(BUILD_SINGLE)
-add_eig_executable(xeigtsts ${SEIGTST} ${SCIGTST} ${AEIGTST}
- ${SECOND_SRC})
+add_eig_executable(xeigtsts ${SEIGTST} ${SCIGTST} ${AEIGTST})
endif()
if(BUILD_COMPLEX)
-add_eig_executable(xeigtstc ${CEIGTST} ${SCIGTST} ${AEIGTST}
- ${SECOND_SRC})
+add_eig_executable(xeigtstc ${CEIGTST} ${SCIGTST} ${AEIGTST})
endif()
if(BUILD_DOUBLE)
-add_eig_executable(xeigtstd ${DEIGTST} ${DZIGTST} ${AEIGTST}
- ${DSECOND_SRC})
+add_eig_executable(xeigtstd ${DEIGTST} ${DZIGTST} ${AEIGTST})
endif()
if(BUILD_COMPLEX16)
-add_eig_executable(xeigtstz ${ZEIGTST} ${DZIGTST} ${AEIGTST}
- ${DSECOND_SRC})
+add_eig_executable(xeigtstz ${ZEIGTST} ${DZIGTST} ${AEIGTST})
endif()
diff --git a/TESTING/LIN/CMakeLists.txt b/TESTING/LIN/CMakeLists.txt
index 7749d15b..04a6036f 100644
--- a/TESTING/LIN/CMakeLists.txt
+++ b/TESTING/LIN/CMakeLists.txt
@@ -211,29 +211,29 @@ macro(add_lin_executable name)
endmacro()
if(BUILD_SINGLE)
- add_lin_executable(xlintsts ${ALINTST} ${SCLNTST} ${SLINTST} ${SECOND_SRC})
- add_lin_executable(xlintstrfs ${SLINTSTRFP} ${SECOND_SRC})
+ add_lin_executable(xlintsts ${ALINTST} ${SLINTST} ${SCLNTST})
+ add_lin_executable(xlintstrfs ${SLINTSTRFP})
endif()
if(BUILD_DOUBLE)
- add_lin_executable(xlintstd ${ALINTST} ${DLINTST} ${DZLNTST} ${DSECOND_SRC})
- add_lin_executable(xlintstrfd ${DLINTSTRFP} ${DSECOND_SRC})
+ add_lin_executable(xlintstd ${ALINTST} ${DLINTST} ${DZLNTST})
+ add_lin_executable(xlintstrfd ${DLINTSTRFP})
endif()
if(BUILD_SINGLE AND BUILD_DOUBLE)
- add_lin_executable(xlintstds ${DSLINTST} ${SECOND_SRC} ${DSECOND_SRC})
+ add_lin_executable(xlintstds ${DSLINTST})
endif()
if(BUILD_COMPLEX)
- add_lin_executable(xlintstc ${ALINTST} ${CLINTST} ${SCLNTST} ${SECOND_SRC})
- add_lin_executable(xlintstrfc ${CLINTSTRFP} ${SECOND_SRC})
+ add_lin_executable(xlintstc ${ALINTST} ${CLINTST} ${SCLNTST})
+ add_lin_executable(xlintstrfc ${CLINTSTRFP})
endif()
if(BUILD_COMPLEX16)
- add_lin_executable(xlintstz ${ALINTST} ${ZLINTST} ${DZLNTST} ${DSECOND_SRC})
- add_lin_executable(xlintstrfz ${ZLINTSTRFP} ${DSECOND_SRC})
+ add_lin_executable(xlintstz ${ALINTST} ${ZLINTST} ${DZLNTST})
+ add_lin_executable(xlintstrfz ${ZLINTSTRFP})
endif()
if(BUILD_COMPLEX AND BUILD_COMPLEX16)
- add_lin_executable(xlintstzc ${ZCLINTST} ${SECOND_SRC} ${DSECOND_SRC})
+ add_lin_executable(xlintstzc ${ZCLINTST})
endif()