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