aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@b716e942-a2de-43ad-8f52-f3dfe468e4e7>2004-08-02 14:06:32 +0000
committerschnetter <schnetter@b716e942-a2de-43ad-8f52-f3dfe468e4e7>2004-08-02 14:06:32 +0000
commit19447b2ea3793079d1617d960d74e37e11b084d7 (patch)
treeae5aa92ccd35e71b68828b4928094190772a869b
parent23e8aafa953c384d8a2244ecf66731aed7c61a19 (diff)
Require Lapack when configuring.
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinUtils/TGRtensor/trunk@17 b716e942-a2de-43ad-8f52-f3dfe468e4e7
-rw-r--r--src/make.configuration.defn7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
new file mode 100644
index 0000000..1728ea5
--- /dev/null
+++ b/src/make.configuration.defn
@@ -0,0 +1,7 @@
+# Main make.configuration.defn file for thorn TGRtensor -*-Makefile-*-
+# $Header$
+
+# Ensure that LAPACK is available
+ifeq ($(strip $(HAVE_LAPACK)), )
+ $(error Configuration error: The thorn TGRtensor requires LAPACK. Please configure with LAPACK, or remove the thorn TGRtensor from the ThornList.)
+endif