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

📄 makefile.in

📁 刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件
💻 IN
字号:
# This Makefile.in created by simplemake.  Do not edit# @configure_input@all: all-redirectSHELL           = @SHELL@srcdir      = @srcdir@MAKE        = @MAKE@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?VPATH = .:${srcdir}.SUFFIXES:.SUFFIXES: .o .c clean:	-rm -f *.o ${srcdir}/*.o 	-rm -f *.lo ${srcdir}/*.lo	for dir in channels src ; do \		(cd $$dir && ${MAKE} clean ; ) ; donedistclean: clean distclean-local	for dir in channels src ; do \		(cd $$dir && ${MAKE} distclean ; ) ; done	-rm -f  Makefile src/Makefile channels/Makefile localdefs config.status config.log config.cache config.system	-rm -f TAGSall-redirect:	@(cd channels && ${MAKE} all )	@(cd src && ${MAKE} all )tags: TAGSTAGS:	for dir in channels src ; do \		(cd $$dir && ${MAKE} TAGS ; ) ; donedistclean-local:	-rm -f include/mpidi_ch3_conf.hmaintainerclean-local:	-rm -f include/mpidi_ch3_conf.h.in## echomaxprocname gives the maximum lenght of a processor name, as used# by MPI_GET_PROCESSOR_NAME.  This is initialized in mpid_initechomaxprocname:	@echo 128

⌨️ 快捷键说明

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