|
|
Initial revision
#!/bin/sh
PATH=/usr/local/bin:$PATH
cvs -d:pserver:anonymous@cvs.coherent-logic.com:/home/cvsroot co freem
cd freem
pwd
autoreconf --install
if [ $? -ne 0 ]
then
echo "autoreconf failed."
exit 1
fi
./configure
if [ $? -ne 0 ]
then
echo "configure failed."
exit 1
fi
make
if [ $? -ne 0 ]
then
echo "build failed."
exit 1
fi
exit 0