📄 makefile.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 + -