Obliterate these files.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bbahnsen 2006-04-21 23:58:51 +00:00
parent 02996846c8
commit 98cfd19a8d
2 changed files with 0 additions and 40 deletions

Binary file not shown.

View File

@ -1,40 +0,0 @@
@REM set following environment in this file or in command shell
@REM set JAVA_HOME="C:\Program Files\Java\jdk1.5.0_04"
@REM set WORKSPACE=C:\MyWorkspace
@REM ##############################################################
@REM # You should not have to modify anything below this line
@REM #
@echo off
:check_java
if "%JAVA_HOME%"=="" goto no_jdk
:check_wks
if "%WORKSPACE%"=="" goto no_wks
set ANT_HOME=%WORKSPACE%\Tools\bin\apache-ant
set PATH=%JAVA_HOME%\bin;%ANT_HOME%\bin;%WORKSPACE%\Tools\bin;%XMLBEANS_HOME%\bin;%PATH%
call "ant" -f %WORKSPACE%\Tools\Source\Setup\build.xml
echo DONE
goto end
:no_jdk
echo.
echo !!! Please set JAVA_HOME !!!
echo.
goto check_wks
:no_wks
echo.
echo !!! Please set WORKSPACE !!!
echo.
goto end
:end
@echo on