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