📄 makefile.in
字号:
ALL: allMAKE = @MAKE@SHELL = /bin/shMKDIR = @MKDIR@RM = @RM@CP = @CPRP@top_srcdir = @top_srcdir@srcdir = @srcdir@# Build directoriesincludebuild_dir = @includebuild_dir@libbuild_dir = @libbuild_dir@binbuild_dir = @binbuild_dir@etcbuild_dir = @etcbuild_dir@sbinbuild_dir = @sbinbuild_dir@# Building Fortran to C interfaceMPE_BUILD_FORTRAN2C = @MPE_BUILD_FORTRAN2C@# MPI implementation: used to turn on/off of certain feature# MPI_IMPL = @MPI_IMPL@# MPE header files that are needed by endusersMPE_HEADERS = clog_uuid.h clog_commset.h mpe_log.h mpe_logf.hall: build_include build_lib_bin build_etc####### Building from the sourcebuild_include: @-if [ -n "$(includebuild_dir)" ] ; then \ if [ ! -d $(includebuild_dir) ] ; then \ $(MKDIR) -p $(includebuild_dir) ; \ fi ; \ for file in $(MPE_HEADERS) ; do \ if [ -f $(top_srcdir)/include/$$file ] ; then \ $(CP) -f $(top_srcdir)/include/$$file \ $(includebuild_dir) ; \ fi ; \ done ; \ fibuild_lib_bin: @( cd src && $(MAKE) )build_etc: @-for file in ./etc/*.conf ; do \ $(CP) -f $$file $(etcbuild_dir) ; \ done ######## Linkage Testslinktest_all: linktest_C linktest_F77linktest_C:linktest_F77:######## Cleaning# This is always a VPATH build, cleaning up the MPE_HEADERSclean_include: @-cd $(includebuild_dir) && \ for file in $(MPE_HEADERS) ; do \ $(RM) -f $$file ; \ doneclean_lib:clean_bin:clean_etc: @-$(RM) -f ./etc/*.confclean: clean_bin clean_lib @( cd src && $(MAKE) clean )distclean: clean_include clean_bin clean_lib clean_etc @-( cd src && $(MAKE) distclean ) @-$(RM) -f mpe_logging_conf.h @-$(RM) -f Makefile @-$(RM) -f config.log config.status @-$(RM) -rf autom4te*.cachemaintainer-clean: distclean @-$(RM) -f mpe_logging_conf.h.inowner-clean: maintainer-clean @-$(RM) -f configure
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -