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