Created
February 14, 2011 21:56
-
-
Save wjlafrance/826639 to your computer and use it in GitHub Desktop.
Ant script for 112 project 1
This file contains hidden or 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
<project default="main"> | |
<target name="main" depends="clean, buildlabs, buildproj"></target> | |
<target name="clean"> | |
<delete dir="classes" /> | |
</target> | |
<target name="buildlabs"> | |
<mkdir dir="classes" /> | |
<javac srcdir="src/java112/labs1" destdir="classes" /> | |
</target> | |
<target name="buildproj"> | |
<mkdir dir="classes" /> | |
<javac srcdir="src/java112/analyzer" destdir="classes" /> | |
</target> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment