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

📄 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@MPIFDEP      = @MPIFDEP@### End User configurable options #### Add .f90 as a known suffix.SUFFIXES: .f90SHELL = /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 = cart cart2 graphtest cartmap cartorder dimsdefault: $(EXECS)## Note that runtests builds the executables as requiredtesting: 	-./runtests $(TESTARGS)linktest: default cleanall: testingfortran_tests: cartf twod cart1f cart2fcart: cart.o test.o	$(CLINKER) $(OPTFLAGS) -o cart cart.o test.o $(LIBS)cartmap: cartmap.o	$(CLINKER) $(OPTFLAGS) -o cartmap cartmap.o $(LIBS)cartorder: cartorder.o test.o	$(CLINKER) $(OPTFLAGS) -o cartorder cartorder.o test.o $(LIBS)cart2: cart2.o test.o	$(CLINKER) $(OPTFLAGS) -o cart2 cart2.o test.o $(LIBS)graphtest: graphtest.o	$(CLINKER) $(OPTFLAGS) -o graphtest graphtest.o $(LIBS)cartf: $(MPIFDEP) cartf.o	$(FLINKER) $(OPTFLAGS) -o cartf cartf.o $(FLIBS)cart1f: $(MPIFDEP) cart1f.o	$(FLINKER) $(OPTFLAGS) -o cart1f cart1f.o $(FLIBS)cart2f: $(MPIFDEP) cart2f.o	$(FLINKER) $(OPTFLAGS) -o cart2f cart2f.o $(FLIBS)twod: $(MPIFDEP) twod.o	$(FLINKER) $(OPTFLAGS) -o twod twod.o $(FLIBS)clean:	@-/bin/rm -f *.o *~ core PI* $(EXECS) cartf twod cart1f cart2f \	*.out topol.diff *.trace mpif.h ${srcdir}/*.o *.stdo	@-rm -f work.pc work.pcl.c:	$(CLINKER) $(OPTFLAGS) -o $* $< $(LIBS).c.o:	$(CC) $(CFLAGS) -c $<.f:	$(FLINKER) $(OPTFLAGS) -o $* $< $(FLIBS).f.o:	$(F77) $(FFLAGS) -c $<# The following allows us to build a Fortran 90 test with those compilers that # allow .f90 extensions (cartc.f90).f90:	$(F90) $(F90FLAGS) -o $* $< $(FLIBS)

⌨️ 快捷键说明

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