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