#!/bin/sh
#
# Use this script to build all clients. Note
# that this script only works as superuser root !
# If you don't want to compile and install everything directly,
# type `make prog' and if everything seems to be fine `make install'
# in every directory.
# 
# Roland Krause 1997
# Rokrause@aol.com
# 

cd xminesweep
echo '*** Build xminesweep ... '
make 2>&1 1>/dev/null
cd ../xdrawdemo
echo '*** Build xdrawdemo ... '
make 2>&1 1>/dev/null
echo '*** Everything done !' 

