Overview
Comment: | *** empty log message *** |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1a9de51a7521998bab22b9956c56021e |
User & Date: | gawthrop@users.sourceforge.net on 2000-05-16 11:41:23 |
Other Links: | branch diff | manifest | tags |
Context
2000-05-16
| ||
11:42:14 | Addded /usr/lib/libp2c.a to gcc check-in: 01ab033260 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:41:23 | *** empty log message *** check-in: 1a9de51a75 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-05-15
| ||
08:51:55 | Now zaps comments (lines starting with #) check-in: d1439881e3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mttrc from [c8c42a9244] to [cab79a6381].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.8 1998/07/17 19:48:46 peterg ## *** empty log message *** ## ## Revision 1.7 1998/03/24 09:11:49 peterg ## Compatible with .csh version ## ## Revision 1.6 1998/03/13 11:53:29 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.9 1999/03/11 04:02:19 peterg ## Revised so that sh2csh does its stuff. ## ## Revision 1.8 1998/07/17 19:48:46 peterg ## *** empty log message *** ## ## Revision 1.7 1998/03/24 09:11:49 peterg ## Compatible with .csh version ## ## Revision 1.6 1998/03/13 11:53:29 peterg |
︙ | ︙ | |||
48 49 50 51 52 53 54 | export MAKE='make' # The following sets up the c compiler export CC='gcc' # Setup the paths export PATH=$PATH\:$MTTPATH\:$MTTPATH/trans | | | > | | > > | > > > > > > > > > | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | export MAKE='make' # The following sets up the c compiler export CC='gcc' # Setup the paths export PATH=$PATH\:$MTTPATH\:$MTTPATH/trans export MATRIX_PATH=$MTTPATH/trans/m\:$MTTPATH/trans/m/emulator\:$MTTPATH/lib/comp/simple\:$MTTPATH/lib/control/PPP export MTT_COMPONENTS=$MTTPATH/lib/comp export MTT_CRS=$MTTPATH/lib/cr export MTT_EXAMPLES=$MTTPATH/lib/examples export MTT_LIB=$MTTPATH/lib #Ask octave to tell me its path #export OCTAVE_LOAD_PATH=`mtt_octave_path` export OCTAVE_LOAD_PATH=`mtt_octave_path` #Setup octave export OCTAVE_PATH=\:.$OCTAVE_LOAD_PATH\:$MATRIX_PATH export MATRIX="octave --path $OCTAVE_PATH" #Setup matlab #MATLABPATH $MATLABPATH\:$MATRIX_PATH #export MATLABPATH= # Setup the symbolic stuff export SYMBOLIC='reduce 64' # Setup xfig export FIG="xfig \ -startfontsize 20 \ -metric \ -portrait \ -startgridmode 2 \ -pheight 21 \ -pwidth 30 \ -library_dir $MTT_LIB/xfig/\ " # Setup ps viewer export PSVIEW='ghostview' # Setup pdf viewer export PDFVIEW='acroread' # Setup html viewer export HTMLVIEW='netscape' # Setup dvi viewer export DVIVIEW='xdvi' # Setup latex2html export LATEX2HTML="latex2html -contents_in_navigation -index_in_navigation -address http://www.mech.gla.ac.uk/~peterg/software/MTT" # Ascend stuff export ASCENDLIBRARY=$MTTPATH/ascend/lib |