#! /bin/bash
#
cp r8utt.hpp /$HOME/include
#
g++ -c -g -Wall -I/$HOME/include r8utt.cpp
if [ $? -ne 0 ]; then
  echo "Compile error."
  exit
fi
#
mv r8utt.o ~/libcpp/r8utt.o
#
echo "Normal end of execution."
