#!/bin/bash
#
# gfortran's compile command for Random Linkage and Lissajous
#
PROB=$1

echo -n Compiling MULTI/RLINKAGE/TUNN LISSAJOUS with gfortran... 
gfortran -O4 -w -ffixed-form -fimplicit-none algencanma.f algencan.f libmath.f lissajous.f "$PROB" -o al-go
echo [OK]

