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 (6 months, 1 week ago) by snw
Branches: MAIN
CVS tags: HEAD
Catch up

    1: #!/bin/sh
    2: 
    3: PATH=/usr/local/bin:$PATH
    4: 
    5: echo "--- checking out FreeM source code"
    6: cvs -d:pserver:anonymous@cvs.coherent-logic.com:/home/cvsroot co freem
    7: 
    8: echo "--- running autoreconf --install"
    9: cd freem
   10: autoreconf --install
   11: if [ $? -ne 0 ]
   12: then
   13:     echo "autoreconf failed."
   14:     exit 1
   15: fi
   16: 
   17: echo "--- running configure"
   18: ./configure
   19: if [ $? -ne 0 ]
   20: then
   21:     echo "configure failed."
   22:     exit 1
   23: fi
   24: 
   25: echo "--- running make"
   26: make
   27: if [ $? -ne 0 ]
   28: then
   29:     echo "build failed."
   30:     exit 1
   31: fi
   32: 
   33: 
   34: exit 0

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