#-------------------------------------------------------
#
# "Makefile" du programme de tabulation des ractions
#            nuclaires pour CESAM 3.2
#
#-------------------------------------------------------
# D.C., march 2005
#----------------------------------------
# Compilateur, options et bibliothques :
FC = g77
OPT     = -O6 -fno-automatic -fugly-assumed -malign-double
#
all: tab_bin_CF tab_bin_NACRE
#
tab_bin_CF: tab_bin_CF.f
	$(FC) $(OPT) -o tab_bin_CF tab_bin_CF.f
#
tab_bin_NACRE: tab_bin_NACRE.f
	$(FC) $(OPT) -o tab_bin_NACRE tab_bin_NACRE.f
#