File:  [Coherent Logic Development] / freem_bm / build.sh
Revision 1.2: download - view: text, annotated - select for diffs
Wed Jan 22 15:37:03 2025 UTC (2 months, 1 week ago) by snw
Branches: MAIN
CVS tags: HEAD
Catch up

#!/bin/sh

PATH=/usr/local/bin:$PATH

echo "--- checking out FreeM source code"
cvs -d:pserver:anonymous@cvs.coherent-logic.com:/home/cvsroot co freem

echo "--- running autoreconf --install"
cd freem
autoreconf --install
if [ $? -ne 0 ]
then
    echo "autoreconf failed."
    exit 1
fi

echo "--- running configure"
./configure
if [ $? -ne 0 ]
then
    echo "configure failed."
    exit 1
fi

echo "--- running make"
make
if [ $? -ne 0 ]
then
    echo "build failed."
    exit 1
fi


exit 0

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>