Return to calling text
all : subs.exe
CFLAGS = /W /E /nA1 /B /I /L /nR /Z1 /O /N2 /2
clean :
- del nonlin.obj
- del subs.obj
- del nonlin.for
- del test.lst
- del subs.sld
- del nonlin.sld
subs : subs.exe
subs.obj : subs.for makefile
f77l subs.for $(CFLAGS)
subs.exe : subs.obj nonlin.obj
optlink subs+nonlin,subs,nul,\f77l\graph ;
nonlin.for : nonlin.mpf nonl.mpf nonl2a.mpf nonl2b.mpf \
tek.mpf tkplot.mpf grstra.mpf \
ds.mpf dsplot.mpf hp.mpf hpplot.mpf \
defalt.h funits.h opsys.h \
makefile
fpp -Dpc_lahey nonlin.mpf nonlin.for
nonlin.obj : nonlin.for
f77l nonlin.for $(CFLAGS)
Return to calling text