⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 非线性时间学列分析工具
💻 IN
字号:
SHELL = /bin/shBINDIR = @prefix@FC = @FC@FFLAGS = @FFLAGS@LDFLAGS = @LDFLAGS@AR = @AR@ARFLAGS = @ARFLAGS@RANLIB = @RANLIB@INSTALL = @INSTALL@LOADLIBES = libtsa.a libsla.aERRUNIT = @ERRUNIT@# list of executables we want to produce   BINS = c1 c2naive xc2 \          c2d c2g c2t \          delay pc predict stp \          lazy project addnoise compare upo upoembed cluster \          choose rms notch autocor spectrum wiener1 wiener2 \	  surrogates endtoend timerev \          events intervals spikespec spikeauto \          henon ikeda ar-run# list of objects to be put in libtsa.a    INC  = readfile.o xreadfile.o \          arguments.o commandline.o any_s.o istdio.o help.o verbose.o \          d1.o neigh.o normal.o rank.o \          nmore.o store_spec.o tospec.oall: $(BINS) Randomizeistdio.o: istdio_temp.f	sed "s#ERRUNIT#${ERRUNIT}#" istdio_temp.f > istdio.f	$(FC) $(FFLAGS) -c istdio.f -o istdio.o$(BINS): libtsa.a libsla.a *.f	-$(FC) $(FFLAGS) -o $@ $@.f $(LOADLIBES) $(LDFLAGS)libtsa.a: $(INC)	$(AR) $(ARFLAGS) libtsa.a $?	$(RANLIB) libtsa.alibsla.a: slatec/*.f	(cd slatec && $(MAKE))Randomize: libtsa.a libsla.a	-(cd randomize && $(MAKE))clean:	@rm -f istdio.f	@rm -f $(BINS)	-(cd randomize && $(MAKE) clean)install: $(BINS)	-for bin in $(BINS); do $(INSTALL) $$bin $(BINDIR); done	-(cd randomize && $(MAKE) $@)missing:	-@for bin in $(BINS); do \	   test -z "`$$bin -h 2>&1 | grep Usage`" \	      && echo   $$bin "(Wuppertal Fortran)" >>  ../missing.log; \	   $$bin -h 2>&1 | cat >> ../install.log; \	  done; :	-@(cd randomize && $(MAKE) $@)uninstall:	-@for bin in $(BINS); do rm -f $(BINDIR)/$$bin;	done	-@(cd randomize && $(MAKE) $@)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -