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

📄 makefile.in

📁 刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件
💻 IN
字号:
# This Makefile.in created by simplemake.  Do not edit# @configure_input@all: all-redirectSHELL           = @SHELL@AR              = @AR@RANLIB          = @RANLIB@top_srcdir      = @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 .pf .c .man .latex .html .c.o:	$(C_COMPILE) -c @PROFILE_DEF_MPI@ $<.c.pf:	${C_COMPILE} -c -DMPICH_PROFILE_PMPI $< 	@mv -f $*.o $*.pf.c:	$(C_COMPILE) -o $* $< $(LDFLAGS) $(LIBS).c.man:	doctext  -mpath ../../../man/man3 -heading MPI \		-quotefmt ${top_srcdir}/maint/docnotes $<.c.latex:	doctext -latex -mpath ../../../doc/refman -heading MPI \		-quotefmt ${top_srcdir}/maint/docnotes $<.c.html:	doctext -html -mpath ../../../www/www3 -heading MPI \		-quotefmt ${top_srcdir}/maint/docnotes $<clean:	-rm -f *.o ${srcdir}/*.o 	-rm -f *.lo ${srcdir}/*.lo	-rm -f *.pf ${srcdir}/*.pfdistclean: clean	-rm -f  Makefile	-rm -f TAGSmpi_sources = attr_delete.c attr_get.c attr_put.c \ comm_create_keyval.c comm_delete_attr.c comm_free_keyval.c \ comm_get_attr.c comm_set_attr.c keyval_create.c keyval_free.c \ type_create_keyval.c type_delete_attr.c type_free_keyval.c \ type_get_attr.c type_set_attr.c win_create_keyval.c \ win_delete_attr.c win_free_keyval.c win_get_attr.c win_set_attr.cINCLUDES = -I../../include -I${top_srcdir}/src/includeall-redirect: ../../../lib/lib${MPILIBNAME}.a @NO_WEAK_SYM@../../../lib/lib${MPILIBNAME}.a: attr_delete.o attr_get.o attr_put.o \	comm_create_keyval.o comm_delete_attr.o comm_free_keyval.o \	comm_get_attr.o comm_set_attr.o dup_fn.o keyval_create.o \	keyval_free.o attrutil.o 	${AR} cr ../../../lib/lib${MPILIBNAME}.a $?	${RANLIB} ../../../lib/lib${MPILIBNAME}.a	sleep 1@NO_WEAK_SYM_TARGET@: ../../../lib/libp${MPILIBNAME}.a../../../lib/libp${MPILIBNAME}.a: attr_delete.pf attr_get.pf attr_put.pf \	comm_create_keyval.pf comm_delete_attr.pf comm_free_keyval.pf \	comm_get_attr.pf comm_set_attr.pf dup_fn.pf keyval_create.pf \	keyval_free.pf attrutil.pf 	-mkdir .tmp ; rm -f .tmp/* ; cp $? .tmp 	-(cd .tmp && for file in *.pf ; do \	bname=`basename $$file .pf`; mv -f $$file $${bname}.o ; done;)	for file in .tmp/*.o ; do \	${AR} cr ../../../lib/libp${MPILIBNAME}.a $$file ; done;	${RANLIB} ../../../lib/libp${MPILIBNAME}.a	-rm -rf .tmpSOURCES =  attr_delete.c attr_get.c attr_put.c comm_create_keyval.c \	comm_delete_attr.c comm_free_keyval.c comm_get_attr.c comm_set_attr.c \	dup_fn.c keyval_create.c keyval_free.c attrutil.c tags: TAGSTAGS:${HEADERS} ${SOURCES}	etags -o ../../../TAGS --append ${HEADERS} ${SOURCES}## This is a test for the document generation

⌨️ 快捷键说明

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