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 >
DOS Batch File  |  1997-08-15  |  3KB  |  160 lines

  1. @echo off
  2.  
  3. @echo +================================================
  4. @echo I                 Now running:
  5. @echo I
  6. @echo I                 bldspec.bat
  7. @echo +================================================
  8.  
  9. ::
  10. :: BldSpec.bat
  11. ::
  12. :: This script is proprietary to this SLM enlistment.
  13. ::
  14. :: It will denote what platforms are being built for a specific
  15. ::  project.
  16. ::
  17. :: If you need to add a project, just add an "if" statement at the
  18. ::  beginning of the script, point it to a label later in the script,
  19. ::  and add the variables there.
  20. ::
  21. :: If a platform is being built, add an "X". If not, == to nothing.
  22. ::
  23. :: RichE  4/16/97
  24. ::
  25.  
  26. if "%project%"=="IE4B2" goto IE4B2
  27. if "%project%"=="IE4RTM" goto IE4RTM
  28. if "%project%"=="OEXPRESS" goto OEXPRESS
  29. if "%project%"=="AMOVIE" goto AMOVIE
  30. if "%project%"=="NETSHO20" goto NETSHO20
  31. if "%project%"=="IE4JAVA" goto IE4JAVA
  32. if "%project%"=="IE4DATA" goto IE4DATA
  33. if "%project%"=="ICW4" goto ICW4
  34. if "%project%"=="SYSAGENT" goto SYSAGENT
  35. if "%project%"=="MSCHAT4" goto MSCHAT4
  36. if "%project%"=="IEXPRESS" goto IEXPRESS
  37.  
  38. goto ErrNoSettings
  39.  
  40. :IE4B2
  41. ::
  42. :: Internet Explorer 4.0
  43.  
  44. set RUNW95=X
  45. set RUNX86=X
  46. set RUNAXP=X
  47. set ESPEDB=shell.edb shell2.edb htmshell.edb trident.edb setup.edb asetup.edb ieak.edb
  48. goto end
  49.  
  50. :IE4RTM
  51. ::
  52. :: Internet Explorer 4.0 RTM
  53.  
  54. set RUNW95=X
  55. set RUNX86=X
  56. set RUNAXP=X
  57. set ESPEDB=shell.edb shell2.edb htmshell.edb trident.edb setup.edb asetup.edb ieak.edb
  58. goto end
  59.  
  60. :IEXPRESS
  61. ::
  62. :: Iexpress
  63. set RUNW95=X
  64. set RUNX86=
  65. set RUNAXP=X
  66. set ESPEDB=iexpress.edb
  67. goto end
  68.  
  69. :OEXPRESS
  70. ::
  71. :: Outlook Express
  72.  
  73. set RUNW95=X
  74. set RUNX86=
  75. set RUNAXP=X
  76. set ESPEDB=OEXPRESS.EDB
  77. goto end
  78.  
  79. :AMOVIE
  80. ::
  81. :: ActiveMovie
  82.  
  83. set RUNW95=X
  84. set RUNX86=
  85. set RUNAXP=X
  86. set ESPEDB=AMOVIE.EDB
  87. goto end
  88.  
  89. :NETSHO20
  90. ::
  91. :: Netshow 2.0
  92.  
  93. set RUNW95=X
  94. set RUNX86=
  95. set RUNAXP=
  96. SET ESPEDB=NETSHO20.EDB
  97. goto end
  98.  
  99. :IE4JAVA
  100. ::
  101. :: IE4 Java CAB
  102.  
  103. set RUNW95=X
  104. set RUNX86=
  105. set RUNAXP=
  106. SET ESPEDB=IE4JAVA.EDB
  107. goto end
  108.  
  109. :IE4DATA
  110. ::
  111. :: IE4 DataBinding Components
  112. set RUNW95=X
  113. set RUNX86=
  114. set RUNAXP=
  115. SET ESPEDB=IE4DATA.EDB
  116. goto end
  117.  
  118. :ICW4
  119. ::
  120. :: Internet Connection Wizard
  121.  
  122. set RUNW95=X
  123. set RUNX86=X
  124. set RUNAXP=X
  125. SET ESPEDB=ICW4.EDB
  126. goto end
  127.  
  128. :SYSAGENT
  129. ::
  130. :: System Agent or Task Scheduler
  131.  
  132. set RUNW95=X
  133. set RUNX86=
  134. set RUNAXP=X
  135. SET ESPEDB=SASETUP.EDB
  136. goto end
  137.  
  138. :MSCHAT4
  139. ::
  140. :: Microsoft Chat 4
  141.  
  142. set RUNW95=X
  143. set RUNX86=
  144. set RUNAXP=
  145. SET ESPEDB=MSCHAT4.EDB
  146. goto end
  147.  
  148.  
  149. :ErrNoSettings
  150. @echo This project either does not exist in BLDSPEC.BAT or does
  151. @echo  not exist in the SLM enlistment.  Please check what project
  152. @echo  you wish to build, put the correct name in the first command 
  153. @echo  line option of BEGIN.BAT and check BLDSPEC.BAT to see if the 
  154. @echo  project exists there.
  155. set DONT_CONT_BUILD=X
  156. pause
  157.  
  158. :end
  159.  
  160.