Changeset 5153 in osm for applications/editors/josm/plugins/build.xml
- Timestamp:
- 2007-10-24T20:13:09+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build.xml
r5147 r5153 21 21 </target> 22 22 23 <target name="build" depends="compile"> 23 <target name="build" depends="dist"> 24 </target> 25 26 <target name="dist" depends="compile"> 27 <mkdir dir="dist"/> 24 28 <ant dir="colorscheme" antfile="build.xml" target="dist"/> 25 <ant dir="lang" antfile="build.xml" target="install-all"/> 26 <ant dir="mappaint" antfile="build.xml" target="build"/> 29 <ant dir="duplicateway" antfile="build.xml" target="dist"/> 30 <ant dir="lang" antfile="build.xml" target="dist"/> 31 <ant dir="mappaint" antfile="build.xml" target="dist"/> 27 32 <ant dir="namefinder" antfile="build.xml" target="dist"/> 28 <ant dir="nearclick" antfile="build.xml" target="build"/> 29 <ant dir="osmarender" antfile="build.xml" target="build"/> 30 <ant dir="plastic_laf" antfile="build.xml" target="build"/> 33 <ant dir="nearclick" antfile="build.xml" target="dist"/> 34 <ant dir="openvisible" antfile="build.xml" target="dist"/> 35 <ant dir="osmarender" antfile="build.xml" target="dist"/> 36 <ant dir="plastic_laf" antfile="build.xml" target="dist"/> 31 37 <ant dir="slippymap" antfile="build.xml" target="dist"/> 32 <ant dir="tagging-preset-tester" antfile="build.xml" target="build"/> 33 <ant dir="validator" antfile="build.xml" target="build"/> 34 <ant dir="wmsplugin" antfile="build.xml" target="build"/> 35 <ant dir="ywms" antfile="build.xml" target="build"/> 38 <ant dir="tagging-preset-tester" antfile="build.xml" target="dist"/> 39 <ant dir="utilsplugin" antfile="build.xml" target="dist"/> 40 <ant dir="validator" antfile="build.xml" target="dist"/> 41 <ant dir="wmsplugin" antfile="build.xml" target="dist"/> 42 <ant dir="ywms" antfile="build.xml" target="dist"/> 36 43 37 44 <ant dir="livegps" antfile="build.xml" target="dist"/> 38 45 <ant dir="surveyor" antfile="build.xml" target="dist"/> 39 <!--ant dir="grid" antfile="build.xml" target="build"/--> 40 <!-- ant dir="pluginmanager" antfile="build.xml" target="dist"/ --> 41 <!-- ant dir="tways" antfile="build.xml" target="build"/ --> 42 <!-- ant dir="waypoints" antfile="build.xml" target="build"/ --> 43 <!-- ant dir="navigator" antfile="build.xml" target="dist"/ --> 46 </target> 47 48 <target name="build_defect" depends="compile"> 49 <ant dir="lakewalker" antfile="build.xml" target="dist"/> 50 <ant dir="navigator" antfile="build.xml" target="dist"/> 51 <ant dir="pluginmanager" antfile="build.xml" target="dist"/> 52 <ant dir="waypoints" antfile="build.xml" target="dist"/> 53 <ant dir="grid" antfile="build.xml" target="dist"/> 44 54 </target> 45 55 46 56 <target name="clean"> 47 57 <ant dir="colorscheme" antfile="build.xml" target="clean"/> 58 <ant dir="duplicateway" antfile="build.xml" target="clean"/> 48 59 <ant dir="grid" antfile="build.xml" target="clean"/> 60 <ant dir="lakewalker" antfile="build.xml" target="clean"/> 49 61 <ant dir="lang" antfile="build.xml" target="clean"/> 50 62 <ant dir="mappaint" antfile="build.xml" target="clean"/> … … 52 64 <ant dir="navigator" antfile="build.xml" target="clean"/> 53 65 <ant dir="nearclick" antfile="build.xml" target="clean"/> 66 <ant dir="openvisible" antfile="build.xml" target="clean"/> 54 67 <ant dir="osmarender" antfile="build.xml" target="clean"/> 55 68 <ant dir="plastic_laf" antfile="build.xml" target="clean"/> 56 69 <ant dir="pluginmanager" antfile="build.xml" target="clean"/> 70 <ant dir="slippymap" antfile="build.xml" target="clean"/> 57 71 <ant dir="tagging-preset-tester" antfile="build.xml" target="clean"/> 58 <ant dir=" tways"antfile="build.xml" target="clean"/>72 <ant dir="utilsplugin" antfile="build.xml" target="clean"/> 59 73 <ant dir="validator" antfile="build.xml" target="clean"/> 60 74 <ant dir="waypoints" antfile="build.xml" target="clean"/> … … 64 78 <ant dir="surveyor" antfile="build.xml" target="clean"/> 65 79 <ant dir="livegps" antfile="build.xml" target="clean"/> 80 81 <delete dir="dist" /> 66 82 </target> 67 83 … … 69 85 </target> 70 86 71 <target name="install" depends=" build">87 <target name="install" depends="dist"> 72 88 </target> 73 89
Note:
See TracChangeset
for help on using the changeset viewer.