Ask a Question | Search DSPSR: |
Home
|
DSPSR: installation directoryThe installation directory is the directory to which all build products (header files, libraries, executables, and runtime data) will be installed when you type make install. The installation directory is set when you run the configure script, and is stored in the variable, prefix. When you type make install, build products are installed in$prefix/include $prefix/lib $prefix/bin $prefix/shareThere are currently three ways in which the installation directory can be specified. 1. Default installationThe default installation directory is $PSRHOME/$LOGIN_ARCH. If the PSRHOME environment variable is not set, /usr/local will be used instead.2. Arbitrary installationAs with any package that is configured and built using the GNU autotools, the install directory may be specified using the --prefix argument to the configure script.Changing the installation directoryIt is possible to install build products in a directory other than the installation directory that was set when the configure script was run. It is not necessary to make distclean, nor must the configure script be run again. Simply runmake install prefix=desired_install_path
|