summaryrefslogtreecommitdiff
path: root/lib/make/make.config.defn.in
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-20 17:26:52 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-20 17:26:52 +0000
commite864c32e6910469ef4866ad40a72a232ee4bd822 (patch)
tree575511e409b4b31b3e8fd1d374434bfc3055db66 /lib/make/make.config.defn.in
parent4eff4db6899301b7b7d4286a0bc18f7970090914 (diff)
Can now pass options to the configure script
use make <config> options=<option-file-name> when making a new configuration. <option-file-name> has the format of keyword value or keyword = value Note that even though it will allow a vlue to be blank, the configure script itself will ignore this, so it's not so easy to tell it to ignore, say, your f90 compiler. The configure script now uses the f90 compiler for f77, or the f77 compiler if there is no f90 compiler. The configure.pl script will produce a dummy fortran_name perl script if there is no fortran compiler. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@319 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.config.defn.in')
-rw-r--r--lib/make/make.config.defn.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/make/make.config.defn.in b/lib/make/make.config.defn.in
index 93ac120e..0faf7fba 100644
--- a/lib/make/make.config.defn.in
+++ b/lib/make/make.config.defn.in
@@ -11,6 +11,8 @@
# @version $Id$
# @@*/
+# Compiler/executable info
+
SHELL = @SHELL@
MKDIR = @MKDIR@
CC = @CC@
@@ -34,6 +36,17 @@ LDFLAGS = @LDFLAGS@
ARFLAGS = @ARFLAGS@
+# Library info
+
+LIBS = @LIBS@
+LIBDIRS = @LIBDIRS@
+
+# 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@