diff --git a/CMakeLists.txt b/CMakeLists.txt
index 60e2d4b..010f868 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -125,47 +125,7 @@ set(LIBPTSCOTCHERR "" CACHE STRING "Which parallel error library is linked by de
 
 # Allow for testing
 option(ENABLE_TESTS "Enable testing" ON)
-if(ENABLE_TESTS)
-  enable_testing()
-endif(ENABLE_TESTS)
-
 # use GNU standard for file hierarchy installation system
 include(GNUInstallDirs)
 
 add_subdirectory(src)
-
-# Install man pages
-set(scotch_man_pages
-acpl.1
-amk_ccc.1
-amk_grf.1
-atst.1
-gbase.1
-gcv.1
-gdump.1
-gmap.1
-gmk_hy.1
-gmk_m2.1
-gmk_msh.1
-gmtst.1
-gord.1
-gotst.1
-gout.1
-gtst.1
-mcv.1
-mmk_m2.1
-mord.1
-mtst.1
-)
-foreach(f IN LISTS scotch_man_pages)
-  install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/man/man1/${f}
-    DESTINATION ${CMAKE_INSTALL_DATADIR}/man/man1 COMPONENT scotch)
-endforeach()
-
-if(BUILD_PTSCOTCH)
-  set(ptscotch_man_pages dgmap.1 dgord.1 dgscat.1 dgtst.1)
-  foreach(f IN LISTS ptscotch_man_pages)
-    install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/man/man1/${f}
-      DESTINATION ${CMAKE_INSTALL_DATADIR}/man/man1 COMPONENT ptscotch)
-  endforeach()
-endif(BUILD_PTSCOTCH)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index c6e21eb..b97f9b7 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -214,23 +214,6 @@ file(MAKE_DIRECTORY ${GENERATED_INCLUDE_DIR})
 
 # Build Scotch and PT-Scotch libraries
 add_subdirectory(libscotch)
-# Build Scotch executables
-add_subdirectory(scotch)
-
-# Build EsMUMPS library
-if(BUILD_LIBESMUMPS AND NOT USE_SUFFIX)
-  add_subdirectory(esmumps)
-endif(BUILD_LIBESMUMPS AND NOT USE_SUFFIX)
-
-# Build ScotchMeTiS library
-if(BUILD_LIBSCOTCHMETIS)
-  add_subdirectory(libscotchmetis)
-endif(BUILD_LIBSCOTCHMETIS)
-
-# Testing
-if(ENABLE_TESTS)
-  add_subdirectory(check)
-endif(ENABLE_TESTS)
 
 ####################
 #  Export targets  #
