diff --git a/CMakeMakefileTemplate.in b/CMakeMakefileTemplate.in deleted file mode 100644 index c02dc9af7..000000000 --- a/CMakeMakefileTemplate.in +++ /dev/null @@ -1,4 +0,0 @@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -@MAKEINCLUDE@ @MAKEQUOTE@@CMAKE_CONFIG_DIR@/CMake/CMakeMaster.make@MAKEQUOTE@ diff --git a/CMakeMaster.make.in b/CMakeMaster.make.in deleted file mode 100644 index b0fc421b8..000000000 --- a/CMakeMaster.make.in +++ /dev/null @@ -1,21 +0,0 @@ -#------------------------------------------------------------------------------ -# move this from CMakeVariables.make.in so that depends can be done in CMakeTargets.make -CMAKE_LIB_EXT = @CMAKE_LIB_EXT@ - -#------------------------------------------------------------------------------ -# Include all variable settings -include @CMAKE_CONFIG_DIR@/CMake/CMakeVariables.make - -#------------------------------------------------------------------------------ -# Include generated rules -include CMakeTargets.make - -#------------------------------------------------------------------------------ -# Include user-editable defines. -include @CMAKE_CONFIG_DIR@/CMakeLocal.make - -#------------------------------------------------------------------------------ -# Include General Build Rules -include @CMAKE_CONFIG_DIR@/CMake/CMakeRules.make - - diff --git a/CMakeRules.make.in b/CMakeRules.make.in deleted file mode 100644 index 7223ce9f4..000000000 --- a/CMakeRules.make.in +++ /dev/null @@ -1,35 +0,0 @@ -# rules for building .o files from source files -include @CMAKE_CONFIG_DIR@/CMake/CMakeSimpleRules.make - -# -# Makefile for -# -#------------------------------------------------------------------------------ -# -all: CMakeTargets.make ${LOCAL_BUILD_TARGETS} ${TARGETS} ${SUBDIR_BUILD} ${CMAKE} - -#------------------------------------------------------------------------------ - -${CMAKE}: ${topdir}/CMake/Source/*.cxx ${topdir}/CMake/Source/*.h - cd ${CMAKE_CONFIG_DIR}/CMake/Source; ${MAKE} CMakeBuildTargets - -depend: ${CMAKE} ${SUBDIR_DEPEND} - ${MAKE} -${MAKEFLAGS} CMakeTargets.make - - -clean: ${SUBDIR_CLEAN} - rm -f ${SRC_OBJ} ${EXECUTABLES} ${TARGETS} - -CMakeTargets.make: ${CMAKE} ${srcdir}/CMakeLists.txt ${CMAKE_CONFIG_DIR}/CMakeCache.txt - ${CMAKE} ${currentdir}/CMakeLists.txt -S${currentdir} -O${currentbindir} -H${topdir} -B${CMAKE_CONFIG_DIR} - -rebuild_cache: ${CMAKE_CONFIG_DIR}/CMakeCache.txt - ${CMAKE} ${topdir}/CMakeLists.txt -MakeCache -S${topdir} -O${CMAKE_CONFIG_DIR} -H${topdir} -B${CMAKE_CONFIG_DIR} - -${CMAKE_CONFIG_DIR}/CMakeCache.txt: - ${CMAKE} ${topdir}/CMakeLists.txt -MakeCache -S${topdir} -O${CMAKE_CONFIG_DIR} -H${topdir} -B${CMAKE_CONFIG_DIR} - - -install: ${BUILD_LIB_FILE} - @echo "Installing ${BUILD_LIB_FILE}" - ${INSTALL} -m 755 $(BUILD_LIB_FILE) $(LIB_INSTALL_DIR)/$(BUILD_LIB_FILE) diff --git a/CMakeSimpleRules.make.in b/CMakeSimpleRules.make.in deleted file mode 100644 index cb95e29bb..000000000 --- a/CMakeSimpleRules.make.in +++ /dev/null @@ -1,15 +0,0 @@ -# this file contains the most basic rules. This is used -# in the CMake/Source/Makefile.in to avoid infinite recursion -# in the rule for all: - -# set up make suffixes - -.SUFFIXES: .cxx .java .class - -#------------------------------------------------------------------------------ -# rules for building .o files from source files - -.c.o: - ${CC} ${CC_FLAGS} -c $< -o $@ -.cxx.o: - ${CXX} ${CXX_FLAGS} -c $< -o $@ diff --git a/CMakeTargets.make.in b/CMakeTargets.make.in deleted file mode 100644 index a9405ecd7..000000000 --- a/CMakeTargets.make.in +++ /dev/null @@ -1,5 +0,0 @@ -#empty file used by configure to generate initial targets.make files -#if you find this as a make error, then the autoconf system is not -#working, send for help on the insight mailing list... - - diff --git a/CMakeTopMakefileTemplate.in b/CMakeTopMakefileTemplate.in deleted file mode 100644 index de09db97e..000000000 --- a/CMakeTopMakefileTemplate.in +++ /dev/null @@ -1,8 +0,0 @@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -topall: - cd . ; ${MAKE} -${MAKEFLAGS} CMakeTargets.make - cd . ; ${MAKE} -${MAKEFLAGS} all - -include @CMAKE_CONFIG_DIR@/CMake/CMakeMaster.make diff --git a/CMakeVariables.make.in b/CMakeVariables.make.in deleted file mode 100644 index 8ed9d874b..000000000 --- a/CMakeVariables.make.in +++ /dev/null @@ -1,92 +0,0 @@ - -# ***** BEGIN VARIBLES THAT CAN BE OVERRIDDEN IN CMakeLocal.make.in ************** -# CMakeLocal.make.in should be in the directory where you run configure -# in, which need not be the source directory - -# The following LOCAL_* variables can be overridden in the CMakeLists.txt -# files directly, inside the VERBATIM section. However, that will -# not be used on the windows build, so keep it to unix things. -# -# use this to add targets to the default all -# so they are built when make is run by default -# LOCAL_BUILD_TARGETS = - -# use this flag to add -L and -l options to the link line -# LOCAL_LINK_FLAGS = - -# use this flag to add -I flags to the compile line -# LOCAL_INCLUDE_FLAGS = - -# use this flag to add compiler options like -g -O, etc -# for the "C" compiler, for gcc these default to -g -O2 -USER_CFLAGS = @CFLAGS@ - -# use this flag to add compiler options like -g -O, etc -# for the "C++" compiler, for gcc these default to -g -O2 -USER_CXXFLAGS = @CXXFLAGS@ - -# ***** END VARIBLES THAT CAN BE OVERRIDDEN IN CMakeLocal.make.in ************** - - -# This is the path to the top of the Source tree -topdir = @fullSrcDir@ - -# This is the directory that contains the source for the CMakeLists.txt file -currentdir = `cd ${srcdir}; pwd` - -# This is the directory that contains the output for the CMakeLists.txt file -currentbindir = `pwd` - -# This is the directory configure was run in -# where the binaries will be placed -CMAKE_CONFIG_DIR = @CMAKE_CONFIG_DIR@ - -# the standard shell for make -SHELL = /bin/sh - -RANLIB = @RANLIB@ -CC = @CC@ -CFLAGS = @CMAKE_SHLIB_CFLAGS@ @CMAKE_ANSI_CFLAGS@ - -CXX = @CXX@ -CXXFLAGS = @CMAKE_SHLIB_CFLAGS@ @CMAKE_TEMPLATE_FLAGS@ - -X_EXTRA_LIBS = @X_EXTRA_LIBS@ -X_PRE_LIBS = @X_PRE_LIBS@ -XLIBS = @X_LIBS@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ -LIB_RUNTIME_DIR = @exec_prefix@/lib - -CMAKE_SHLIB_BUILD_FLAGS = @CMAKE_SHLIB_BUILD_FLAGS@ -CMAKE_SHLIB_LINK_FLAGS = @CMAKE_SHLIB_LINK_FLAGS@ -DL_LIBS = @CMAKE_DL_LIBS@ -SHLIB_LD_LIBS = @CMAKE_SHLIB_LD_LIBS@ -SHLIB_SUFFIX = @CMAKE_SHLIB_SUFFIX@ -THREAD_LIBS = @CMAKE_THREAD_LIBS@ - -# install support -# -# The following definition can be set to non-null for special systems -# like AFS with replication. It allows the pathnames used for installation -# to be different than those used for actually reference files at -# run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix -# when installing files. -INSTALL_ROOT = -LIB_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/lib -BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin - -# set up the path to the rulesgen program -CMAKE = @CMAKE_CONFIG_DIR@/CMake/Source/CMakeBuildTargets - -# C++ compile flags, INCLUDE_FLAGS is set in CMakeTargets.make which -# is generated by CMakeBuildTargets, see CMake/Source - -CXX_FLAGS = ${CPPFLAGS} ${USER_CXXFLAGS} ${CXXFLAGS} ${INCLUDE_FLAGS} - -# C compile flags, INCLUDE_FLAGS is set in CMakeTargets.make which -# is generated by CMakeBuildTargets, see CMake/Source - -CC_FLAGS = ${CPPFLAGS} ${USER_CFLAGS} ${CFLAGS} ${INCLUDE_FLAGS} - - diff --git a/CMakeWindowsSystemConfig.cmake b/CMakeWindowsSystemConfig.cmake deleted file mode 100644 index a1ca68507..000000000 --- a/CMakeWindowsSystemConfig.cmake +++ /dev/null @@ -1,9 +0,0 @@ -# -# CMakeLocal.make.in should be in the directory where you run configure -# in, which need not be the source directory -# -SET (WORDS_BIGENDIAN ) -SET (HAVE_LIMITS_H 1) -SET (HAVE_UNISTD_H 1) -SET (CXX VC++60) -