Coding style cleanup
[platform/kernel/u-boot.git] / board / MAI / bios_emulator / scitech / bin / set-vars.bat
1 @echo off
2 REM:=========================================================================
3 REM: Master batch file to set up all necessary environment variables for
4 REM: the SciTech makefile utilities. This batch file should be executed
5 REM: *first* before any other batch files when you start a command shell.
6 REM: You should not need to modify any batch files except this one to
7 REM: configure the makefile utilities.
8 REM:=========================================================================
9
10 REM: Set the place where SciTech Software is installed, and where each
11 REM: of the supported compilers is installed. These environment variables
12 REM: are used by the batch files in the SCITECH\BIN directory.
13 REM:
14 REM: Modify the as appropriate for your compiler configuration (you should
15 REM: only need to change things in this batch file).
16 REM:
17 REM: This version is for a normal MSDOS installation.
18
19 REM: The SCITECH variable points to where batch files, makefile startups,
20 REM: include files and source files will be found when compiling.
21
22 SET SCITECH=c:\scitech
23
24 REM: The SCITECH_LIB variable points to where the SciTech libraries live
25 REM: for installation and linking. This allows you to have the source and
26 REM: include files on local machines for compiling and have the libraries
27 REM: located on a common network machine (for network builds).
28
29 SET SCITECH_LIB=%SCITECH%
30
31 REM: The PRIVATE variable points to where private source files reside that
32 REM: do not live in the public source tree
33
34 SET PRIVATE=c:\private
35
36 REM: The following sets up the path to the SciTech command line utilities
37 REM: for the development operating system. We select either DOS hosted
38 REM: tools or Win32 hosted tools depending on whether you are running
39 REM: on NT or not. Windows 9x users can use the Win32 hosted tools but
40 REM: they run slower, but you will have long filenames if you do this.
41
42 IF .%OS%==.Windows_NT goto Win32_path
43 IF NOT .%WINDIR%==. goto Win32_path
44 SET SCITECH_BIN=%SCITECH%\bin;%SCITECH%\bin-dos
45 goto path_set
46
47 REM: The following sets up the path to the SciTech command line utilities
48 REM: for the development operating system. This version uses the Win32
49 REM: hosted tools by default, so you can use long filenames.
50
51 :Win32_path
52 SET SCITECH_BIN=%SCITECH%\bin;%SCITECH%\bin-win32
53
54 :path_set
55
56 REM: Set the TMP variable for dmake if this is not already set
57
58 SET TMP=%SCITECH%
59
60 REM: Set the following environment variable to use the Netwide Assembler
61 REM: (NASM) provided with the MGL tools to build all assembler modules.
62 REM: If you have Turbo Assembler 4.0 or later and you wish to use it,
63 REM: you can use it by removing the following line.
64
65 SET USE_NASM=1
66
67 REM: The following is used to set up DDK directories for device driver
68 REM: development. They can safely be ignored unless you are using the
69 REM: SciTech makefile utilities to build device drivers.
70
71 SET DDKDRIVE=c:
72 SET MSSDK=c:\c\win32sdk
73 SET W95_DDKROOT=c:\c\95ddk
74 SET W98_DDKROOT=c:\c\98ddk
75 SET NT_DDKROOT=c:\c\ntddk
76 SET W2K_DDKROOT=c:\c\2000ddk
77 SET MASM_ROOT=c:\c\masm611
78 SET VTOOLSD=c:\c\vtd95
79 SET SOFTICE_PATH=c:\c\sint
80
81 REM: The following define the locations of all the compilers that you may
82 REM: be using. Change them to reflect where you have installed your
83 REM: compilers.
84
85 SET BC3_PATH=c:\c\bc3
86 SET BC4_PATH=c:\c\bc45
87 SET BC5_PATH=c:\c\bc50
88 SET BCB5_PATH=c:\c\bcb50
89 SET VC_PATH=c:\c\msvc
90 SET VC4_PATH=c:\c\vc42
91 SET VC5_PATH=c:\c\vc50
92 SET VC6_PATH=c:\c\vc60
93 SET SC70_PATH=c:\c\sc75
94 SET WC10A_PATH=c:\c\wc10a
95 SET WC10_PATH=c:\c\wc10
96 SET WC11_PATH=c:\c\wc11
97 SET TNT_PATH=c:\c\tnt
98 SET DJ_PATH=c:\c\djgpp
99 SET GCC2_PATH=c:\unix\usr
100
101 REM: The following define the locations of the IDE and compiler path
102 REM: tools for Visual C++. If you do a standard installation, you wont
103 REM: need to change this. If however you did a custom install and changed
104 REM: the paths to these directory, you will need to modify this to suit.
105
106 SET VC5_MSDevDir=%VC5_PATH%\sharedide
107 SET VC5_MSVCDir=%VC5_PATH%\vc
108 SET VC6_MSDevDir=%VC6_PATH%\common\msdev98
109 SET VC6_MSVCDir=%VC6_PATH%\vc98
110