aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/make.configuration.defn
diff options
context:
space:
mode:
authorschnetter <>2004-03-10 13:37:00 +0000
committerschnetter <>2004-03-10 13:37:00 +0000
commit227bda2069080ade51dfcdbe555abc2f58734ab1 (patch)
treeca941a8c4d8516eefb6ec4503edcfd4f115d44de /Carpet/CarpetLib/src/make.configuration.defn
parent4c86cebb1b084235a326959d7a871363030eeaab (diff)
Use $(error) instead of an unsatisfied dependency to report
Use $(error) instead of an unsatisfied dependency to report configuration errors. darcs-hash:20040310133726-07bb3-ec669f47cedd8c04cf4efc96503a25ff21be6496.gz
Diffstat (limited to 'Carpet/CarpetLib/src/make.configuration.defn')
-rw-r--r--Carpet/CarpetLib/src/make.configuration.defn10
1 files changed, 2 insertions, 8 deletions
diff --git a/Carpet/CarpetLib/src/make.configuration.defn b/Carpet/CarpetLib/src/make.configuration.defn
index 50a8bf329..443d421fb 100644
--- a/Carpet/CarpetLib/src/make.configuration.defn
+++ b/Carpet/CarpetLib/src/make.configuration.defn
@@ -1,13 +1,7 @@
# Main make.configuration.defn file for thorn CarpetLib -*-Makefile-*-
-# $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/make.configuration.defn,v 1.2 2002/09/01 18:36:48 schnetter Exp $
+# $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/make.configuration.defn,v 1.3 2004/03/10 14:37:26 schnetter Exp $
# Ensure that MPI is available
ifeq ($(origin MPI_LIBS),undefined)
-$(NAME): MissingMPI
-.PHONY: MissingMPI
-MissingMPI:
- @echo "Configuration error:"
- @echo "Thorn CarpetLib requires MPI"
- @echo "Please configure with MPI, or remove CarpetLib from ThornList"
- exit 2
+ $(error "Configuration error: The Carpet thorns require MPI. Please configure with MPI, or remove the Carpet thorns from the ThornList.")
endif