https://hal.archives-ouvertes.fr/hal-03445821
INSTALL
SCEDA installation instructions:
--------------------------------
0-Prerequisites
To compile SCEDA, you need GNU Make, Doxygen and a C compiler (gcc
for instance).
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 SCEDA by
changing the value of TARGET variable. This can also be modified in
the manner you call the "make install" command below.
2-Launch the compilation & installation process, ie being in SCEDA
root directory, type:
make install
or to install in a specified directory:
make install TARGET=/path/to/SCEDA
To generate the documentation (uses Doxygen), type:
make doc
To compile all the examples, type:
make examples SCEDA=/path/to/SCEDA
(replace the /path/to/SCEDA with the path you just used for installing SCEDA)