-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
39 lines (32 loc) · 888 Bytes
/
build.xml
File metadata and controls
39 lines (32 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0"?>
<project default="build">
<path id="classpath">
<pathelement location="bin"/>
</path>
<target name="init">
<mkdir dir="bin"/>
<mkdir dir="doc"/>
</target>
<target name="clean">
<delete dir="bin"/>
</target>
<target name="distclean">
<delete dir="bin"/>
<delete dir="doc"/>
</target>
<target depends="init,javadoc" name="build">
<javac debug="true" destdir="bin" includeantruntime="false">
<classpath refid="classpath"/>
<src path="src"/>
</javac>
</target>
<target name="javadoc" depends="init">
<javadoc packagenames="*"
destdir="doc"
overview="src/overview.html"
windowtitle="Java Multigraph API">
<fileset dir="src" includes="**/*.java" />
<doctitle><![CDATA[<h1>Multigraph</h1>]]></doctitle>
</javadoc>
</target>
</project>