Compare commits
3 Commits
544c15be1d
...
v1.0.1
Author | SHA1 | Date | |
---|---|---|---|
2ae030df92 | |||
dff0b993d3 | |||
c56a664a2a |
@ -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
|
||||||
|
@ -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>
|
||||||
|
Reference in New Issue
Block a user