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