-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathbuild.xml
More file actions
61 lines (48 loc) · 1.54 KB
/
build.xml
File metadata and controls
61 lines (48 loc) · 1.54 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0"?>
<project default="all">
<target name="properties">
<mkdir dir="build" />
<exec executable="make" failonerror="true">
<arg value="build/build.properties" />
</exec>
</target>
<target name="version">
<exec executable="make" failonerror="true">
<arg value="src/org/nyet/util/Version.java" />
</exec>
</target>
<target name="convert-loggers" depends="properties">
<exec executable="make" failonerror="true">
<arg value="src/org/nyet/ecuxplot/loggers.xml" />
</exec>
</target>
<target name="prep" depends="properties,version,convert-loggers">
<mkdir dir="build/classes"/>
</target>
<target name="compile" depends="prep">
<ant antfile="subbuild.xml" target="compile"/>
</target>
<target name="all" depends="prep">
<ant antfile="subbuild.xml" target="all"/>
</target>
<target name="run" depends="prep">
<ant antfile="subbuild.xml" target="run"/>
</target>
<target name="test" depends="prep">
<ant antfile="subbuild.xml" target="test"/>
</target>
<target name="test-detection" depends="prep">
<ant antfile="subbuild.xml" target="test-detection"/>
</target>
<target name="test-unit-conversion" depends="prep">
<ant antfile="subbuild.xml" target="test-unit-conversion"/>
</target>
<target name="test-smoothing" depends="prep">
<ant antfile="subbuild.xml" target="test-smoothing"/>
</target>
<target name="clean">
<exec executable="make" failonerror="true">
<arg value="clean" />
</exec>
</target>
</project>