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