# /*@@ # @file make.config.defn.in # @date Sun Jan 17 22:33:51 1999 # @author Tom Goodale # @desc # Make definition file for a configuration # Defines the conpilers, etc. # # Should be run through autoconf to produce make.config.defn # @enddesc # @version $Id$ # @@*/ # Compiler/executable info SHELL = @SHELL@ MKDIR = @MKDIR@ CC = @CC@ CXX = @CXX@ F90 = @F90@ F77 = @F77@ CPP = @CPP@ LD = @LD@ AR = @AR@ RANLIB = @RANLIB@ PERL = @PERL@ CFLAGS = @CFLAGS@ CXXFLAGS = @CXXFLAGS@ F90FLAGS = @F90FLAGS@ F77FLAGS = @F77FLAGS@ LDFLAGS = @LDFLAGS@ ARFLAGS = @ARFLAGS@ # Most compilers use -c -o to compile only, some do something different CCOMPILEONLY = @CCOMPILEONLY@ FCOMPILEONLY = @FCOMPILEONLY@ # Most compilers use -o for naming the executable, alas some don't CREATEEXE = @CREATEEXE@ # On Unix a / DIRSEP = @DIRSEP@ EMPTY_VAR = # Nothing. Leading space is removed. # Mostly a single space, sometimes nothing at all OPTIONSEP = @OPTIONSEP@ # Some architectures need to do something special for linking in libraries CACTUSLIBLINKLINE= @CACTUSLIBLINKLINE@ C_DEPEND = @C_DEPEND@ CXX_DEPEND = @CXX_DEPEND@ # Command used to get the working directory GET_WD = @GET_WD@ # Library info LIBS = @LIBS@ LIBDIRS = @LIBDIRS@ # System include directories SYS_INC_DIRS = @SYS_INC_DIRS@ # Stuff for the architecture OS = @host_os@ CPU = @host_cpu@ VENDOR = @host_vendor@ # Where the CCTK puts things PACKAGE_DIR = $(CCTK_HOME)/@PACKAGE_DIR@ BUILD_DIR = $(TOP)/@BUILD_DIR@ CCTK_LIBDIR = $(TOP)/@CCTK_LIBDIR@ #The perl scripts run by the make system BUILD_ACTIVETHORNS = @BUILD_ACTIVETHORNS@ CST = @CST@ C_FILE_PROCESSOR = @C_FILE_PROCESSOR@ F_FILE_PROCESSOR = @F_FILE_PROCESSOR@ # The directory in which to place the executable EXEDIR = @EXEDIR@ # The name of the executable EXE = $(EXEDIR)/@EXE@