summaryrefslogtreecommitdiff
path: root/hstcal/build.sh
blob: a9727f07a5d85d6e2ebb2622ae7d455c8fc4ea5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
if [[ `uname` == Darwin ]]; then
    export CC=`which gcc`
    if [[ `uname -m` == x86_64 ]]; then
        export CFLAGS="$CFLAGS -m64"
        export LDFLAGS="$LDFLAGS -m64"
    fi
fi

./waf configure --prefix=$PREFIX --release-with-symbols
./waf build
./waf install