]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/MAI/bios_emulator/scitech/bin/set-vars-freebsd.sh
* Patch by Thomas Frieden, 13 Nov 2002:
[karo-tx-uboot.git] / board / MAI / bios_emulator / scitech / bin / set-vars-freebsd.sh
1 #! /bin/sh
2
3 # LINUX VERSION
4 # Set the place where SciTech Software is installed, and where each
5 # of the supported compilers is installed. These environment variables
6 # are used by the batch files in the SCITECH\BIN directory.
7 #
8 # Modify the as appropriate for your compiler configuration (you should
9 # only need to change things in this batch file).
10 #
11 # This version is for a normal Linux installation.
12
13 # The SCITECH variable points to where batch files, makefile startups,
14 # include files and source files will be found when compiling.
15
16 export SCITECH=$MGL_ROOT 
17
18 # The SCITECH_LIB variable points to where the SciTech libraries live
19 # for installation and linking. This allows you to have the source and
20 # include files on local machines for compiling and have the libraries
21 # located on a common network machine (for network builds).
22
23 export SCITECH_LIB=$SCITECH
24
25 # The PRIVATE variable points to where private source files reside that
26 # do not live in the public source tree
27
28 export PRIVATE=$HOME/private
29
30 # The following define the locations of all the compilers that you may
31 # be using. Change them to reflect where you have installed your
32 # compilers.
33
34 export GCC_PATH=/usr/bin
35
36 # Add the Scitech bin path to the current PATH
37 export PATH=$SCITECH/bin:$SCITECH/bin-freebsd:$PATH