aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.defn
diff options
context:
space:
mode:
authorallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>1999-10-24 11:35:35 +0000
committerallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>1999-10-24 11:35:35 +0000
commit7e150dc433001ac58431225bb77734f78958be87 (patch)
tree97025087609b511ed927084a3db085a93c5eaa94 /src/make.configuration.defn
parent8cddb3fc074498571f48de051ccfdd18ef0bd75c (diff)
Changing the way of checking if PUGH etc is compiled
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@56 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/make.configuration.defn')
-rw-r--r--src/make.configuration.defn18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
index 55fefa5..67f7cd5 100644
--- a/src/make.configuration.defn
+++ b/src/make.configuration.defn
@@ -2,20 +2,18 @@
# make sure that IOFlexIO was configured with IEEEIO and PUGH
-ifneq ($(strip $(HAVE_IEEEIO)),yes)
-$(NAME): MissingIEEEIO
-.pseudo: MissingIEEEIO
-MissingIEEEIO:
+ifeq ($(findstring external/IEEEIO,$(THORNS)),)
+.pseudo: MissingIEEEIOinFlexIO
+MissingIEEEIOinFlexIO:
@echo "IOFlexIO: requires IEEEIO"
- @echo "IOFlexIO: Please configure Cactus with thorn external/IEEEIO or remove IOFlexIO from Thornlist !"
+ @echo "IOFlexIO: Please add external/IEEEIO or remove IOFlexIO from Thornlist !"
exit 2
endif
-ifneq ($(strip $(HAVE_PUGH)),yes)
-$(NAME): MissingPUGH
-.pseudo: MissingPUGH
-MissingPUGH:
+ifeq ($(findstring CactusPUGH/PUGH,$(THORNS)),)
+.pseudo: MissingPUGHinIOFlexIO
+MissingPUGHinIOFlexIO:
@echo "IOFlexIO: requires PUGH"
- @echo "IOFlexIO: Please configure Cactus with thorn CactusPUGH/PUGH or remove IOFlexIO from Thornlist !"
+ @echo "IOFlexIO: Please add CactusPUGH/PUGH or remove IOFlexIO from Thornlist !"
exit 2
endif