3 Commits

Author SHA1 Message Date
2ae030df92 Fixed warning. 2014-10-08 19:49:21 -05:00
dff0b993d3 Update build.xml 2014-10-08 19:45:40 -05:00
c56a664a2a Changed compilation instructions. 2014-10-08 19:43:35 -05:00
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ FreqSample is a tool made in Java that will play a frequency.
### Compiling ### Compiling
Make sure you have the JDK installed along with Apache Ant. Then go to the root directory of this project and run: Make sure you have the JDK installed along with Apache Ant. Then go to the root directory of this project and run:
``` ```
$ ant jar $ ant
``` ```
### Contributing ### Contributing

View File

@ -11,7 +11,7 @@
<target name="compile" > <target name="compile" >
<mkdir dir="${classes.dir}" /> <mkdir dir="${classes.dir}" />
<javac srcdir="${src.dir}" destdir="${classes.dir}" /> <javac includeantruntime="false" srcdir="${src.dir}" destdir="${classes.dir}" />
</target> </target>
<target name="jar" depends="compile" > <target name="jar" depends="compile" >
@ -23,5 +23,5 @@
</jar> </jar>
</target> </target>
<target name="main" depends="jar" ></target> <target name="main" depends="jar" />
</project> </project>