After having successfully configured and compiled the EMBOSS package then all the libraries and applications need installing to the directory tree you specified when you used the --prefix
option of the configure
command. This is done using one command:
make install |
In fact, if the compilation had not already been done by typing make
alone, then the above command would perform both the compilation and installation. We recommend, however, that you separate the two phases as we've described them; it helps in detecting where any failures may have happened.
Similarly to the compilation phase, many hundreds of lines will scroll up the screen. It is very rare for there to be errors in the installation phase as long as you checked that you had write permission in the directory tree you specified using --prefix
in the configuration. If all has gone well then the last few lines of the installation output will look something like this.
make[3]: Leaving directory `/usr/local/src/EMBOSS-6.1.0/jemboss'
make[2]: Leaving directory `/usr/local/src/EMBOSS-6.1.0/jemboss'
make[1]: Leaving directory `/usr/local/src/EMBOSS-6.1.0/jemboss'
make[1]: Entering directory `/usr/local/src/EMBOSS-6.1.0'
make[2]: Entering directory `/usr/local/src/EMBOSS-6.1.0'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/usr/local/src/EMBOSS-6.1.0'
make[1]: Leaving directory `/usr/local/src/EMBOSS-6.1.0'
%
We recommend that you do not delete the EMBOSS source code tree. This is particularly important if you decided not to give a --prefix
option to the configure
command. For an explanation see Section 1.6.3, “Deleting the EMBOSS Package”.