📄 makefile.in
字号:
# This Makefile.in created by simplemake. Do not edit# @configure_input@# --------------------------------------------------------------------------all: all-redirectSHELL = @SHELL@INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA = @INSTALL_DATA@MKDIR_P = @MKDIR_P@master_top_srcdir = @master_top_srcdir@bindir = @bindir@exec_prefix = @exec_prefix@prefix = @prefix@abs_builddir = @abs_builddir@srcdir = @srcdir@abs_srcdir = @abs_srcdir@DEFS = @DEFS@ -I. -I${srcdir}CPPFLAGS = @CPPFLAGS@LIBS = @LIBS@MAKE = @MAKE@MPILIBNAME = @MPILIBNAME@CC = @CC@CFLAGS = @CFLAGS@C_COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS)C_LINK = $(CC)CC_SHL = @CC_SHL@C_COMPILE_SHL = $(CC_SHL) $(DEFS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS)LDFLAGS = @LDFLAGS@ VPATH = .:@srcdir@DOCTEXT = @DOCTEXT@INCLUDES = -I../../include -I${master_top_srcdir}/src/include \ -I../../pmi/simple -I${master_top_srcdir}/src/pmi/simple \ -I${master_top_srcdir}/src/pm/util doc_sources = mpiexec.txt.SUFFIXES:.SUFFIXES: .o .lo .c .man .html .latex .txt .c.o: $(C_COMPILE) -c $<.c.lo: $(C_COMPILE_SHL) -c $< -o _s$*.o @mv -f _s$*.o $*.lo.c.txt: $(CPP) $(INCLUDES) $(CPPFLAGS) $< >$*.txt.c: $(C_COMPILE) -o $* $< $(LDFLAGS) $(LIBS).txt.man: $(DOCTEXT) -man -mpath ../../../man/man1 -ext 1 -heading MPI \ -quotefmt ${master_top_srcdir}/maint/docnotes ${master_top_srcdir}/doc/mansrc/cmdnotes $<.txt.html: $(DOCTEXT) -html -mpath ../../../www/www1 -heading MPI \ -quotefmt ${master_top_srcdir}/maint/docnotes ${master_top_srcdir}/doc/mansrc/cmdnotes $<.txt.latex: $(DOCTEXT) -latex -mpath ../../../doc/refman -heading MPI \ -quotefmt ${master_top_srcdir}/maint/docnotes ${master_top_srcdir}/doc/mansrc/cmdnotes $<${srcdir}/configure: ${srcdir}/configure.in @rm -rf autom4te*.cache (cd ${srcdir} && autoheader -I ../../../confdb && \ autoconf -I \ ../../../confdb ) # --------------------------------------------------------------------------${srcdir}/Makefile.in: ${srcdir}/Makefile.sm ( cd ${srcdir} && /sandbox/balaji/trunk/maint/mpich2-1.0.7/maint/simplemake \ -rootdir=../../../ \ -configdir=src/pm/remshell/ \ -common=/sandbox/balaji/trunk/maint/mpich2-1.0.7/maint/makedefs \ -docnamedefs=\$${master_top_srcdir}/maint/docnotes \ "-autoconf=-I ROOTDIR/confdb" \ -libdir=\$${MPILIBNAME}=ROOTDIR/lib \ -distcleanfiles="Makefile config.status config.log config.cache *conf.cache config.system" \ -smvar_doc_attop=0 \ Makefile.sm )Makefile: ${srcdir}/Makefile.in -if [ -x config.status ] ; then CONFIG_FILES=Makefile CONFIG_HEADERS= ${SHELL} ./config.status ; fi# --------------------------------------------------------------------------apply: $(ACTION) $(ACTION_INPUT)clean: clean-local -@rm -f *.o ${srcdir}/*.o mpiexec -@rm -f mpiexec.exe -@rm -f core core.[0-9]* -@rm -f *.lo ${srcdir}/*.lo -@rm -f ${srcdir}/*.bb ${srcdir}/*.bbg ${srcdir}/*.da -@rm -f ${srcdir}/*.gcda ${srcdir}/*.gcno -@rm -f *.gcov *.bb *.bbg *.da *.gcda *.gcno -@rm -f *.irlog*distclean: clean distclean-local distclean-xxx remove-makefiledistclean-xxx: -@rm -f Makefile config.status config.log config.cache *conf.cache config.system -@rm -rf autom4te*.cache -@rm -f remshellconf.h -@rm -rf $(DEPS_DIR) -@rm -f TAGSmaintainer-clean: distclean-xxx remove-genmakefiles -rm -f remshellconf.h.in remove-makefile: rm -f Makefileremove-genmakefiles: rm -f Makefile.in Makefileall-redirect: mpiexeccoverage: mpiexec: mpiexec.o ../util/libmpiexec.a $(C_LINK) $(CFLAGS) $(LDFLAGS) -o mpiexec mpiexec.o -L../util \ -lmpiexec -L../../../lib -L${master_top_srcdir}/lib -lmpich ${LIBS} # --------------------------------------------------------------------------mandoc: ${doc_sources:.txt=.man}htmldoc: ${doc_sources:.txt=.html}latexdoc: ${doc_sources:.txt=.latex}# --------------------------------------------------------------------------# --------------------------------------------------------------------------# Install targetinstall: FORCE_TARGET if [ ! -d ${DESTDIR}${exec_prefix} ] ; then $(MKDIR_P) ${DESTDIR}${exec_prefix} ; fi if [ ! -d ${DESTDIR}${prefix} ] ; then $(MKDIR_P) ${DESTDIR}${prefix} ; fi if [ ! -d ${DESTDIR}${bindir} ] ; then $(MKDIR_P) ${DESTDIR}${bindir} ; fi $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) mpiexec ${DESTDIR}${bindir}/mpiexecinstall-strip: $(MAKE) INSTALL_STRIP_FLAG=-s installuninstall: -rm -f ${DESTDIR}${bindir}/mpiexecinstallcheck: # --------------------------------------------------------------------------# --------------------------------------------------------------------------# Dependenciesdependencies:# End of Dependencies# --------------------------------------------------------------------------# --------------------------------------------------------------------------SOURCES = mpiexec.cETAGS = @ETAGS@ @ETAGSADD@HEADERFILES = $(HEADERS)SOURCEFILES = $(SOURCES)tags: TAGSTAGS: Makefile${HEADERFILES} ${SOURCEFILES} here=`cd ../../.. && pwd` ; cd ${srcdir} && $(ETAGS) -o $$here/TAGS --append ${HEADERFILES} ${SOURCEFILES}# --------------------------------------------------------------------------clean-local: @-(cd ../util && $(MAKE) clean)distclean-local: @-rm -f remshellconf.h# Use the mpich2-build-install target to include mpiexec in the build bin# directory (all pm's require these targets)mpich2-build-install: installmpich2-build-uninstall: uninstall# A special alternate installation target when using multiple process managersinstall-alt: mpiexec $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) mpiexec $(DESTDIR)${bindir}/mpiexec.remshell# We use a dummy dependency to ensure that we always go to the util# directory to see if anything needs to be done ../util/libmpiexec.a: dummydummy: cd ../util && $(MAKE)FORCE_TARGET:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -