makefile.in

来自「MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程」· IN 代码 · 共 81 行

IN
81
字号
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 ###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 = attrtest attrt ictest ictest2 ictest3 grouptest groupcreate \	attrerr icdupOTHEREXECS = attrtestMPI2EXECS = commnames commnamesfdefault: $(EXECS)fortran_tests: attrtest commnamesf## Note that runtests builds the executables as requiredtesting: 	-./runtests $(TESTARGS)linktest: default cleanall: testingattrtest: $(MPIFDEP) attrtest.o	$(FLINKER) $(OPTFLAGS) -o attrtest attrtest.o $(FLIBS)commnamesf: $(MPIFDEP) commnamesf.o	$(FLINKER) $(OPTFLAGS) -o commnamesf commnamesf.o $(FLIBS)attrt: attrt.o test.o	$(CLINKER) $(OPTFLAGS) -o attrt attrt.o test.o $(LIBS)attrerr: attrerr.o test.o	$(CLINKER) $(OPTFLAGS) -o attrerr attrerr.o test.o $(LIBS)commnames: commnames.o	$(CLINKER) $(OPTFLAGS) -o commnames commnames.o $(LIBS)ictest: ictest.o	$(CLINKER) $(OPTFLAGS) -o ictest ictest.o $(LIBS)ictest2: ictest2.o	$(CLINKER) $(OPTFLAGS) -o ictest2 ictest2.o $(LIBS)ictest3: ictest3.o	$(CLINKER) $(OPTFLAGS) -o ictest3 ictest3.o $(LIBS)icdup: icdup.o	$(CLINKER) $(OPTFLAGS) -o icdup icdup.o $(LIBS)grouptest: grouptest.o	$(CLINKER) $(OPTFLAGS) -o grouptest grouptest.o $(LIBS)groupcreate: groupcreate.o	$(CLINKER) $(OPTFLAGS) -o groupcreate groupcreate.o $(LIBS)clean:	@-/bin/rm -f *.o *~ PI* $(EXECS) $(OTHEREXECS) $(MPI2EXECS) \		core *.out *.diff *.trace mpif.h ${srcdir}/*.o *.stdo	@-rm -f work.pc work.pcl.c.o:	$(CC) $(CFLAGS) -c $<.f.o:	$(F77) $(FFLAGS) -c $<

⌨️ 快捷键说明

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