#!/bin/sh

if [ -f .compiling ]
then
  echo 'The display library is already being compiled by:'
  cat .compiling
else
  echo $USER @ `hostname` >> .compiling
  gmake4.1.x
  rm -f .compiling
fi
