# makefile for drawsp program jea apr93
#  (remember to use tabs)
FC = f77
FFLAGS = -c -v -onetrip
#  driver and main
MAIN = \
View2d.o
# library of unchanging subroutines
LIB = \
drawsp.o
#postscript plot conversion library
POST = \
/tmp_mnt/net/marsh/mech517/PlotLib/Archive/libplt.a 
# ../Archive/chrcod.o
#  chrcod.o 
# postscript version of CALCOMP plotter, add -lplt
# CALCOMP = /u4/akin/.calcomp/libplt.a
model:	$(MAIN) $(LIB) $(POST)
	f77 -onetrip -o try $(MAIN) $(LIB) $(POST)

#source codes
.o: .f
