Annotation of OpenXM_contrib2/asir2000/INSTALL, Revision 1.1
1.1 ! noro 1: Installation of Asir2000 (standalone version; 2000.9.1)
! 2:
! 3: Any questions are welcome by e-mails to noro@math.kobe-u.aj.jp.
! 4:
! 5: 0. Compiler
! 6:
! 7: On SPARCK, gcc is used. Set the search path so that
! 8: '/usr/ccs/bin' is searched before '/usr/local/bin'.
! 9:
! 10: On PC/x86 gcc is used.
! 11:
! 12: On Alpha the native compiler /usr/ccs/bin/cc is used.
! 13:
! 14: 1. Determining the install directory
! 15:
! 16: In the install directory, the following are put
! 17:
! 18: bin executables of PARI and Asir
! 19: lib library files of PARTI and Asir
! 20: include header files of PARI
! 21:
! 22: These subdirectories are created automatically if they does not exist.
! 23: If you can be a root, it is recommended to install the files in '
! 24: /usr/local/lib'. Otherwise select a directory. In the following the
! 25: directory is denoted by TARGETDIR.
! 26:
! 27: 2. Installation of pari-2.0.17.beta
! 28:
! 29: % gzip -dc pari-2.0.17.beta.tgz | tar xvf -
! 30: % cd pari-2.0.17.beta
! 31: % ./Configure --prefix=TARGETDIR
! 32: % make all
! 33: % su <-- if necessary
! 34: # make install
! 35: # make install-lib-sta
! 36: # exit
! 37: %
! 38:
! 39: 3. Installation of asir2000
! 40:
! 41: % gzip -dc asir2000.tgz | tar xvf -
! 42: % cd asir2000
! 43: % configure TARGETDIR
! 44: % xmkmf -a
! 45: % make
! 46: % su <-- if necessary
! 47: # make install
! 48: # make install2
! 49: # exit
! 50: %
! 51:
! 52: 3. Environment variables
! 53:
! 54: If TARGETDIR is '/usr/local/lib', then no settings of environment variabls
! 55: are required. If ASIR_LIBDIR is already set, unset it.
! 56: If TARGETDIR is not '/usr/local/lib', then set the environment variable
! 57: ASIR_LIBDIR to TARGETDIR/asir.
! 58:
! 59: 4. Making manuals
! 60:
! 61: 'ptex', 'texi2html', 'makeinfo' (ver. 1.68 or later) are required.
! 62:
! 63: % gzip -dc asir2000-man.tgz | tar xvf -
! 64: % cd asirdoc
! 65: % make
! 66:
! 67:
! 68:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>