ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/journaling/examples/fbsql/buildAndInstall.sh
Revision: 363
Committed: Tue Dec 7 13:30:05 2021 UTC (2 years, 3 months ago) by tony
Content type: text/x-sh
File size: 389 byte(s)
Log Message:
add fbintf

File Contents

# Content
1 #!/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