Created
July 6, 2010 00:42
-
-
Save mattupstate/464860 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Cleans up the project compile output. --> | |
<target name="clean-bin"> | |
<delete dir="${bin.dir}" failonerror="false" includeemptydirs="true" /> | |
<mkdir dir="${bin.dir}" /> | |
</target> | |
<!-- Cleans up the test output. --> | |
<target name="clean-test"> | |
<delete dir="${test.bin.dir}" failonerror="false" includeemptydirs="true" /> | |
<mkdir dir="${test.bin.dir}" /> | |
</target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment