📄 makefile.in
字号:
############################################################# Makefile for HMMER src directory# CVS $Id: Makefile.in,v 1.14 2001/08/05 23:44:43 eddy Exp $############ HMMER - Biological sequence analysis with profile HMMs# Copyright (C) 1992-1999 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@## other defined flags. # DEFS contains stuff that autoconf # decides on. MDEFS contains stuff that we added to# the configure script tests. LIBS contains system# libraries that the configure script decides we need.#MDEFS = @MDEFS@ @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#PVMFLAG = @PVMFLAG@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\ 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) $(MDEFS) $(PTHREAD_CFLAGS) $(PVMFLAG) $(MYINCDIR) $(PVMINCDIR) -c $<################################################################### Targets defining how to make HMMER executables.##all: $(PROGS) $(PROGS): @EXEC_DEPENDENCY@ $(OBJS) $(CC) $(CFLAGS) $(PTHREAD_CFLAGS) $(MDEFS) $(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 version.hclean: -rm -f *.o *~ Makefile.bak core $(PROGS) TAGS gmon.out libhmmer.aTAGS: etags -t *.c *.h Makefile.in
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -