makefile.in

来自「这是一个基于HMM 模型的生物多序列比对算法的linux实现版本。hmmer」· IN 代码 · 共 127 行

IN
127
字号
############################################################# Makefile for HMMER src directory# CVS $Id: Makefile.in,v 1.19 2003/06/13 20:05:31 eddy Exp $############ HMMER - Biological sequence analysis with profile HMMs# Copyright (C) 1992-2003 Washington University School of Medicine# All Rights Reserved# #     This source code is distributed under the terms of the#     GNU General Public License. See the files COPYING and LICENSE#     for details.############# your compiler and compiler flags#CC       = @CC@CFLAGS   = @CFLAGS@CPPFLAGS = @CPPFLAGS@LDFLAGS  = @LDFLAGS@DEFS     = @DEFS@LIBS     = @LIBS@ -lm## archiving command, and ranlib command if you need one.#  In general, you shouldn't need to change these, and they're#  only used for building the testsuite anyway... e.g. we#  make a "libhmmer.a" library for building the testsuite.#AR     = @AR@ rcv RANLIB = @RANLIB@# Configuration for optional pthreads multiprocessor support#PTHREAD_LIBS   = @PTHREAD_LIBS@PTHREAD_CFLAGS = @PTHREAD_CFLAGS@# Configuration for optional PVM functionality#PVMLIBDIR = @PVMLIBDIR@PVMINCDIR = @PVMINCDIR@PVMLIBS   = @PVMLIBS@PVMPROGS  = @PVMPROGS@SHELL    = /bin/shMYLIBS   = -lsquidMYLIBDIR = -L../squidMYINCDIR = -I../squidPROGS = hmmalign\	hmmbuild\	hmmcalibrate\	hmmconvert\	hmmemit\	hmmfetch\	hmmindex\	hmmpfam\	hmmsearch\	${PVMPROGS}OBJS =  alphabet.o\	core_algorithms.o\	debug.o\	display.o\	emit.o\	emulation.o\	fast_algorithms.o\	histogram.o\	hmmio.o\	mathsupport.o\        masks.o\	misc.o\	modelmakers.o\	plan7.o\	plan9.o\	postprob.o\	prior.o\	pvm.o\	threads.o\	tophits.o\	trace.o HDRS =  config.h\	funcs.h\	globals.h\	postprob.h\	structs.h.c.o:	${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} ${PTHREAD_CFLAGS} ${MYINCDIR} ${PVMINCDIR} -c $<################################################################### Targets defining how to make HMMER executables.##all: 	$(PROGS) ${PROGS}: @EXEC_DEPENDENCY@ ${OBJS} 	${CC} ${CFLAGS} ${PTHREAD_CFLAGS} ${DEFS} ${LDFLAGS} ${MYLIBDIR} ${PVMLIBDIR} -o $@ $@.o ${OBJS} ${PVMLIBS} ${MYLIBS} ${PTHREAD_LIBS} ${LIBS}################################################################### Targets used in making HMMER module for testsuite compilation.##module: libhmmer.alibhmmer.a: $(OBJS) 	$(AR) libhmmer.a $(OBJS) 	$(RANLIB) libhmmer.a	chmod 644 libhmmer.a################################################################### Miscellaneous targets.##distclean:	make clean	-rm -f Makefile clean:	-rm -f *.o *~ Makefile.bak core $(PROGS) TAGS gmon.out libhmmer.abinclean:	-rm -f *.o *~ Makefile.bak core TAGS gmon.out libhmmer.aTAGS:	etags -t *.c *.h Makefile.in

⌨️ 快捷键说明

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