makefile.in
来自「这是一个基于HMM 模型的生物多序列比对算法的linux实现版本。hmmer」· IN 代码 · 共 91 行
IN
91 行
################################################################ Makefile for SQUID's testsuite# CVS $Id: Makefile.in,v 1.6 2003/05/23 16:16:42 eddy Exp $## Note: The autoconf variables in this file must be coordinated# with HMMER, if you change them, because HMMER will # create a Makefile from this Makefile.in using its own# configure script, not SQUID's.############# 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.###########SHELL = /bin/shCC = @CC@CFLAGS = @CFLAGS@DEFS = @DEFS@LIBS = -lsquid @LIBS@ -lmTESTPROGS = iospeed rndspeedX-BASE = x-base-afetch\ x-base-alistat\ x-base-seqstat\ x-base-sfetch\ x-base-shuffle\ x-base-sindex\ x-base-sreformatBUGLIST = bug-1-sfetch-paths################################################################# Targets for building the test programs.#all: sqdconfig $(TESTPROGS) $(TESTPROGS): @EXEC_DEPENDENCY@ $(CC) $(CFLAGS) -L../ -I../ $(DEFS) -o $@ $@_main.o $(LIBS)sqdconfig: @EXEC_DEPENDENCY@ $(CC) $(CFLAGS) -L../ -I../ $(DEFS) -o $@ $@_main.o $(LIBS).c.o: $(CC) $(CFLAGS) $(DEFS) -L../ -I../ -c $< ################################################################################################################################# 'make check' actually runs the tests.#check: $(TESTPROGS) sqdconfig @for testprog in $(TESTPROGS); do\ if ./$$testprog; then\ echo $$testprog: ok;\ else\ echo $$testprog: FAILED;\ fi;\ done @for xprog in $(X-BASE); do\ ./$$xprog;\ done @for bugprog in $(BUGLIST); do\ ./$$bugprog;\ done ######### Miscellaneous#######clean: -rm -f *.o *~ Makefile.bak core $(TESTPROGS) TAGS gmon.out sqdconfigdistclean: make clean -rm -f Makefilebinclean: -rm -f *.o *~ Makefile.bak core TAGS gmon.out sqdconfigTAGS: etags -t *.c *.h Makefile.in
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?