duke@435: #! /bin/sh duke@435: # trims@1907: # Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved. duke@435: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: # duke@435: # This code is free software; you can redistribute it and/or modify it duke@435: # under the terms of the GNU General Public License version 2 only, as duke@435: # published by the Free Software Foundation. duke@435: # duke@435: # This code is distributed in the hope that it will be useful, but WITHOUT duke@435: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: # version 2 for more details (a copy is included in the LICENSE file that duke@435: # accompanied this code). duke@435: # duke@435: # You should have received a copy of the GNU General Public License version duke@435: # 2 along with this work; if not, write to the Free Software Foundation, duke@435: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: # trims@1907: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA trims@1907: # or visit www.oracle.com if you need additional information or have any trims@1907: # questions. duke@435: # duke@435: # duke@435: duke@435: # Make sure the variable JAVA_HOME is set before running this script. duke@435: duke@435: set -u duke@435: duke@435: duke@435: if [ $# != 2 ]; then duke@435: echo "Usage : $0 Build_Options Location" duke@435: echo "Build Options : debug or optimized or basicdebug or basic or clean" duke@435: echo "Location : specify any workspace which has gamma sources" duke@435: exit 1 duke@435: fi duke@435: duke@435: # Just in case: duke@435: case ${JAVA_HOME} in duke@435: /*) true;; duke@435: ?*) JAVA_HOME=`( cd $JAVA_HOME; pwd )`;; duke@435: esac duke@435: duke@435: case `uname -m` in duke@435: i386|i486|i586|i686) duke@435: mach=i386 duke@435: ;; duke@435: *) duke@435: echo "Unsupported machine: " `uname -m` duke@435: exit 1 duke@435: ;; duke@435: esac duke@435: duke@435: if [ "${JAVA_HOME}" = "" -o ! -d "${JAVA_HOME}" -o ! -d ${JAVA_HOME}/jre/lib/${mach} ]; then duke@435: echo "JAVA_HOME needs to be set to a valid JDK path" duke@435: echo "ksh : export JAVA_HOME=/net/tetrasparc/export/gobi/JDK1.2_fcs_V/linux" duke@435: echo "csh : setenv JAVA_HOME /net/tetrasparc/export/gobi/JDK1.2_fcs_V/linux" duke@435: exit 1 duke@435: fi duke@435: duke@435: duke@435: LD_LIBRARY_PATH=${JAVA_HOME}/jre/lib/`uname -p`:\ duke@435: ${JAVA_HOME}/jre/lib/`uname -p`/native_threads:${LD_LIBRARY_PATH-.} duke@435: duke@435: # This is necessary as long as we are using the old launcher duke@435: # with the new distribution format: duke@435: CLASSPATH=${JAVA_HOME}/jre/lib/rt.jar:${CLASSPATH-.} duke@435: duke@435: duke@435: for gm in gmake gnumake duke@435: do duke@435: if [ "${GNUMAKE-}" != "" ]; then break; fi duke@435: ($gm --version >/dev/null) 2>/dev/null && GNUMAKE=$gm duke@435: done duke@435: : ${GNUMAKE:?'Cannot locate the gnumake program. Stop.'} duke@435: duke@435: duke@435: echo "### ENVIRONMENT SETTINGS:" duke@435: export JAVA_HOME ; echo "JAVA_HOME=$JAVA_HOME" duke@435: export LD_LIBRARY_PATH ; echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH" duke@435: export CLASSPATH ; echo "CLASSPATH=$CLASSPATH" duke@435: export GNUMAKE ; echo "GNUMAKE=$GNUMAKE" duke@435: echo "###" duke@435: duke@435: Build_Options=$1 duke@435: Location=$2 duke@435: duke@435: case ${Location} in duke@435: /*) true;; duke@435: ?*) Location=`(cd ${Location}; pwd)`;; duke@435: esac duke@435: duke@435: echo \ kamg@526: ${GNUMAKE} -f ${Location}/make/linux/Makefile $Build_Options GAMMADIR=${Location} kamg@526: ${GNUMAKE} -f ${Location}/make/linux/Makefile $Build_Options GAMMADIR=${Location}