forked from Zimbra/zm-mailbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
21 lines (19 loc) · 1 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<project name="zm-mailbox" default="all">
<target name="all">
<ant dir="./native" target="publish-local" inheritAll="true"/>
<exec dir="./native" executable="make" failonerror="true"/>
<ant dir="./common" target="publish-local" inheritAll="true"/>
<ant dir="./soap" target="publish-local" inheritAll="true"/>
<ant dir="./client" target="publish-local" inheritAll="true"/>
<ant dir="./store" target="publish-local" inheritAll="true"/>
<ant dir="./store" target="war" inheritAll="true"/>
<ant dir="./store" target="create-version-sql" inheritAll="true"/>
</target>
<target name="clean">
<exec dir="./native" executable="make" failonerror="true"><arg value="clean"/></exec>
<ant dir="./common" target="clean" inheritAll="false"/>
<ant dir="./soap" target="clean" inheritAll="false"/>
<ant dir="./client" target="clean" inheritAll="false"/>
<ant dir="./store" target="clean" inheritAll="false"/>
</target>
</project>