User: user57  
  Date: 01/08/27 16:51:35

  Added:       .        build.bat
  Log:
   o adding updated win32 build scripts.  These should work on 98+, though it
     has only really been tested on 2k.
  
  Revision  Changes    Path
  1.1                  jbosssx/build.bat
  
  Index: build.bat
  ===================================================================
  @echo off
  REM  ======================================================================
  REM
  REM  This is the main entry point for the build system.
  REM
  REM  Users should be sure to execute this file rather than 'ant' to ensure
  REM  the correct version is being used with the correct configuration.
  REM
  REM  ======================================================================
  REM
  REM $Id: build.bat,v 1.1 2001/08/27 23:51:34 user57 Exp $
  REM
  REM Authors:
  REM     Jason Dillon <[EMAIL PROTECTED]>
  REM     Sacha Labourey  <[EMAIL PROTECTED]>
  REM
  
  REM ******************************************************
  REM Ignore the users classpath, cause it might mess
  REM things up
  REM ******************************************************
  
  set CLASSPATH=
  
  
  REM ******************************************************
  REM - "for" loops have been unrolled for compatibility
  REM   with some WIN32 systems.
  REM ******************************************************
  
  set NAMES=tools;tools\ant;tools\apache\ant
  set SUBFOLDERS=..;..\..;..\..\..;..\..\..\..
  
  REM ******************************************************
  REM ******************************************************
  
  SET EXECUTED=FALSE
  for %%i in (%NAMES%) do call :subLoop %%i %1 %2 %3 %4 %5 %6
  
  goto :EOF
  
  
  REM ******************************************************
  REM ********* Search for names in the subfolders *********
  REM ******************************************************
  
  :subLoop
  for %%j in (%SUBFOLDERS%) do call :testIfExists %%j\%1\bin\ant.bat %2 %3 %4 %5 %6 %7
  
  goto :EOF
  
  
  REM ******************************************************
  REM ************ Test if ANT Batch file exists ***********
  REM ******************************************************
  
  :testIfExists
  if exist %1 call :BatchFound %1 %2 %3 %4 %5 %6 %7 %8
  
  goto :EOF
  
  
  REM ******************************************************
  REM ************** Batch file has been found *************
  REM ******************************************************
  
  :BatchFound
  if (%EXECUTED%)==(FALSE) call :ExecuteBatch %1 %2 %3 %4 %5 %6 %7 %8
  set EXECUTED=TRUE
  
  goto :EOF
  
  REM ******************************************************
  REM ************* Execute Batch file only once ***********
  REM ******************************************************
  
  :ExecuteBatch
  echo Calling %1 %2 %3 %4 %5 %6 %7 %8
  call %1 %2 %3 %4 %5 %6 %7 %8
  
  :end
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to