Changeset 278 for trunk/openjdk/jaxp/build.xml
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/jaxp/build.xml
r2 r278 1 1 <?xml version="1.0"?> 2 2 <!-- 3 Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.3 Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 4 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 6 6 This code is free software; you can redistribute it and/or modify it 7 7 under the terms of the GNU General Public License version 2 only, as 8 published by the Free Software Foundation. Sundesignates this8 published by the Free Software Foundation. Oracle designates this 9 9 particular file as subject to the "Classpath" exception as provided 10 by Sunin the LICENSE file that accompanied this code.10 by Oracle in the LICENSE file that accompanied this code. 11 11 12 12 This code is distributed in the hope that it will be useful, but WITHOUT … … 20 20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 21 22 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,23 CA 95054 USA or visit www.sun.com if you need additional information or24 have anyquestions.22 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 23 or visit www.oracle.com if you need additional information or have any 24 questions. 25 25 --> 26 26 … … 37 37 javac.target - classfile version target 38 38 javac.source - source version 39 drops.dir - directory that holds source drop bundles 40 allow.download - permit downloads from public url (default is false) 41 (used if bundles not found in drops.dir) 42 43 Run 'make help' for help using the Makefile. 39 44 </description> 40 45 … … 107 112 </target> 108 113 109 <target name="-build- prep"110 depends="init, -init-src-dirs, -drop-build- prep">114 <target name="-build-setup" 115 depends="init, -init-src-dirs, -drop-build-setup"> 111 116 </target> 112 117 113 118 <!-- Build (compilation) of sources to class files. --> 114 119 <target name="build" 115 depends="init, -init-src-dirs, -build-prep"> 120 depends="compile, -build-setup"> 121 </target> 122 <target name="compile" 123 depends="init, -init-src-dirs"> 124 <mkdir dir="${build.classes.dir}"/> 116 125 <javac 117 includeAntRuntime="false" 118 classpath="${build.classes.dir} "126 includeAntRuntime="false" 127 classpath="${build.classes.dir}:${tools.jar}" 119 128 fork="true" 120 129 destdir="${build.classes.dir}"
Note:
See TracChangeset
for help on using the changeset viewer.