aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.defn
diff options
context:
space:
mode:
Diffstat (limited to 'src/make.configuration.defn')
-rw-r--r--src/make.configuration.defn13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
index 75357f2..5457011 100644
--- a/src/make.configuration.defn
+++ b/src/make.configuration.defn
@@ -1,20 +1,13 @@
# make.configuration.defn for IOPanda
+# $Header$
# make sure that IOPanda was configured with PUGH and MPI
ifeq ($(findstring CactusPUGH/PUGH,$(THORNS)),)
-.pseudo: MissingPUGHinIOPanda
-MissingPUGHinIOPanda:
- @echo "IOPanda: requires PUGH"
- @echo "IOPanda: Please add CactusPUGH/PUGH or remove IOPanda from Thornlist !"
- exit 2
+ $(error "IOPanda requires PUGH. Please add CactusPUGH/PUGH or remove IOPanda from Thornlist !")
endif
MPI_CONFIGURED := $(shell grep -l CCTK_MPI $(CONFIG)/cctk_Extradefs.h)
ifneq ("$(MPI_CONFIGURED)", "$(CONFIG)/cctk_Extradefs.h")
-.pseudo: MissingMPIinIOPanda
-MissingMPIinIOPanda:
- @echo "IOPanda: requires MPI"
- @echo "IOPanda: Please configure with MPI or remove IOPanda from Thornlist !"
- exit 2
+ $(error "IOPanda requires MPI. Please configure with MPI or remove IOPanda from Thornlist !")
endif