#!/bin/sh
#             ,,,
#            (o o)
####=====oOO--(_)--OOO=========================================####
#
# Author      : Olivier.Sirol@lip6.fr
# Started on  : Aug 1999
# Description : gives Alliance CAD system environnement var
#
# (C) Czo 1998,99
# This code is released under GPL
#
# $Id: ali,v 1.4 1999/11/22 16:04:41 czo Exp $
#

if [ -f $ALLIANCE_TOP/etc/libraries.mk ]
then
 alcbanner Ali 1.0 "ALliance Information" 1999
 
echo ""
echo "Alliance settings :"
echo ""
echo "ALLIANCE_OS      = $ALLIANCE_OS"
echo "ALLIANCE_TOP     = $ALLIANCE_TOP"
grep ALLIANCE_VERSION $ALLIANCE_TOP/etc/libraries.mk
echo ""

set | grep "MBK\|VH_\|_PARAM_NAME\|_TECHNO_NAME" | sort

exit 0

else
 echo "ERROR: \$ALLIANCE_TOP is not valid,"
 echo "Alliance is not correctly installed."
 echo "Please run alc_env.{c}sh"
 exit 1
fi


