File:  [Coherent Logic Development] / freem_bm / build.sh
Revision 1.1: download - view: text, annotated - select for diffs
Wed Jan 22 13:44:04 2025 UTC (2 months, 1 week ago) by snw
Branches: MAIN
CVS tags: HEAD
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

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