#!/bin/bash -norc## $Id$## build - compile parts of the Isabelle systemLOGICS="Pure $*"ISATOOL=$PWD/bin/isatool## tell the user about current settingsFILES=./etc/settingsUSER_SETTINGS=$($ISATOOL getenv -b ISABELLE_HOME_USER)/etc/settings[ -f $USER_SETTINGS ] && FILES="$FILES and $USER_SETTINGS"echoecho "Please check $FILES"echo "to make sure that Isabelle's ML system settings are appropriate."echo "Your current values are:"echo$ISATOOL getenv ML_SYSTEM ML_HOME ML_OPTIONSechoechoecho "Press RETURN to start compilation of: $LOGICS"read## build it# FIXME isatool makelogicsfor DIR in $LOGICSdo ( cd $DIR; $ISATOOL make)done