📄 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 featureMPI_IMPL = @MPI_IMPL@# MPE header files that are needed by endusersMPE_HEADERS = mpe_graphics.h mpe_graphicsf.h# Assumption: This Makefile won't be created if X is not availableall: build_include build_lib_bin build_etc linktest_all####### 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: @if [ "$(MPI_IMPL)" != "MPICH" \ -a "$(MPI_IMPL)" != "MPICH2" ] ; then \ ( cd contrib/test && $(MAKE) linktest_C ) ; \ filinktest_F77: @if [ "$(MPE_BUILD_FORTRAN2C)" = "yes" ] ; then \ if [ "$(MPI_IMPL)" != "MPICH" \ -a "$(MPI_IMPL)" != "MPICH2" ] ; then \ ( cd contrib/test && $(MAKE) linktest_F77 ) ; \ fi ; \ fi @echo######## 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_graphics_conf.h @-$(RM) -f Makefile contrib/*/Makefile @-$(RM) -f config.log config.status @-$(RM) -rf autom4te*.cachemaintainer-clean: distclean @-$(RM) -f mpe_graphics_conf.h.inowner-clean: maintainer-clean @-$(RM) -f configure
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -