
# $Id: make,v 1.4 1994/11/02 10:44:39 surkau Exp $

# $Log: make,v $
 
: Run this script through /bin/sh

if [ ${2-"def"} = "yes" ]
then
	ar ruv libsecude.a IMPORTS/*.o
fi

if [ "$MAKE" = "" ]
then
	MAKE=`cat ../src/config/MAKE.save`
	cmd=`echo $MAKE | (read w1 w2;echo $w1)`
	if [ ! -x $cmd ]
	then
		echo "Can't find your system's make utility !!"
		echo "Set it's pathname in environment variable MAKE."
		exit 1
	fi
fi

exec $MAKE -f ../src/config/CONFIG.make -f lib.make ${1}
