#
#    new: a debugging and application dependent executable
# 
# Execute using command: make -f NewMake
#  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
# control.o \
# MAIN = \
# dyndim.o  
# part most likely to change in new application
APLY = \
driver.o \
model92.o \
asymbl.o \
genelm.o \
reactel.o \
post.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 new $(APLY) $(ARCHIVE)

.o: .f
	nice f77 .f

