📄 makefile.in
字号:
################################################################# Makefile for HMMER testsuite# CVS $Id: Makefile.in,v 1.13 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.###########CC = @CC@CFLAGS = @CFLAGS@MDEFS = @MDEFS@ @DEFS@# Configuration for optional pthreads multiprocessor support#PTHREAD_LIBS = @PTHREAD_LIBS@PTHREAD_CFLAGS = @PTHREAD_CFLAGS@SHELL = /bin/shMYLIBS = -lhmmer -lsquidLIBS = @LIBS@ -lmSHIVA = alignalign_test\ evd_test\ masks_test\ parsingviterbi_test\ tophits_test\ trace_test\ viterbi_exercise\ weeviterbi_test######### Targets defining how to make Shiva executables.#######.c.o: $(CC) $(CFLAGS) $(PTHREAD_CFLAGS) $(MDEFS) -I../squid -I../src -c $< all: $(SHIVA)$(SHIVA): @EXEC_DEPENDENCY@ $(CC) $(CFLAGS) $(PTHREAD_CFLAGS) $(MDEFS) -o $@ -L../squid -L../src $@.o $(MYLIBS) $(PTHREAD_LIBS) $(LIBS)######### `make check` actually runs the tests.#######check: $(SHIVA) @echo @echo Running compiled Shiva exercises: @echo Warning: some tests may take several minutes to complete. @for shivatest in $(SHIVA); do\ if ./$$shivatest; then\ echo $$shivatest: ok;\ else\ echo $$shivatest: FAILED;\ fi;\ done @echo @echo Running scripted Shiva exercises: @echo Warning: This also may take several minutes. perl ./Optiontests.pl sh ./Exercises.sh######### Miscellaneous#######clean: -rm -f *.o *~ Makefile.bak core $(SHIVA) TAGS gmon.outdistclean: make clean -rm -f MakefileTAGS: etags -t *.c *.h Makefile.in
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -