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

📄 makefile.in

📁 mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境
💻 IN
字号:
# This Makefile.in created by simplemake.  Do not edit# @configure_input@# --------------------------------------------------------------------------all: all-redirectSHELL           = @SHELL@bindir          = @bindir@exec_prefix     = @exec_prefix@prefix          = @prefix@abs_builddir    = @abs_builddir@srcdir          = @srcdir@abs_srcdir      = @abs_srcdir@MAKE            = @MAKE@MPILIBNAME      = @MPILIBNAME@PMPILIBNAME     = @PMPILIBNAME@VPATH = .:@srcdir@.SUFFIXES:# Some make programs complain if no suffixes are set.SUFFIXES: .c .oapply:	$(ACTION) $(ACTION_INPUT)	for dir in util timer attr coll datatype pt2pt info comm rma spawn topo io ext init ; do \		(cd $$dir && ${MAKE} apply ; ) ; doneclean:	-@rm -f *.o ${srcdir}/*.o 	-@rm -f *.lo ${srcdir}/*.lo	for dir in util timer attr coll datatype pt2pt info comm rma spawn topo io ext init ; do \		(cd $$dir && ${MAKE} clean ; ) ; donedistclean: clean distclean-xxx remove-makefiledistclean-xxx:	for dir in util timer attr coll datatype pt2pt info comm rma spawn topo io ext init ; do \		(cd $$dir && ${MAKE} distclean ; ) ; done	-@rm -f Makefile testlist	-@rm -rf autom4te*.cache	-@rm -rf $(DEPS_DIR)	-@rm -f TAGSremove-makefile:	rm -f Makefileremove-genmakefiles:	rm -f  Makefileall-redirect:	@(cd util && ${MAKE} all )	@(cd timer && ${MAKE} all )	@(cd attr && ${MAKE} all )	@(cd coll && ${MAKE} all )	@(cd datatype && ${MAKE} all )	@(cd pt2pt && ${MAKE} all )	@(cd info && ${MAKE} all )	@(cd comm && ${MAKE} all )	@(cd rma && ${MAKE} all )	@(cd spawn && ${MAKE} all )	@(cd topo && ${MAKE} all )	@(cd io && ${MAKE} all )	@(cd ext && ${MAKE} all )	@(cd init && ${MAKE} all )# --------------------------------------------------------------------------# --------------------------------------------------------------------------# --------------------------------------------------------------------------HEADERFILES     = $(HEADERS)SOURCEFILES     = $(SOURCES)tags: TAGSTAGS:	for dir in util timer attr coll datatype pt2pt info comm rma spawn topo io ext init ; do \		(cd $$dir && ${MAKE} TAGS ; ) ; done# --------------------------------------------------------------------------# Other dirs: misc (sizeof, only in more complete F90 implementation)# A special testing target to simplify testing just the Fortran 90 codetesting:	../runtests -srcdir=$(srcdir) -tests=testlist \		   -mpiexec=$(bindir)/mpiexec \		   -xmlfile=summary.xmlFORCE_TARGET:

⌨️ 快捷键说明

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