Changeset 13787 for trunk/gsdl3/dist-resources/dist-build.xml
- Timestamp:
- 2007-01-25T11:00:51+13:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gsdl3/dist-resources/dist-build.xml
r13667 r13787 19 19 <!-- Create the binaries for windows distribution --> 20 20 <target name="prepare-windows" depends="init"> 21 <cvs command="checkout -P" package="mgpp"22 dest="${src.packages.home}" />23 21 <cvs command="checkout -P" package="gs2build" /> 24 22 <antcall target="unzip-windows-packages"/> … … 38 36 <!-- Create the binaries for Unix/Mac distributions --> 39 37 <target name="prepare-unix" depends="init"> 40 <cvs command="checkout -P" package="mgpp"41 dest="${src.packages.home}"/>42 38 <cvs command="checkout -P" package="gs2build"/> 43 39 </target> … … 60 56 greenstones (prepare-os targets) --> 61 57 <target name="create-distribution-1" depends="init" description="do all the initial downloading and setting up"> 62 <cvs command="export -D '1 second ago'" package="mgpp"63 dest="${src.packages.home}"/>64 58 <cvs command="export -D '1 second ago'" package="gs2build"/> 65 59 <cvs command="export -D '1 second ago'" package="gli"/> … … 169 163 170 164 <target name="create-source-distribution" depends="init"> 171 <cvs command="export -D '1 second ago'" package="mgpp"172 dest="${src.packages.home}"/>173 165 <cvs command="export -D '1 second ago'" package="gs2build"/> 174 166 <cvs command="export -D '1 second ago'" package="gli"/> … … 224 216 225 217 <target name="compile-packages-javaonly" depends="init"> 226 <echo>Compiling MG Java</echo>227 <exec executable="make" os="${os.unix}" 228 dir="${ mg.home}">218 <echo>Compiling Indexers</echo> 219 <exec executable="make" os="${os.unix}" 220 dir="${indexers.home}"> 229 221 <arg value="javaonly"/> 230 222 </exec> 231 223 <exec executable="make" os="${os.unix}" 232 dir="${mg.home}"> 233 <arg value="installjava"/> 234 </exec> 235 <!-- windows: just the java stuff. --> 236 <exec executable="${mg.home}/winMake.bat" os="${os.windows}" 237 dir="${mg.home}"> 238 <arg value="compile"/> 239 <arg value="javaonly"/> 240 </exec> 241 <!-- install the jar file --> 224 dir="${indexers.home}"> 225 <arg value="install-javaonly"/> 226 </exec> 227 <!-- install the jar files --> 242 228 <copy file="${mg.home}/mg.jar" todir="${lib.jni}"/> 243 244 <!-- mgpp -->245 <echo>Compiling MGPP</echo>246 <exec executable="make" os="${os.unix}"247 dir="${mgpp.home}">248 <arg value="javaonly"/>249 </exec>250 <exec executable="make" os="${os.unix}"251 dir="${mgpp.home}">252 <arg value="installjava"/>253 </exec>254 <!-- windows: just the java stuff. -->255 <exec executable="${mgpp.home}/winMake.bat" os="${os.windows}"256 dir="${mgpp.home}">257 <arg value="compile"/>258 <arg value="javaonly"/>259 </exec>260 <!-- install the jar file -->261 229 <copy file="${mgpp.home}/mgpp.jar" todir="${lib.jni}"/> 230 <copy file="${lucene.home}/LuceneWrapper.jar" todir="${web.lib}"/> 262 231 263 232 <!-- javagdbm --> … … 269 238 dir="${javagdbm.home}"> 270 239 <arg value="installjava"/> 271 </exec>272 <!-- windows: just the java stuff. -->273 <exec executable="${javagdbm.home}/winMake.bat" os="${os.windows}"274 dir="${javagdbm.home}">275 <arg value="compile"/>276 <arg value="javaonly"/>277 240 </exec> 278 241 <!-- install the jar file --> … … 297 260 </target> 298 261 299 <target name="distclean-packages" depends="init,clean-packages-c++"> 300 <!-- mg : just call the make target --> 301 <exec executable="make" os="${os.unix}" 302 dir="${mg.home}"> 303 <arg value="distclean"/> 304 </exec> 305 <!-- mgpp --> 306 <exec executable="make" os="${os.unix}" 307 dir="${mgpp.home}"> 262 <target name="distclean-packages" depends="init"> 263 <!-- indexers : just call the make target --> 264 <exec executable="make" os="${os.unix}" 265 dir="${indexers.home}"> 308 266 <arg value="distclean"/> 309 267 </exec>
Note:
See TracChangeset
for help on using the changeset viewer.