aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/make.configuration.defn12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
new file mode 100644
index 0000000..70796a4
--- /dev/null
+++ b/src/make.configuration.defn
@@ -0,0 +1,12 @@
+# make.configuration.defn for IOFlexIO
+
+# make sure that IOFlexIO was configured with IEEEIO
+
+ifeq ($(strip $(HAVE_IEEEIO)), )
+$(NAME): MissingIEEEIO
+.pseudo: MissingIEEEIO
+MissingIEEEIO:
+ @echo "IOFlexIO: requires IEEEIO"
+ @echo "IOFlexIO: Please configure Cactus with thorn external/IEEEIO or remove IOFlexIO from Thornlist !"
+ exit 2
+endif