-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.xml
More file actions
executable file
·31 lines (27 loc) · 775 Bytes
/
Copy pathbuild.xml
File metadata and controls
executable file
·31 lines (27 loc) · 775 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
<?xml version="1.0"?>
<project name="mRVM" default="make">
<description>
Ant adaptor for the mRVM Makefile.
</description>
<target name="make" description="build mRVM">
<exec executable="make">
<arg value="-f"/>
<arg value="Makefile"/>
<arg value="mRVM"/>
</exec>
</target>
<target name="test" description="test mRVM">
<exec executable="make">
<arg value="-f"/>
<arg value="Makefile"/>
<arg value="test"/>
</exec>
</target>
<target name="clean" description="clean mRVM">
<exec executable="make">
<arg value="-f"/>
<arg value="Makefile"/>
<arg value="clean"/>
</exec>
</target>
</project>