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