mirror of
https://github.com/badvision/lawless-legends.git
synced 2024-11-04 22:08:44 +00:00
19 lines
663 B
XML
19 lines
663 B
XML
|
<?xml version="1.0"?>
|
||
|
|
||
|
<project name="tools" default="build">
|
||
|
|
||
|
<target name="clean">
|
||
|
<echo>Cleaning A2Copy.</echo>
|
||
|
<ant dir="./A2Copy/" target="clean" useNativeBasedir="true" inheritAll="false"/>
|
||
|
<echo>Cleaning PackPartitions.</echo>
|
||
|
<ant dir="./PackPartitions/" target="clean" useNativeBasedir="true" inheritAll="false"/>
|
||
|
</target>
|
||
|
|
||
|
<target name="build">
|
||
|
<echo>Building A2Copy.</echo>
|
||
|
<ant dir="./A2Copy/" target="default" useNativeBasedir="true" inheritAll="false"/>
|
||
|
<echo>Building PackPartitions.</echo>
|
||
|
<ant dir="./PackPartitions/" target="default" useNativeBasedir="true" inheritAll="false"/>
|
||
|
</target>
|
||
|
|
||
|
</project>
|