diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-14 08:02:04 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-14 08:02:04 +0000 |
commit | 48186277b965ecfd0a64a8e6675f8cbed7c24c62 (patch) | |
tree | c86c663504fc0e8fdf82354729cbd9aaf751ad73 | |
parent | ec2d320473d1d845b7816f1407f91f8525555465 (diff) | |
download | edk2-platforms-48186277b965ecfd0a64a8e6675f8cbed7c24c62.tar.xz |
Check to see if the tools are built before trying a build.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1005 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | edksetup.sh | 52 |
1 files changed, 49 insertions, 3 deletions
diff --git a/edksetup.sh b/edksetup.sh index 8f7ce1bc55..e5a7552a55 100644 --- a/edksetup.sh +++ b/edksetup.sh @@ -9,7 +9,7 @@ # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. # Setup the environment for unix-like systems running a bash-like shell. -# This file must be "sourced" not executed. For example: ". edksetup.sh" +# This file must be "sourced" notcuted. For example: ". edksetup.sh" export WORKSPACE=$(pwd) @@ -49,8 +49,54 @@ case "`uname`" in ;; esac -# Now we need to build the tools. -(cd Tools; ant -noclasspath) +if [ \ + "$1" = Rebuild -o \ + "$1" = ForceRebuild -o \ + ! -e "$WORKSPACE/Tools/Jars/Common.jar" -o \ + ! -e "$WORKSPACE/Tools/Jars/GenBuild.jar" -o \ + ! -e "$WORKSPACE/Tools/Jars/SurfaceArea.jar" -o \ + ! -e "$WORKSPACE/Tools/Jars/cpptasks.jar" -o \ + ! -e "$WORKSPACE/Tools/Jars/frameworktasks.jar" -o \ + ! -e "$WORKSPACE/Tools/bin/FrameworkWizard.jar" -o \ + ! -e "$WORKSPACE/Tools/bin/CompressDll.dll" -o \ + ! -e "$WORKSPACE/Tools/bin/CreateMtFile" -o \ + ! -e "$WORKSPACE/Tools/bin/EfiCompress" -o \ + ! -e "$WORKSPACE/Tools/bin/EfiRom" -o \ + ! -e "$WORKSPACE/Tools/bin/FlashMap" -o \ + ! -e "$WORKSPACE/Tools/bin/FwImage" -o \ + ! -e "$WORKSPACE/Tools/bin/GenAcpiTable" -o \ + ! -e "$WORKSPACE/Tools/bin/GenCRC32Section" -o \ + ! -e "$WORKSPACE/Tools/bin/GenCapsuleHdr" -o \ + ! -e "$WORKSPACE/Tools/bin/GenDepex" -o \ + ! -e "$WORKSPACE/Tools/bin/GenFfsFile" -o \ + ! -e "$WORKSPACE/Tools/bin/GenFvImage" -o \ + ! -e "$WORKSPACE/Tools/bin/GenSection" -o \ + ! -e "$WORKSPACE/Tools/bin/GenTEImage" -o \ + ! -e "$WORKSPACE/Tools/bin/MakeDeps" -o \ + ! -e "$WORKSPACE/Tools/bin/ModifyInf" -o \ + ! -e "$WORKSPACE/Tools/bin/PeiRebase_Ia32" -o \ + ! -e "$WORKSPACE/Tools/bin/PeiRebase_Ipf" -o \ + ! -e "$WORKSPACE/Tools/bin/PeiRebase_X64" -o \ + ! -e "$WORKSPACE/Tools/bin/SecApResetVectorFixup" -o \ + ! -e "$WORKSPACE/Tools/bin/SecFixup" -o \ + ! -e "$WORKSPACE/Tools/bin/SetStamp" -o \ + ! -e "$WORKSPACE/Tools/bin/SplitFile" -o \ + ! -e "$WORKSPACE/Tools/bin/StrGather" -o \ + ! -e "$WORKSPACE/Tools/bin/Strip" -o \ + ! -e "$WORKSPACE/Tools/bin/VfrCompile" -o \ + ! -e "$WORKSPACE/Tools/bin/ZeroDebugData" -o \ + ! -e "$WORKSPACE/Tools/bin/antlr" -o \ + ! -e "$WORKSPACE/Tools/bin/dlg" ] +then + case "$1" in + ForceRebuild) + ant -noclasspath -f $WORKSPACE/Tools/build.xml cleanall all + ;; + *) + ant -noclasspath -f $WORKSPACE/Tools/build.xml all + ;; + esac +fi fi fi fi |