-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
41 lines (30 loc) · 981 Bytes
/
build.xml
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
<?xml version="1.0" encoding="utf-8"?>
<!-- this runs from ".." -->
<project name="minig" default="install" basedir=".">
<target name="build">
</target>
<target name="clean">
<ant antfile="build.xml" target="clean" dir="webmail-frontend/gwt"/>
</target>
<!--
<target name="conf">
<ant antfile="conf/build.xml" target="dist"/>
</target>
<target name="back">
<ant antfile="backend/build.xml" target="dist"/>
</target>
-->
<target name="front">
<ant antfile="build.xml" target="dist" dir="webmail-frontend/gwt"/>
<property name="dd"
value="debian/${ant.project.name}/usr/share/minig"/>
<mkdir dir="${dd}"/>
<copy todir="${dd}">
<fileset dir="webmail-frontend/gwt/dist"/>
</copy>
</target>
<target name="install" depends= "front">
<echo>Preparing ${ant.project.name} distribution...</echo>
<echo>${ant.project.name} distribution done.</echo>
</target>
</project>