2000-09-12 13:30:35 +04:00
|
|
|
|
|
|
|
# ***** 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
|
|
|
|
|
2000-09-18 17:19:38 +04:00
|
|
|
# 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.
|
|
|
|
#
|
2000-09-12 13:30:35 +04:00
|
|
|
# use this to add targets to the default all
|
|
|
|
# so they are built when make is run by default
|
2000-09-18 17:19:38 +04:00
|
|
|
# LOCAL_BUILD_TARGETS =
|
2000-09-12 13:30:35 +04:00
|
|
|
|
|
|
|
# use this flag to add -L and -l options to the link line
|
2000-09-18 17:19:38 +04:00
|
|
|
# LOCAL_LINK_FLAGS =
|
2000-09-12 13:30:35 +04:00
|
|
|
|
|
|
|
# use this flag to add -I flags to the compile line
|
2000-09-18 17:19:38 +04:00
|
|
|
# LOCAL_INCLUDE_FLAGS =
|
2000-09-12 13:30:35 +04:00
|
|
|
|
|
|
|
# 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
|
2000-08-29 18:56:51 +04:00
|
|
|
topdir = @fullSrcDir@
|
|
|
|
|
2000-09-12 14:44:19 +04:00
|
|
|
# This is the directory that contains the source for the CMakeLists.txt file
|
|
|
|
currentdir = `cd ${srcdir}; pwd`
|
|
|
|
|
2001-02-15 21:30:13 +03:00
|
|
|
# This is the directory that contains the output for the CMakeLists.txt file
|
|
|
|
currentbindir = `pwd`
|
|
|
|
|
2000-09-12 13:30:35 +04:00
|
|
|
# This is the directory configure was run in
|
|
|
|
# where the binaries will be placed
|
|
|
|
CMAKE_CONFIG_DIR = @CMAKE_CONFIG_DIR@
|
2000-08-29 18:56:51 +04:00
|
|
|
|
2000-09-12 13:30:35 +04:00
|
|
|
# the standard shell for make
|
2000-08-29 18:56:51 +04:00
|
|
|
SHELL = /bin/sh
|
|
|
|
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
CC = @CC@
|
2000-09-27 23:01:19 +04:00
|
|
|
CFLAGS = @CMAKE_SHLIB_CFLAGS@ @ANSI_CFLAGS@
|
2000-08-29 18:56:51 +04:00
|
|
|
|
|
|
|
CXX = @CXX@
|
2000-09-27 23:01:19 +04:00
|
|
|
CXXFLAGS = @CMAKE_SHLIB_CFLAGS@ @EXTRA_GCC_FLAG@ @CMAKE_TEMPLATE_FLAGS@
|
2000-08-29 18:56:51 +04:00
|
|
|
|
2000-11-02 18:56:15 +03:00
|
|
|
JAVA = @JAVACOMMAND@
|
|
|
|
JRE = @JAVACOMMAND@
|
2000-10-02 21:50:54 +04:00
|
|
|
JAVAC = @JAVAC@
|
|
|
|
JAR = @JAR@
|
|
|
|
JAVADOC = @JAVADOC@
|
2000-08-29 18:56:51 +04:00
|
|
|
|
2000-10-04 17:58:16 +04:00
|
|
|
TCLSH = @TCLSHCOMMAND@
|
2000-08-29 18:56:51 +04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
BUILD_TCL = @BUILD_TCL@
|
|
|
|
CLEAN_TCL = @CLEAN_TCL@
|
|
|
|
BUILD_JAVA = @BUILD_JAVA@
|
|
|
|
CLEAN_JAVA = @CLEAN_JAVA@
|
|
|
|
BUILD_PYTHON = @BUILD_PYTHON@
|
|
|
|
CLEAN_PYTHON = @CLEAN_PYTHON@
|
|
|
|
|
|
|
|
USE_GRAPHICS_LIBS = @USE_GRAPHICS_LIBS@
|
|
|
|
USE_IMAGING_LIBS = @USE_IMAGING_LIBS@
|
|
|
|
USE_PATENTED_LIBS = @USE_PATENTED_LIBS@
|
|
|
|
USE_CONTRIB_LIBS = @USE_CONTRIB_LIBS@
|
|
|
|
USE_LOCAL_LIBS = @USE_LOCAL_LIBS@
|
|
|
|
|
|
|
|
USE_GRAPHICS_PYTHON = @USE_GRAPHICS_PYTHON@
|
|
|
|
USE_IMAGING_PYTHON = @USE_IMAGING_PYTHON@
|
|
|
|
USE_PATENTED_PYTHON = @USE_PATENTED_PYTHON@
|
|
|
|
USE_CONTRIB_PYTHON = @USE_CONTRIB_PYTHON@
|
|
|
|
USE_LOCAL_PYTHON = @USE_LOCAL_PYTHON@
|
|
|
|
|
|
|
|
USE_GRAPHICS_JAVA = @USE_GRAPHICS_JAVA@
|
|
|
|
USE_IMAGING_JAVA = @USE_IMAGING_JAVA@
|
|
|
|
USE_PATENTED_JAVA = @USE_PATENTED_JAVA@
|
|
|
|
USE_CONTRIB_JAVA = @USE_CONTRIB_JAVA@
|
|
|
|
USE_LOCAL_JAVA = @USE_LOCAL_JAVA@
|
|
|
|
|
|
|
|
TOOLKIT_DEPENDS = @TOOLKIT_DEPENDS@
|
|
|
|
|
2000-09-27 23:01:19 +04:00
|
|
|
CMAKE_TCL_SHLIB_TARGET = @CMAKE_TCL_SHLIB_TARGET@
|
|
|
|
CMAKE_SHLIB_BUILD_FLAGS = @CMAKE_SHLIB_BUILD_FLAGS@
|
|
|
|
CMAKE_SHLIB_LINK_FLAGS = @CMAKE_SHLIB_LINK_FLAGS@
|
2000-08-29 18:56:51 +04:00
|
|
|
DL_LIBS = @DL_LIBS@
|
|
|
|
SHLIB_LD_LIBS = @SHLIB_LD_LIBS@
|
|
|
|
SHLIB_SUFFIX = @SHLIB_SUFFIX@
|
|
|
|
|
|
|
|
THREAD_LIBS = @THREAD_LIBS@
|
|
|
|
|
|
|
|
GRAPHICS_API_OBJ = @GRAPHICS_API_OBJ@
|
|
|
|
GRAPHICS_API_FLAGS = @GRAPHICS_API_FLAGS@ @X_CFLAGS@
|
|
|
|
GRAPHICS_API_LIBS = @GRAPHICS_API_LIBS@
|
|
|
|
|
|
|
|
CONTROLLER_API_OBJ = @CONTROLLER_API_OBJ@
|
|
|
|
CONTROLLER_API_FLAGS = @CONTROLLER_API_FLAGS@
|
|
|
|
CONTROLLER_API_LIBS = @CONTROLLER_API_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 =
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
LIB_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/lib
|
|
|
|
BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin
|
|
|
|
|
2000-08-31 14:36:18 +04:00
|
|
|
# set up the path to the rulesgen program
|
2000-09-12 13:30:35 +04:00
|
|
|
CMAKE = @CMAKE_CONFIG_DIR@/CMake/Source/CMakeBuildTargets
|
2000-08-31 14:36:18 +04:00
|
|
|
KIT_OBJ = ${SRC_OBJ} ${EXTRA_KIT_OBJ}
|
2000-08-31 22:26:38 +04:00
|
|
|
|
2000-08-31 14:36:18 +04:00
|
|
|
|
2000-08-29 18:56:51 +04:00
|
|
|
|
2000-08-31 14:36:18 +04:00
|
|
|
|
2000-09-12 13:30:35 +04:00
|
|
|
# C++ compile flags, INCLUDE_FLAGS is set in CMakeTargets.make which
|
|
|
|
# is generated by CMakeBuildTargets, see CMake/Source
|
2000-08-29 18:56:51 +04:00
|
|
|
|
2000-08-31 14:36:18 +04:00
|
|
|
CXX_FLAGS = ${CPPFLAGS} ${USER_CXXFLAGS} ${CXXFLAGS} \
|
2000-08-29 18:56:51 +04:00
|
|
|
${KIT_FLAGS} ${INCLUDE_FLAGS}
|
|
|
|
|
2000-09-12 13:30:35 +04:00
|
|
|
# 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}
|
2000-08-31 14:36:18 +04:00
|
|
|
|
2000-08-29 18:56:51 +04:00
|
|
|
|