Skip to content

Instantly share code, notes, and snippets.

@wjlafrance
Created February 14, 2011 21:56
Show Gist options
  • Save wjlafrance/826639 to your computer and use it in GitHub Desktop.
Save wjlafrance/826639 to your computer and use it in GitHub Desktop.
Ant script for 112 project 1
<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