####################################################
#
#    Makefile for the Fortran 90 program
#
####################################################
#
#
####################################################
#
#    Declaration of Variables
#
####################################################
#
.SILENT:
#
STDROOT      = $(PWD)
SRCDIR       = $(STDROOT)/src
OBJDIR       = $(STDROOT)/obj
#
#########
#  include file containing system special configurations
#########
#
include Fopts
#
#
####################################################
#
#     Declaration of the Object Files
#
####################################################
#
include ObjFiles
#
#
####################################################
#
#     valid actions
#
####################################################
#
#
exe: $(OBJECTS)
	echo "creating cfu executable"
	$(LDSEQ) -o $(PROGRAM) $(OBJECTS)
#
clean:
	echo cleaning up
	rm -f $(PROGRAM)
	rm -f $(OBJDIR)/*.o
	rm -f $(OBJDIR)/*.mod
#
####################################################
#
#     Dependencies of the Data Modules
#
####################################################
#

include ObjDependencies
