diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-10-09 22:03:52 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-10-09 22:03:52 +0000 |
commit | 55ab23ae35cec1016187a7c535bb9a1c81042b55 (patch) | |
tree | 74fa89c98456d7826a2c8df957e685276124834b /Tools/CCode/Source/CompressDll | |
parent | 2f8df870031e1aee978635bb5cfa2f5a23f9b3f5 (diff) | |
download | edk2-platforms-55ab23ae35cec1016187a7c535bb9a1c81042b55.tar.xz |
removed extra taskdef and taskref definitions that caused some warning messages when doing a cleanall
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1694 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/CCode/Source/CompressDll')
-rw-r--r-- | Tools/CCode/Source/CompressDll/build.xml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Tools/CCode/Source/CompressDll/build.xml b/Tools/CCode/Source/CompressDll/build.xml index 124255b17a..6f591b371b 100644 --- a/Tools/CCode/Source/CompressDll/build.xml +++ b/Tools/CCode/Source/CompressDll/build.xml @@ -20,8 +20,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <property name="FileSet" value="CompressDll.c CompressDll.h"/>
<property name="LibFileSet" value="CompressDll.c DepexParser.h"/>
- <taskdef resource="cpptasks.tasks"/>
- <typedef resource="cpptasks.types"/>
<taskdef resource="net/sf/antcontrib/antlib.xml"/>
<property name="LINK_OUTPUT_TYPE" value="static"/>
@@ -71,7 +69,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. </target>
<target name="cleanall">
- <echo message="Removing Object Files and the Executable: ${LibName}${ext_shared}"/>
+ <echo message="Removing Object Files and the Executable: ${LibName}${ext_dynamic}"/>
<delete failonerror="false" quiet="true" includeEmptyDirs="true">
<fileset dir="${BUILD_DIR}"/>
<fileset file="${BIN_DIR}/${LibName}.*"/>
|