#!/bin/sh

# script to compile Quantum GIS with GRASS support
# MN 6/2003

# change, if needed:
export QTDIR=/thuille1/ssi/soft/qt-x11-free-3.1.1
export GRASSPP=/thuille1/ssi/soft/grass++0.1
export GRASS51=/thuille0/ssi/grass51
export PQINC=/usr/include/pgsql

################ nothing to change below
GRASS51INC=$GRASS51/dist.i686-pc-linux-gnu/include
GRASS51LIB=$GRASS51/dist.i686-pc-linux-gnu/lib
QTLIB=$QTDIR/lib
export PATH=$PATH:$QTDIR/bin

make CXXFLAGS="-I$GRASSPP -I$GRASS51INC -I$PQINC" LFLAGS="-L$GRASSPP -L$GRASS51LIB -L$QTLIB"
