aboutsummaryrefslogtreecommitdiff
path: root/board/MAI/bios_emulator/scitech/bin/set-vars-beos.sh
blob: 0a272d6a4623efbde6b64f8630b66a2153a40cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#! /bin/sh

# BeOS VERSION
# Set the place where SciTech Software is installed, and where each
# of the supported compilers is installed. These environment variables
# are used by the batch files in the SCITECH\BIN directory.
#
# Modify the as appropriate for your compiler configuration (you should
# only need to change things in this batch file).
#
# This version is for a normal BeOS installation.

# The SCITECH variable points to where batch files, makefile startups,
# include files and source files will be found when compiling.

export SCITECH=$MGL_ROOT 

# The SCITECH_LIB variable points to where the SciTech libraries live
# for installation and linking. This allows you to have the source and
# include files on local machines for compiling and have the libraries
# located on a common network machine (for network builds).

export SCITECH_LIB=$SCITECH

# The PRIVATE variable points to where private source files reside that
# do not live in the public source tree

export PRIVATE=$HOME/private

# The following define the locations of all the compilers that you may
# be using. Change them to reflect where you have installed your
# compilers.

export GCC_PATH=/boot/develop/tools/gnupro/bin

# Add the Scitech bin path to the current PATH
export PATH=$SCITECH/bin:$SCITECH/bin-beos:$PATH
#if [ "x$LIBC" = x ]; then
#	export PATH=$PATH:$SCITECH/bin-beos/glibc
#else
#	export PATH=$PATH:$SCITECH/bin-beos/libc
#fi