You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- @echo off
-
- rem Slurp the command line arguments. This loop allows for an unlimited number of
- rem agruments (up to the command line limit, anyway).
-
- set ANT_CMD_LINE_ARGS=
-
- :setupArgs
- if %1a==a goto doneArgs
- set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1
- shift
- goto setupArgs
-
- :doneArgs
- rem The doneArgs label is here just to provide a place for the argument list loop
- rem to break out to.
-
- rem find ANT_HOME
- if not "%ANT_HOME%"=="" goto checkJava
-
- rem check for ant in Program Files on system drive
- if not exist "%SystemDrive%\Program Files\ant" goto checkSystemDrive
- set ANT_HOME=%SystemDrive%\Program Files\ant
- goto checkJava
-
- :checkSystemDrive
- rem check for ant in root directory of system drive
- if not exist "%SystemDrive%\ant" goto noAntHome
- set ANT_HOME=%SystemDrive%\ant
- goto checkJava
-
- :noAntHome
- echo ANT_HOME is not set and ant could not be located. Please set ANT_HOME.
- goto end
-
- :checkJava
- if "%JAVACMD%" == "" set JAVACMD=java
-
- set LOCALCLASSPATH="%CLASSPATH%"
- for %%i in ("%ANT_HOME%\lib\*.jar") do call "%ANT_HOME%\bin\lcp.bat" "%%i"
-
- if "%JAVA_HOME%" == "" goto noJavaHome
- if exist "%JAVA_HOME%\lib\tools.jar" call "%ANT_HOME%\bin\lcp.bat" "%JAVA_HOME%\lib\tools.jar"
- if exist "%JAVA_HOME%\lib\classes.zip" call "%ANT_HOME%\bin\lcp.bat" "%JAVA_HOME%\lib\classes.zip"
- goto checkJikes
-
- :noJavaHome
- echo.
- echo Warning: JAVA_HOME environment variable is not set.
- echo If build fails because sun.* classes could not be found
- echo you will need to set the JAVA_HOME environment variable
- echo to the installation directory of java.
- echo.
-
- :checkJikes
- if not "%JIKESPATH%" == "" goto runAntWithJikes
-
- :runAnt
- %JAVACMD% -classpath %LOCALCLASSPATH% -Dant.home="%ANT_HOME%" %ANT_OPTS% org.apache.tools.ant.Main %ANT_CMD_LINE_ARGS%
- goto end
-
- :runAntWithJikes
- %JAVACMD% -classpath %LOCALCLASSPATH% -Dant.home="%ANT_HOME%" -Djikes.class.path=%JIKESPATH% %ANT_OPTS% org.apache.tools.ant.Main %ANT_CMD_LINE_ARGS%
-
- :end
- set LOCALCLASSPATH=
- set ANT_CMD_LINE_ARGS=
|