makefile.in

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

IN
38
字号
# 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:clean:	-rm -f *.o ${srcdir}/*.o 	-rm -f *.lo ${srcdir}/*.lo	for dir in src ; do \		(cd $$dir && ${MAKE} clean ; ) ; donedistclean: clean	for dir in src ; do \		(cd $$dir && ${MAKE} distclean ; ) ; done	-rm -f  Makefile src/Makefile src/bsocket/Makefile src/common/Makefile src/init/Makefile src/mm/Makefile src/progress/Makefile src/pt2pt/Makefile src/request/Makefile src/spawn/Makefile src/util/Makefile src/xfer/Makefile src/sock/Makefile src/ib/Makefile src/tcp/Makefile src/via/Makefile src/shm/Makefile src/viardma/Makefile src/packer/Makefile src/unpacker/Makefile src/rma/Makefile config.status config.log config.cache config.system	-rm -f TAGSall-redirect:	@(cd src && ${MAKE} all )tags: TAGSTAGS:	for dir in src ; do \		(cd $$dir && ${MAKE} TAGS ; ) ; done

⌨️ 快捷键说明

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