📄 makefile.sm
字号:
SUBDIRS = src .# Add the step that builds the dlls. Do this during the make # step because the build step needs the src/util/createshlib script that# is built by the main configure stepall-local: for dir in @SUBCHANNELS@ ; do \ CC="@CC@" ; export CC ; CFLAGS="@CFLAGS@" ; export CFLAGS ; \ (cd ../$$dir && ${srcdir}/../$$dir/builddll --prefix=${prefix} \ --libdir=${libdir} \ --exec-prefix=${exec_prefix} \ --shlibtype=@ENABLE_SHLIB@ ) ;\ rc=$$? ; if [ $$rc != 0 ] ; then exit 1 ; fi ; \ donedistclean-local: -rm -f include/mpidi_ch3i_dllchan_conf.h for dir in @SUBCHANNELS@ ; do \ (cd ../$$dir && $(MAKE) distclean ) ; \ donemaintainer-clean-local: -rm -f include/mpidi_ch3i_dllchan_conf.h.ininstall-local: for dir in @SUBCHANNELS@ ; do \ (cd ../$$dir && $(MAKE) install ) ; \ doneclean-local: for dir in @SUBCHANNELS@ ; do \ (cd ../$$dir && $(MAKE) clean ) ; \ done
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -