1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
SHELL = /bin/sh
SCIDIR=../..
SCIDIR1=..\..
LIBRARY = $(SCIDIR)/libs/system2.a
OBJSC =
OBJSF = fmttyp.o getfun.o chkvar.o\
btof.o btofm.o ftob.o \
bschur.o bjac.o bintg.o bj2.o bydot.o boptim.o bgety.o bgetx.o \
badd.o bresid.o bfeval.o bresd.o bjacd.o \
cvwm.o cvdm.o atome.o iseye.o \
matz.o matc.o matzs.o \
expsum.o termf.o bsurf.o bsurfd.o tradsl.o \
dldsp.o istrue.o isnum.o namstr.o basnms.o cmplxt.o \
intstr.o extlarg.o bcol.o bsolv.o bjsolv.o\
bydot2.o bint2d.o bint3d.o
include ../../Makefile.incl
CFLAGS = $(CC_OPTIONS)
FFLAGS = $(FC_OPTIONS)
include ../Make.lib
all:: Makefile.mak Makefile.amk
Makefile.mak : Makefile
$(SCIDIR)/util/Mak2VCMak Makefile
Makefile.amk : Makefile
$(SCIDIR)/util/Mak2ABSMak Makefile
alloc.o: ../stack.h
back.o: ../stack.h
badd.o: ../stack.h ../callinter.h
bcol.o: ../stack.h ../callinter.h
bfeval.o: ../stack.h ../callinter.h
bgetx.o: ../stack.h ../callinter.h
bgety.o: ../stack.h ../callinter.h
bintg.o: ../stack.h ../callinter.h
bint2d.o: ../stack.h ../callinter.h
bint3d.o: ../stack.h ../callinter.h
bj2.o: ../stack.h ../callinter.h
bjac.o: ../stack.h ../callinter.h
bjacd.o: ../stack.h ../callinter.h
bjsolv.o: ../stack.h ../callinter.h
boptim.o: ../stack.h ../callinter.h
bresd.o: ../stack.h ../callinter.h
bresid.o: ../stack.h ../callinter.h
bschur.o: ../stack.h ../callinter.h
bsolv.o: ../stack.h ../callinter.h
bsurf.o: ../stack.h ../callinter.h
bsurfd.o: ../stack.h ../callinter.h
btof.o: ../stack.h
btofm.o: ../stack.h
bydot.o: ../stack.h ../callinter.h
bydot2.o: ../stack.h ../callinter.h
cmatptr.o: ../stack.h
creadchain.o: ../stack.h
creadmat.o: ../stack.h
extlarg.o: ../stack.h
ftob.o: ../stack.h
getfun.o: ../stack.h
istrue.o: ../stack.h
matc.o: ../stack.h
matptr.o: ../stack.h
matz.o: ../stack.h
matzs.o: ../stack.h
namstr.o: ../stack.h
readchain.o: ../stack.h
readmat.o: ../stack.h
tradsl.o: ../stack.h
rwstack.o : ../stack.h
|