Before building HELLO module, please ensure that SALOME environment is set properly. Assume that SALOME environment is set in env_products.sh script. In order to build and install HELLO module, you have to perform several steps:
[bash% ] source env_products.sh [bash% ] mkdir HELLO_BUILD [bash% ] cd HELLO_BUILD [bash% ] ../HELLO1_SRC/build_configure [bash% ] ../HELLO1_SRC/configure --prefix=<HELLO_module_installation_dir> [bash% ] make [bash% ] make install
The first command creates a build directory for the HELLO module. Then next step is to cd to this build directory. From this directory you sequentially invoke build_configure, configure, make and make install commands. On each step, you have to ensure that the operation is finished correctly (no errors raised).
The <HELLO_module_installation_dir> variable above defines the destination directory to which the HELLO module should be installed. After the last step is finished, the HELLO module is built and installed to the <HELLO_module_installation_dir> directory.