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

📄 makefile.in

📁 MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程环境.
💻 IN
字号:
ALL: default##### User configurable options #####MPIR_HOME   = @MPIR_HOME@CC          = @MPICC@CLINKER     = @MPICC@CCC         = @MPICPLUSPLUS@CCLINKER    = $(CCC)F77         = @MPIF77@FLINKER     = @MPIF77@OPTFLAGS    = @OPTFLAGS@### End User configurable options ###SHELL = /bin/shprefix     = @prefix@top_srcdir = @top_srcdir@srcdir     = @srcdir@@VPATH@PROFLIB =CFLAGS  = @DEFS@ $(OPTFLAGS) CCFLAGS = $(CFLAGS)FFLAGS = $(OPTFLAGS) @FFLAGS@# Use LIBS to add any special libraries for C programsLIBS = @LIB_PATH@ @LIB_LIST@# Use FLIBS to add any special libraries for Fortran programsFLIBS = @FLIB_PATH@ @LIB_LIST@EXECS = ptest collusesOTHEREXECS = default: $(EXECS)## Note that runtests builds the executables as requiredtesting: 	  -./runtests $(TESTARGS)all: testingfortran_tests: ptest: ptest.o 	$(CLINKER) $(OPTFLAGS) -o ptest ptest.o $(LIBS)colluses: colluses.o	$(CLINKER) $(OPTFLAGS) -o colluses colluses.o $(LIBS)## Make sure that we remove executables for specific architecturesclean:	@-/bin/rm -f *.o *~ PI* $(EXECS) *.out core profile.diff \		$(OTHEREXECS) mpif.h ${srcdir}/*.o *.stdo	@-for file in $(EXECS) Makefile ; do \	   /bin/rm -f $$file.sun4 $$file.alpha $$file.IRIX $$file.freebsd ;\	done.c.o:	$(CC) $(CFLAGS) -c $<.f.o:	$(F77) $(FFLAGS) -c $<

⌨️ 快捷键说明

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