blob: 8a953bbe086e1770868fc1694020b18f1177e49e [file] [log] [blame]
Bryan Duxbury3fb4f1e2009-03-24 00:36:00 +00001#!/bin/sh
2
3if [ -z $BASE_PKG ]; then
4 BASE_PKG=`ghc-pkg --simple-output list base-3* | sed -e "s/.*\(base-3\(.[0-9]\){3}\).*/\1/"`
5fi
6
7if [ -z $BASE ]; then
8 BASE=../..
9fi
10
11printf "Starting server... "
12ghc -fglasgow-exts -package $BASE_PKG -hide-package syb -i$BASE/lib/hs/src -i$BASE/test/hs/gen-hs Server.hs -e "putStrLn \"ready.\" >> Server.main"