#!/bin/sh -v

# a batch for compiling this shit
# yeah, 'why not use Makefiles instead?' you say. 
# Don't know.
QTDIR=/usr/local/lib/qt-2.1.0/
SRC=main.cc
EXE=wwclient
INCLUDE=$QTDIR/include
LIBS=$QTDIR/lib/libqt.so
# Force generation of include statements (-f)
# in qtemp.cc
$QTDIR/bin/moc $SRC -f -o qtemp.cc

cc qtemp.cc $LIBS -o $EXE -I $INCLUDE -Wall 
