#!/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 gview-1.5Plus
echo '*** Build ghostview ... '
make 2>&1 1>/dev/null
cd ../xcalendar-4.0
echo '*** Build xcalendar ... '
make 2>&1 1>/dev/null
cd ../xe-1.0
echo '*** Build xe ... '
make 2>&1 1>/dev/null
cd ../xed
echo '*** Build xed ... '
make 2>&1 1>/dev/null
cd ../xless-1.6.1
echo '*** Build xless ... '
make 2>&1 1>/dev/null
cd ../pixmap
echo '*** Build pixmap ... '
make 2>&1 1>/dev/null
cd ../xtartool
echo '*** Build xtartool ... '
make 2>&1 1>/dev/null
echo '*** Everything done !' 

