https://hal.archives-ouvertes.fr/hal-03445821
Raw File
INSTALL
RS installation instructions:
-----------------------------

0-Prerequisites

To compile RS, you need GNU Make, Doxygen and a C compiler (gcc for
instance). You also need SCEDA, libxml2 and GDD (headers and
libraries).

1-Customise make options in the Makefile.config file.

A default configuration script Makefile.config.linux is given. In most
cases, it is sufficient to create a symbolic link from this file to
Makefile.config, ie:

ln -s Makefile.config.linux Makefile.config

You might want to modify the target installation path of RS by
changing the value of TARGET variable. This can also be modified in
the manner you call the "make install" command below.

You may also adjust the SCEDA variable as well as GDD variable (or the
LIBHOME variable) so that they point to the library installation
paths.

2-Launch the compilation & installation process, ie being in RS root
directory, type:

make install

or to install in a specified directory:

make install TARGET=/path/to/RS

To generate the documentation (uses Doxygen), type:

make doc

To compile all the examples, type:

make examples RS=/path/to/RS GDD=/path/to/GDD SCEDA=/path/to/SCEDA

(replace the /path/to/RS with the path you just used for
installing RS)
back to top