ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/journaling/examples/fbsql/buildAndInstall.sh
Revision: 47
Committed: Mon Jan 9 15:31:51 2017 UTC (7 years, 2 months ago) by tony
Content type: text/x-sh
Original Path: ibx/trunk/examples/fbsql/buildAndInstall.sh
File size: 386 byte(s)
Log Message:
Committing updates for Release R2-0-1

File Contents

# User Rev Content
1 tony 47 #!/bin/sh
2     #This script may be used to build a clean version (with no debug symbols) of the
3     #fbsql application and to install it under /usr/local/bin
4     #
5     cd `dirname $0`
6     LAZDIR=../../../..
7     export LAZUTILS=$LAZDIR/components/lazutils
8     export FBINTFDIR=../../fbintf
9     export FPCDIR=/usr/lib/fpc/`fpc -iV`
10    
11     fpcmake
12     make clean
13     make
14     if [ -x fbsql ]; then
15     sudo make install
16     rm -r buildlib
17     fi
18    
19