makefile.in

来自「刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件」· IN 代码 · 共 57 行

IN
57
字号
# This Makefile.in created by simplemake.  Do not edit# @configure_input@all: all-redirectSHELL           = @SHELL@AR              = @AR@RANLIB          = @RANLIB@master_top_srcdir  = @master_top_srcdir@srcdir      = @srcdir@DEFS        = @DEFS@ -I. -I${srcdir}CPPFLAGS    = @CPPFLAGS@MPILIBNAME  = @MPILIBNAME@## Add the profiling definitions from the mpich2 document here?# Do we want to only add this for the mpi directories that will define# profing, perhaps by adding an # "include mpiprof" to the Makefile.sm, and have simplemake handle these# includes?CC          = @CC@CFLAGS      = @CFLAGS@C_COMPILE   = $(CC) $(DEFS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS)VPATH = .:${srcdir}.SUFFIXES:.SUFFIXES: .o .c .c.o:	$(C_COMPILE) -c $<.c:	$(C_COMPILE) -o $* $< $(LDFLAGS) $(LIBS)clean:	-rm -f *.o ${srcdir}/*.o 	-rm -f *.lo ${srcdir}/*.lodistclean: clean	-rm -f  Makefile	-rm -f TAGSINCLUDES = -I${srcdir} -I../../../include -I${master_top_srcdir}/src/includeall-redirect: ../../../../lib/lib${MPILIBNAME}.a../../../../lib/lib${MPILIBNAME}.a: gen_segment.o mpid_type_debug.o \	gen_dataloop.o mpid_segment.o mpid_type_dup.o mpid_type_vector.o \	mpid_type_contiguous.o mpid_type_indexed.o mpid_type_struct.o \	mpid_type_get_envelope.o mpid_datatype_free.o \	mpid_datatype_contents.o mpid_type_get_contents.o 	${AR} cr ../../../../lib/lib${MPILIBNAME}.a $?	${RANLIB} ../../../../lib/lib${MPILIBNAME}.a	sleep 1SOURCES =  gen_segment.c mpid_type_debug.c gen_dataloop.c mpid_segment.c \	mpid_type_dup.c mpid_type_vector.c mpid_type_contiguous.c \	mpid_type_indexed.c mpid_type_struct.c mpid_type_get_envelope.c \	mpid_datatype_free.c mpid_datatype_contents.c \	mpid_type_get_contents.c tags: TAGSTAGS:${HEADERS} ${SOURCES}	etags -o ../../../../TAGS --append ${HEADERS} ${SOURCES}

⌨️ 快捷键说明

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