#!/bin/sh 

arc=`UTIL/config.guess`
myhostname=`hostname`
echo "myhostname = $myhostname"

if [ ! -d "ARCS" ]
    then 
    echo "Making the directory ARCS"
    mkdir ARCS
    cd ARCS
    pwd
    echo "Linking ../SRC SRC"
    ln -s ../SRC SRC
    echo "Linking ../UTIL UTIL"
    ln -s ../UTIL UTIL
    else
    cd ARCS
    pwd
  fi

  if [ ! -d `../UTIL/config.guess` ]
    then
    mkdir `../UTIL/config.guess`
  fi

  cd `../UTIL/config.guess`
  cp ../SRC/Makefile .

pwd
$@




