source: osm/applications/editors/josm/plugins/build.xml@ 10685

Last change on this file since 10685 was 10410, checked in by stoecker, 16 years ago

fixed build

File size: 3.6 KB
RevLine 
[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"/>
[10122]16 <ant dir="agpifoj" antfile="build.xml" target="dist"/>
[5147]17 <ant dir="colorscheme" antfile="build.xml" target="dist"/>
[7288]18 <ant dir="duplicateway" antfile="build.xml" target="dist"/>
[10410]19 <ant dir="globalsat" antfile="build.xml" target="dist"/>
[9274]20 <ant dir="lakewalker" antfile="build.xml" target="dist"/>
[5153]21 <ant dir="lang" antfile="build.xml" target="dist"/>
[9274]22 <ant dir="livegps" antfile="build.xml" target="dist"/>
[10410]23 <ant dir="measurement" antfile="build.xml" target="dist"/>
[5147]24 <ant dir="namefinder" antfile="build.xml" target="dist"/>
[5153]25 <ant dir="nearclick" antfile="build.xml" target="dist"/>
[9245]26 <ant dir="openvisible" antfile="build.xml" target="dist"/>
[5153]27 <ant dir="osmarender" antfile="build.xml" target="dist"/>
28 <ant dir="plastic_laf" antfile="build.xml" target="dist"/>
[9948]29 <ant dir="pluginmanager" antfile="build.xml" target="dist"/>
[5147]30 <ant dir="slippymap" antfile="build.xml" target="dist"/>
[10336]31 <ant dir="slippy_map_chooser" antfile="build.xml" target="dist"/>
[9949]32 <ant dir="surveyor" antfile="build.xml" target="dist"/>
[9948]33 <ant dir="tagging-preset-tester" antfile="build.xml" target="dist"/>
[5153]34 <ant dir="utilsplugin" antfile="build.xml" target="dist"/>
35 <ant dir="validator" antfile="build.xml" target="dist"/>
[9949]36 <ant dir="waypoints" antfile="build.xml" target="dist"/>
[5153]37 <ant dir="wmsplugin" antfile="build.xml" target="dist"/>
38 <ant dir="ywms" antfile="build.xml" target="dist"/>
[5147]39 </target>
[3779]40
[5153]41 <target name="build_defect" depends="compile">
[9274]42 <ant dir="grid" antfile="build.xml" target="dist"/>
[5153]43 <ant dir="navigator" antfile="build.xml" target="dist"/>
44 </target>
45
[5147]46 <target name="clean">
[10122]47 <ant dir="agpifoj" antfile="build.xml" target="clean"/>
[5147]48 <ant dir="colorscheme" antfile="build.xml" target="clean"/>
[5153]49 <ant dir="duplicateway" antfile="build.xml" target="clean"/>
[10410]50 <ant dir="globalsat" antfile="build.xml" target="clean"/>
[5147]51 <ant dir="grid" antfile="build.xml" target="clean"/>
[5153]52 <ant dir="lakewalker" antfile="build.xml" target="clean"/>
[5147]53 <ant dir="lang" antfile="build.xml" target="clean"/>
[9274]54 <ant dir="livegps" antfile="build.xml" target="clean"/>
[10410]55 <ant dir="measurement" antfile="build.xml" target="clean"/>
[5147]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"/>
[5153]59 <ant dir="openvisible" antfile="build.xml" target="clean"/>
[5147]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"/>
[5153]63 <ant dir="slippymap" antfile="build.xml" target="clean"/>
[10336]64 <ant dir="slippy_map_chooser" antfile="build.xml" target="clean"/>
[9274]65 <ant dir="surveyor" antfile="build.xml" target="clean"/>
[5147]66 <ant dir="tagging-preset-tester" antfile="build.xml" target="clean"/>
[5153]67 <ant dir="utilsplugin" antfile="build.xml" target="clean"/>
[5147]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>
[3779]73
[5147]74 <target name="clean_install">
75 </target>
76
[5153]77 <target name="install" depends="dist">
[5147]78 </target>
79
[3779]80</project>
Note: See TracBrowser for help on using the repository browser.