Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 990298e64afc4ad30d5adaab53b9364ca3335b38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>

<project default="build_eclipse" basedir=".">

<target name="build_eclipse">
	<exec dir="." executable="sh">
		<arg line="${basedir}/build.sh"/>
		<arg line="install"/>
	</exec>
</target>

<target name="clean">
	<tstamp/>
	<exec dir="." executable="sh">
		<arg line="${basedir}/build.sh"/>
		<arg line="clean"/>
	</exec>
</target>

</project>

Back to the top