#
#    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)
# part most likely to change in new application
APLY = \
/tmp_mnt/net/marsh/mech517/model/.bone/dyndim.o \
/tmp_mnt/net/marsh/mech517/model/.bone/driver.o \
elpost.o \
elcol.o \
elsq.o \
bflux.o \
/tmp_mnt/net/marsh/mech517/model/.bone/asymbl.o \
/tmp_mnt/net/marsh/mech517/model/.bone/genelm.o \
/tmp_mnt/net/marsh/mech517/model/.bone/model92.o \
/tmp_mnt/net/marsh/mech517/model/.bone/post.o \
/tmp_mnt/net/marsh/mech517/model/.bone/reacts.o \
/tmp_mnt/net/marsh/mech517/model/.bone/savban.o \
/tmp_mnt/net/marsh/mech517/model/.bone/barprt.o \
postel.o 
ARCHIVE = /tmp_mnt/net/marsh/mech517/model/Archive/MODEL.a
link :	$(APLY)
	f77 -onetrip -o user2 $(APLY) $(ARCHIVE)

.o: .f
	nice f77 -Nl40 -c .f

