summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-22 11:00:07 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-22 11:00:07 +0000
commit6e672eb319eebb16951cacb42dc4b6456594aceb (patch)
tree96047732e262852ddd98743383cb42a76f319e3b /Makefile
parent9f97053dbc989e3455c4308254c3398860a20e4a (diff)
Some more stuff to do with precision and variables.
Now the floating point precision is controlled with REAL_PRECISION with allowed values 16,8,4 , default 8. This maps onto a #define of CCTK_REAL_PRECISION_* . Comples types CCTK_COMPLEX* and CCTK_COMPLEX, as well as the character type CCTK_CHAR have also been defined. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@559 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index eab459b4..7e546644 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
#
#
# @enddesc
-# @version $Id: Makefile,v 1.27 1999-06-22 09:09:02 goodale Exp $
+# @version $Id: Makefile,v 1.28 1999-06-22 11:00:05 goodale Exp $
# @@*/
# Make quietly unless told not to
@@ -99,9 +99,9 @@ SETUP_ENV += LDFLAGS=$(LDFLAGS) ; export LDFLAGS ;
endif
endif
-ifdef PRECISION
-ifneq ($(strip $(origin PRECISION)), default)
-SETUP_ENV += PRECISION=$(PRECISION) ; export PRECISION ;
+ifdef REAL_PRECISION
+ifneq ($(strip $(origin REAL_PRECISION)), default)
+SETUP_ENV += REAL_PRECISION=$(REAL_PRECISION) ; export REAL_PRECISION ;
endif
endif