You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by go...@apache.org on 2012/09/12 01:41:44 UTC

svn commit: r1383672 - in /incubator/flex/falcon/trunk: build.xml compiler/build.xml

Author: gordonsmith
Date: Tue Sep 11 23:41:44 2012
New Revision: 1383672

URL: http://svn.apache.org/viewvc?rev=1383672&view=rev
Log:
Falcon: Added a 'wipe' target to wipe out everything that doesn't come from the Subversion repository (i.e., the 'generated', 'in', and 'lib' directories).

Modified:
    incubator/flex/falcon/trunk/build.xml
    incubator/flex/falcon/trunk/compiler/build.xml

Modified: incubator/flex/falcon/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/falcon/trunk/build.xml?rev=1383672&r1=1383671&r2=1383672&view=diff
==============================================================================
--- incubator/flex/falcon/trunk/build.xml (original)
+++ incubator/flex/falcon/trunk/build.xml Tue Sep 11 23:41:44 2012
@@ -21,6 +21,11 @@
 
 <project name="falcon" default="main" basedir=".">
 
+    <target name="wipe">
+        <ant dir="compiler" target="wipe"/>
+		<delete dir="sdk/generated"/>
+    </target>
+
     <target name="clean">
         <ant dir="compiler" target="clean"/>
     </target>

Modified: incubator/flex/falcon/trunk/compiler/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/falcon/trunk/compiler/build.xml?rev=1383672&r1=1383671&r2=1383672&view=diff
==============================================================================
--- incubator/flex/falcon/trunk/compiler/build.xml (original)
+++ incubator/flex/falcon/trunk/compiler/build.xml Tue Sep 11 23:41:44 2012
@@ -86,6 +86,12 @@
         <echo message="run ant -projecthelp to see the available targets" />
     </target>
 
+    <target name="wipe" description="Wipes everything that has been built.">
+        <delete dir="generated"/>
+        <delete dir="in"/>
+        <delete dir="lib"/>
+    </target>
+
     <target name="super-clean" depends="thirdparty-clean,clean" description="Cleans everything including thirdparty downloads."/>
 
     <target name="thirdparty-clean" description="Removes all thirdparty downloads.">