home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mobiclic 10
/
MOBICLIC_10.ISO
/
pc
/
infonie
/
msie4fr
/
packages
/
isk3ro.exe
/
Build
/
ieak
/
retail.bin
/
tools
/
bldspec.bat
next >
Wrap
DOS Batch File
|
1997-08-15
|
3KB
|
160 lines
@echo off
@echo +================================================
@echo I Now running:
@echo I
@echo I bldspec.bat
@echo +================================================
::
:: BldSpec.bat
::
:: This script is proprietary to this SLM enlistment.
::
:: It will denote what platforms are being built for a specific
:: project.
::
:: If you need to add a project, just add an "if" statement at the
:: beginning of the script, point it to a label later in the script,
:: and add the variables there.
::
:: If a platform is being built, add an "X". If not, == to nothing.
::
:: RichE 4/16/97
::
if "%project%"=="IE4B2" goto IE4B2
if "%project%"=="IE4RTM" goto IE4RTM
if "%project%"=="OEXPRESS" goto OEXPRESS
if "%project%"=="AMOVIE" goto AMOVIE
if "%project%"=="NETSHO20" goto NETSHO20
if "%project%"=="IE4JAVA" goto IE4JAVA
if "%project%"=="IE4DATA" goto IE4DATA
if "%project%"=="ICW4" goto ICW4
if "%project%"=="SYSAGENT" goto SYSAGENT
if "%project%"=="MSCHAT4" goto MSCHAT4
if "%project%"=="IEXPRESS" goto IEXPRESS
goto ErrNoSettings
:IE4B2
::
:: Internet Explorer 4.0
set RUNW95=X
set RUNX86=X
set RUNAXP=X
set ESPEDB=shell.edb shell2.edb htmshell.edb trident.edb setup.edb asetup.edb ieak.edb
goto end
:IE4RTM
::
:: Internet Explorer 4.0 RTM
set RUNW95=X
set RUNX86=X
set RUNAXP=X
set ESPEDB=shell.edb shell2.edb htmshell.edb trident.edb setup.edb asetup.edb ieak.edb
goto end
:IEXPRESS
::
:: Iexpress
set RUNW95=X
set RUNX86=
set RUNAXP=X
set ESPEDB=iexpress.edb
goto end
:OEXPRESS
::
:: Outlook Express
set RUNW95=X
set RUNX86=
set RUNAXP=X
set ESPEDB=OEXPRESS.EDB
goto end
:AMOVIE
::
:: ActiveMovie
set RUNW95=X
set RUNX86=
set RUNAXP=X
set ESPEDB=AMOVIE.EDB
goto end
:NETSHO20
::
:: Netshow 2.0
set RUNW95=X
set RUNX86=
set RUNAXP=
SET ESPEDB=NETSHO20.EDB
goto end
:IE4JAVA
::
:: IE4 Java CAB
set RUNW95=X
set RUNX86=
set RUNAXP=
SET ESPEDB=IE4JAVA.EDB
goto end
:IE4DATA
::
:: IE4 DataBinding Components
set RUNW95=X
set RUNX86=
set RUNAXP=
SET ESPEDB=IE4DATA.EDB
goto end
:ICW4
::
:: Internet Connection Wizard
set RUNW95=X
set RUNX86=X
set RUNAXP=X
SET ESPEDB=ICW4.EDB
goto end
:SYSAGENT
::
:: System Agent or Task Scheduler
set RUNW95=X
set RUNX86=
set RUNAXP=X
SET ESPEDB=SASETUP.EDB
goto end
:MSCHAT4
::
:: Microsoft Chat 4
set RUNW95=X
set RUNX86=
set RUNAXP=
SET ESPEDB=MSCHAT4.EDB
goto end
:ErrNoSettings
@echo This project either does not exist in BLDSPEC.BAT or does
@echo not exist in the SLM enlistment. Please check what project
@echo you wish to build, put the correct name in the first command
@echo line option of BEGIN.BAT and check BLDSPEC.BAT to see if the
@echo project exists there.
set DONT_CONT_BUILD=X
pause
:end