#! /bin/bash
#
gfortran -c -g -Wall tsp_dantzig42.f90
if [ $? -ne 0 ]; then
  echo "Compile error."
  exit
fi
#
mv tsp_dantzig42.o ~/lib/tsp_dantzig42.o
#
echo "Normal end of execution."
