00001 * 00002 /*! 00003 * @file ./jvm/build.sh 00004 * 00005 * @brief Build main JVM development area 00006 * 00007 * @see @link jvm/clean.sh jvm/clean.sh@endlink 00008 * 00009 * @see @link jvm/common.sh jvm/common.sh@endlink 00010 * 00011 * @see @link ./build.sh ./build.sh@endlink 00012 * 00013 * @see @link ./clean.sh ./clean.sh@endlink 00014 * 00015 * @see @link ./common.sh ./common.sh@endlink 00016 * 00017 * @internal Notice that 'jvm/*.sh' have the relative path prefix './' 00018 * attached to the front of the @@file directive. This is to avoid an 00019 * interesting sensitivity in Doxygen that got confused between 00020 * 'jvm/filename.sh' and 'libjvm/filename.sh' and failed to produce 00021 * the "File List" entry for each 'jvm/*.sh' build script. By marking 00022 * them './jvm/build.sh' et al, this behavior went away. This same 00023 * comment may be found in @link ./config.sh config.sh@endlink 00024 * 00025 * 00026 * @todo A Windows .BAT version of this script needs to be written 00027 * 00028 * 00029 * @section Control 00030 * 00031 * \$URL: https://svn.apache.org/path/name/build.sh $ \$Id: build.sh 0 09/28/2005 dlydick $ 00032 * 00033 * Copyright 2005 The Apache Software Foundation 00034 * or its licensors, as applicable. 00035 * 00036 * Licensed under the Apache License, Version 2.0 ("the License"); 00037 * you may not use this file except in compliance with the License. 00038 * You may obtain a copy of the License at 00039 * 00040 * http://www.apache.org/licenses/LICENSE-2.0 00041 * 00042 * Unless required by applicable law or agreed to in writing, 00043 * software distributed under the License is distributed on an 00044 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 00045 * either express or implied. 00046 * 00047 * See the License for the specific language governing permissions 00048 * and limitations under the License. 00049 * 00050 * @version \$LastChangedRevision: 0 $ 00051 * 00052 * @date \$LastChangedDate: 09/28/2005 $ 00053 * 00054 * @author \$LastChangedBy: dlydick $ 00055 * Original code contributed by Daniel Lydick on 09/28/2005. 00056 * 00057 * @todo A Windows .BAT version of this script needs to be written 00058 * 00059 * @section Reference 00060 * 00061 */ /* 00062 * (Use #! and #/ with dox_filter.sh to fool Doxygen into 00063 * parsing this non-source text file for the documentation set. 00064 * Use the above open comment to force termination of parsing 00065 * since it is not a Doxygen-style 'C' comment.) 00066 * 00067 * 00068 *################################################################## 00069 * 00070 * Script setup 00071 * 00072 *################################################################## 00073 * 00074 * Construct output area. Since Eclipse uses 'bin/src' for its 00075 * output area, there should not be a conflict unless Eclipse does 00076 * a 'make clean', which removes and rebuilds 'bin'. 00077 * 00078 *################################################################## 00079 * 00080 * Build binary from source code 00081 * 00082 *################################################################## 00083 * 00084 * Done. 00085 * 00086 * 00087 * EOF 00088