aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/make.code.defn7
-rw-r--r--src/make.configuration.defn4
-rw-r--r--src/make.configuration.deps6
3 files changed, 17 insertions, 0 deletions
diff --git a/src/make.code.defn b/src/make.code.defn
new file mode 100644
index 0000000..ae2b14c
--- /dev/null
+++ b/src/make.code.defn
@@ -0,0 +1,7 @@
+# Main make.code.defn file for thorn OpenMPI
+
+# Source files in this directory
+SRCS =
+
+# Subdirectories containing source files
+SUBDIRS =
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
new file mode 100644
index 0000000..a577923
--- /dev/null
+++ b/src/make.configuration.defn
@@ -0,0 +1,4 @@
+# make.configuration.defn file for thorn OpenMPI
+
+# Define the relevant OpenMPI utilities
+#ALL_UTILS += mpirun ompi-clean ompi-iof ompi-ps ompi-server ompi_info orte-clean orte-iof orte-ps orted orterun
diff --git a/src/make.configuration.deps b/src/make.configuration.deps
new file mode 100644
index 0000000..2e90cbb
--- /dev/null
+++ b/src/make.configuration.deps
@@ -0,0 +1,6 @@
+# make.configuration.deps file for thorn OpenMPI
+
+$(UTIL_DIR)/%: $(OPENMPI_DIR)/bin/%
+ @echo "Copying $* from $< to $(UTIL_DIR)"
+ -$(MKDIR) $(MKDIRFLAGS) $(UTIL_DIR) 2> /dev/null
+ cp $< $@