#!/bin/sh
MACHINE="aix" export MACHINE UDORA="User Defined" export UDORA if [ x$RDL = x -a -f `pwd`/buildenv.log ] ; then rm -f `pwd`/buildenv.log fi ORA_MK=$DLC/oebuild/make/ORA.mk if [ x$RDL != x ]; then ORA_MK=$PRGSSRC/project/ORA.mk fi # If ORALIB is not set already, attempt to set it # ORACLE_HOME must be set for the following to work. Error if unset. if [ "x$ORALIB" = x -a "x$ORACLE_HOME" != x ] ; then # Execute ('source' into current environment) oralib.sh if it exists. # (it is assumed to be a Bourne-shell compatible script which, when # finished, has defined an appropriate value for $ORALIB. if [ -x $DLC/oebuild/build/oralib.sh ] ; then . $DLC/oebuild/build/oralib.sh else . . . |