From 32be5083536e7d0aff2dd5230107d40638a47e95 Mon Sep 17 00:00:00 2001
From: Stefano Serafin <stefano.serafin@univie.ac.at>
Date: Mon, 20 Mar 2023 16:31:23 +0000
Subject: [PATCH] ICON.md, minor edits for clarity

---
 ICON.md | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/ICON.md b/ICON.md
index 2e42b16..f011e54 100644
--- a/ICON.md
+++ b/ICON.md
@@ -101,18 +101,18 @@ ICON can be downloaded and used under a [personal non-commercial research licens
 
 1. Prepare for an out-of-source build. Create a build directory wherever you want and move into it. In the build directory, execute `jet.ifort.sh` (the configuration script above)
     ```sh
-    /jetfs/home/serafin/ICON/icon-2.6.6/config/univie/jet.ifort.sh
+    (mypy36) [serafin@jet01 jet]$ /jetfs/home/serafin/ICON/icon-2.6.6/config/univie/jet.ifort.sh
     ```
 
 1. Set the `LD_LIBRARY_PATH` environmental variable so that the Intel Math Library is accessible during compilation:
     ```sh
-    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/jetfs/spack/opt/spack/linux-rhel8-skylake_avx512/intel-20.0.2/intel-parallel-studio-composer.2020.2-zuot22yfoe7jl67ttimvkzghwluvyaas/lib/intel64_lin
+    (mypy36) [serafin@jet01 jet]$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/jetfs/spack/opt/spack/linux-rhel8-skylake_avx512/intel-20.0.2/intel-parallel-studio-composer.2020.2-zuot22yfoe7jl67ttimvkzghwluvyaas/lib/intel64_lin
     ```
     The code will not build otherwise. Setting this variable may have to be necessary even at runtime (not tested yet!).
 
 1. Compile the code by running the following in the build directory (`-j8` is optional, it's only about running multiple compile jobs in parallel):
     ```sh
-    make -j8
+    (mypy36) [serafin@jet01 jet]$ make -j8
     ```
 
 1. Copy in the build directory all the files needed to generate the ICON run scripts. The easiest way to do so is to use the following script (after editing the paths `ICON_SRC_DIR` and `ICON_BUILD_DIR`):
@@ -135,3 +135,7 @@ ICON can be downloaded and used under a [personal non-commercial research licens
     ln -sf $ICON_SRC_DIR/data
     ln -sf $ICON_SRC_DIR/vertical_coord_tables
     ```
+    You may call it `copy_make_runscripts.sh`, then give it execution permissions and run it:
+    ```sh
+    (mypy36) [serafin@jet01 jet]$ ./copy_make_runscripts.sh     
+    ```
-- 
GitLab