makefile.sm

来自「fortran并行计算包」· SM 代码 · 共 34 行

SM
34
字号
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 + =
减小字号Ctrl + -
显示快捷键?