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
|
<project name="GlobalFreeplane" default="dist" basedir=".">
<target name="build">
<ant antfile="freeplane_framework/ant/build.xml" target="build"
inheritAll="false" />
</target>
<target name="dist">
<ant antfile="freeplane_framework/ant/build.xml" target="dist"
inheritAll="false">
<property name="skip_bugreport" value="true" />
</ant>
</target>
<target name="clean">
<ant antfile="freeplane_framework/ant/build.xml" target="clean"
inheritAll="false" />
<ant antfile="freeplane_ant/build.xml" target="clean"
inheritAll="false" />
<ant antfile="JOrtho_0.4_freeplane/build.xml" target="clean"
inheritAll="false" />
</target>
<target name="cleandist" depends="clean, dist">
</target>
</project>
|