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