makefile.in

来自「刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件」· IN 代码 · 共 55 行

IN
55
字号
# This Makefile.in created by simplemake.  Do not edit# @configure_input@all: all-redirectSHELL           = @SHELL@AR              = @AR@RANLIB          = @RANLIB@master_top_srcdir  = @master_top_srcdir@srcdir      = @srcdir@DEFS        = @DEFS@ -I. -I${srcdir}CPPFLAGS    = @CPPFLAGS@MPILIBNAME  = @MPILIBNAME@## Add the profiling definitions from the mpich2 document here?# Do we want to only add this for the mpi directories that will define# profing, perhaps by adding an # "include mpiprof" to the Makefile.sm, and have simplemake handle these# includes?CC          = @CC@CFLAGS      = @CFLAGS@C_COMPILE   = $(CC) $(DEFS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS)VPATH = .:${srcdir}.SUFFIXES:.SUFFIXES: .o .c .c.o:	$(C_COMPILE) -c $<.c:	$(C_COMPILE) -o $* $< $(LDFLAGS) $(LIBS)clean:	-rm -f *.o ${srcdir}/*.o 	-rm -f *.lo ${srcdir}/*.lodistclean: clean	-rm -f  Makefile	-rm -f TAGSINCLUDES = -I../../../../../include -I${master_top_srcdir}/src/includeall-redirect: ../../../../../../lib/lib${MPILIBNAME}.a../../../../../../lib/lib${MPILIBNAME}.a: ch3_cancel_send.o ch3_comm_spawn.o \	ch3_describe_states.o ch3_finalize.o ch3_init.o ch3_iread.o \	ch3_isend.o ch3_isendv.o ch3_istartmsg.o ch3_istartmsgv.o \	ch3_iwrite.o ch3_progress.o ch3_request.o 	${AR} cr ../../../../../../lib/lib${MPILIBNAME}.a $?	${RANLIB} ../../../../../../lib/lib${MPILIBNAME}.a	sleep 1SOURCES =  ch3_cancel_send.c ch3_comm_spawn.c ch3_describe_states.c \	ch3_finalize.c ch3_init.c ch3_iread.c ch3_isend.c ch3_isendv.c \	ch3_istartmsg.c ch3_istartmsgv.c ch3_iwrite.c ch3_progress.c \	ch3_request.c tags: TAGSTAGS:${HEADERS} ${SOURCES}	etags -o ../../../../../../TAGS --append ${HEADERS} ${SOURCES}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?