Refactor the PeCoffLoader into a library. Add PeiRebase Tool.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@247 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bbahnsen
2006-05-23 22:00:58 +00:00
parent 51d48c2666
commit 4df60ea54f
10 changed files with 380 additions and 31 deletions

View File

@@ -22,6 +22,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<property name="LIB_DIR" value="${PACKAGE_DIR}/Library" />
<property name="BIN_DIR" value="${WORKSPACE}/Tools/bin" />
<property name="BUILD_MODE" value="PACKAGE" />
<property name="Libs"
value="Common/build.xml CustomizedCompress/build.xml PeCoffLoader/build.xml"/>
<import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml" />
@@ -92,14 +94,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<target name="Libraries">
<subant target="" inheritall="true">
<fileset dir="${PACKAGE_DIR}"
includes="Common/build.xml CustomizedCompress/build.xml"/>
includes="${Libs}"/>
</subant>
</target>
<target name="Tools" depends="Libraries">
<subant target="" inheritall="true">
<fileset dir="${PACKAGE_DIR}" includes="*/build.xml"
excludes="Common/build.xml CustomizedCompress/build.xml"/>
excludes="${Libs}"/>
</subant>
</target>