| 1 | <project name="josm-plugins" default="build" basedir=".">
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 | <target name="compile_josm">
|
|---|
| 5 | <ant dir="../core" target="dist" />
|
|---|
| 6 | </target>
|
|---|
| 7 |
|
|---|
| 8 | <target name="compile" depends="compile_josm">
|
|---|
| 9 | </target>
|
|---|
| 10 |
|
|---|
| 11 | <target name="build" depends="dist">
|
|---|
| 12 | </target>
|
|---|
| 13 |
|
|---|
| 14 | <target name="dist" depends="compile">
|
|---|
| 15 | <mkdir dir="../dist"/>
|
|---|
| 16 | <ant dir="agpifoj" antfile="build.xml" target="dist"/>
|
|---|
| 17 | <ant dir="colorscheme" antfile="build.xml" target="dist"/>
|
|---|
| 18 | <ant dir="duplicateway" antfile="build.xml" target="dist"/>
|
|---|
| 19 | <ant dir="globalsat" antfile="build.xml" target="dist"/>
|
|---|
| 20 | <ant dir="lakewalker" antfile="build.xml" target="dist"/>
|
|---|
| 21 | <ant dir="lang" antfile="build.xml" target="dist"/>
|
|---|
| 22 | <ant dir="livegps" antfile="build.xml" target="dist"/>
|
|---|
| 23 | <ant dir="measurement" antfile="build.xml" target="dist"/>
|
|---|
| 24 | <ant dir="namefinder" antfile="build.xml" target="dist"/>
|
|---|
| 25 | <ant dir="nearclick" antfile="build.xml" target="dist"/>
|
|---|
| 26 | <ant dir="openvisible" antfile="build.xml" target="dist"/>
|
|---|
| 27 | <ant dir="osmarender" antfile="build.xml" target="dist"/>
|
|---|
| 28 | <ant dir="plastic_laf" antfile="build.xml" target="dist"/>
|
|---|
| 29 | <ant dir="pluginmanager" antfile="build.xml" target="dist"/>
|
|---|
| 30 | <ant dir="slippymap" antfile="build.xml" target="dist"/>
|
|---|
| 31 | <ant dir="slippy_map_chooser" antfile="build.xml" target="dist"/>
|
|---|
| 32 | <ant dir="surveyor" antfile="build.xml" target="dist"/>
|
|---|
| 33 | <ant dir="tagging-preset-tester" antfile="build.xml" target="dist"/>
|
|---|
| 34 | <ant dir="utilsplugin" antfile="build.xml" target="dist"/>
|
|---|
| 35 | <ant dir="validator" antfile="build.xml" target="dist"/>
|
|---|
| 36 | <ant dir="waypoints" antfile="build.xml" target="dist"/>
|
|---|
| 37 | <ant dir="wmsplugin" antfile="build.xml" target="dist"/>
|
|---|
| 38 | <ant dir="ywms" antfile="build.xml" target="dist"/>
|
|---|
| 39 | </target>
|
|---|
| 40 |
|
|---|
| 41 | <target name="build_defect" depends="compile">
|
|---|
| 42 | <ant dir="grid" antfile="build.xml" target="dist"/>
|
|---|
| 43 | <ant dir="navigator" antfile="build.xml" target="dist"/>
|
|---|
| 44 | </target>
|
|---|
| 45 |
|
|---|
| 46 | <target name="clean">
|
|---|
| 47 | <ant dir="agpifoj" antfile="build.xml" target="clean"/>
|
|---|
| 48 | <ant dir="colorscheme" antfile="build.xml" target="clean"/>
|
|---|
| 49 | <ant dir="duplicateway" antfile="build.xml" target="clean"/>
|
|---|
| 50 | <ant dir="globalsat" antfile="build.xml" target="clean"/>
|
|---|
| 51 | <ant dir="grid" antfile="build.xml" target="clean"/>
|
|---|
| 52 | <ant dir="lakewalker" antfile="build.xml" target="clean"/>
|
|---|
| 53 | <ant dir="lang" antfile="build.xml" target="clean"/>
|
|---|
| 54 | <ant dir="livegps" antfile="build.xml" target="clean"/>
|
|---|
| 55 | <ant dir="measurement" antfile="build.xml" target="clean"/>
|
|---|
| 56 | <ant dir="namefinder" antfile="build.xml" target="clean"/>
|
|---|
| 57 | <ant dir="navigator" antfile="build.xml" target="clean"/>
|
|---|
| 58 | <ant dir="nearclick" antfile="build.xml" target="clean"/>
|
|---|
| 59 | <ant dir="openvisible" antfile="build.xml" target="clean"/>
|
|---|
| 60 | <ant dir="osmarender" antfile="build.xml" target="clean"/>
|
|---|
| 61 | <ant dir="plastic_laf" antfile="build.xml" target="clean"/>
|
|---|
| 62 | <ant dir="pluginmanager" antfile="build.xml" target="clean"/>
|
|---|
| 63 | <ant dir="slippymap" antfile="build.xml" target="clean"/>
|
|---|
| 64 | <ant dir="slippy_map_chooser" antfile="build.xml" target="clean"/>
|
|---|
| 65 | <ant dir="surveyor" antfile="build.xml" target="clean"/>
|
|---|
| 66 | <ant dir="tagging-preset-tester" antfile="build.xml" target="clean"/>
|
|---|
| 67 | <ant dir="utilsplugin" antfile="build.xml" target="clean"/>
|
|---|
| 68 | <ant dir="validator" antfile="build.xml" target="clean"/>
|
|---|
| 69 | <ant dir="waypoints" antfile="build.xml" target="clean"/>
|
|---|
| 70 | <ant dir="wmsplugin" antfile="build.xml" target="clean"/>
|
|---|
| 71 | <ant dir="ywms" antfile="build.xml" target="clean"/>
|
|---|
| 72 | </target>
|
|---|
| 73 |
|
|---|
| 74 | <target name="clean_install">
|
|---|
| 75 | </target>
|
|---|
| 76 |
|
|---|
| 77 | <target name="install" depends="dist">
|
|---|
| 78 | </target>
|
|---|
| 79 |
|
|---|
| 80 | </project>
|
|---|