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