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