#
#    user: an application dependent executable
# 
# Execute using command: make -f ClassMake
#  after you have copied the driver.f file and created
#  your application files.  These generic blank codes
#  can be copied from ~mech517/model/Dummy/*.DD
#  and renamed to *.f .  Several examples are under
#  ~mech517/model/Examples .
#
# makefile for MODEL program using application dependent
# .o files and archive of unchanging routines.  jea Mar93
#  (remember to use tabs)
FC = f77
FFLAGS = -onetrip
#  driver and main
# part most likely to change in new application
APLY = \
driver.o \
elpost.o \
elcol.o \
elsq.o \
bflux.o \
postel.o 
ARCHIVE = /tmp_mnt/net/marsh/mech517/model/Archive/MODEL.a
link :	$(APLY)
	f77 -onetrip -o user $(APLY) $(ARCHIVE)

.o: .f
	nice f77 .f

