makefile.am

来自「General Hidden Markov Model Library 一个通用」· AM 代码 · 共 135 行

AM
135
字号
#*******************************************************************************##       This file is part of the General Hidden Markov Model Library,#       GHMM version 0.8_beta1, see http://ghmm.org##       Filename: ghmm/ghmm/Makefile.am#       Authors:  Wasinee Rungsarityotin, Benjamin Georgi, Alexander Schliep,#                 Benjamin Rich, Janne Grunau##       Copyright (C) 1998-2004 Alexander Schliep#       Copyright (C) 1998-2001 ZAIK/ZPR, Universitaet zu Koeln#       Copyright (C) 2002-2004 Max-Planck-Institut fuer Molekulare Genetik,#                               Berlin##       Contact: schliep@ghmm.org##       This library is free software; you can redistribute it and/or#       modify it under the terms of the GNU Library General Public#       License as published by the Free Software Foundation; either#       version 2 of the License, or (at your option) any later version.##       This library is distributed in the hope that it will be useful,#       but WITHOUT ANY WARRANTY; without even the implied warranty of#       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU#       Library General Public License for more details.##       You should have received a copy of the GNU Library General Public#       License along with this library; if not, write to the Free#       Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA###       This file is version $Revision: 1640 $#                       from $Date: 2006-07-06 13:43:21 +0200 (Thu, 06 Jul 2006) $#             last change by $Author: grunau $.##******************************************************************************/SUBDIRS = .MAINTAINERCLEANFILES = Makefile.inINCLUDES  = -I$(top_srcdir)AM_CFLAGS = -DDTD_LOC=\"$(datadir)/ghmm/ghmm.dtd.1.0\"lib_LTLIBRARIES = libghmm.lalibghmm_la_LDFLAGS = -version-info @GHMM_VERSION_CURRENT@:@GHMM_VERSION_REVISION@:@GHMM_VERSION_AGE@libghmm_la_SOURCES= ghmm.h \                    rng.c rng.h \                    randvar.c randvar.h \                    gauss_tail.c \                    mes.c mes.h \                    ghmm_internals.c ghmm_internals.h \                    mprintf.c mprintf.h \                    vector.c vector.h \                    matrix.c  matrix.h \                    scanner.c scanner.h \                    linkedlist.c \                    sequence.c sequence.h \                    psequence.c psequence.h \                    xmlreader.c xmlreader.h \                    xmlwriter.c xmlwriter.h \                    model.c model.h \                    foba.c foba.h \                    viterbi.c viterbi.h \                    reestimate.c reestimate.h \                    gradescent.c gradescent.h \                    kbest.c kbest.h \                    discrime.c discrime.h \                    modelutil.c \                    cluster.c cluster.h \                    root_finder.c \                    smodel.c smodel.h \                    sfoba.c sfoba.h \                    sviterbi.c sviterbi.h \                    sreestimate.c sreestimate.h \                    scluster.c scluster.h \                    sgenerate.c sgenerate.h \                    smixturehmm.c smixturehmm.h \                    smap_classify.c smap_classify.h \                    sdmodel.c sdmodel.h \                    sdfoba.c sdfoba.h \                    sdviterbi.c \                    pmodel.c pmodel.h \                    pviterbi.c pviterbi.h \                    pviterbi_propagate.c pviterbi_propagate.hpkginclude_HEADERS = ghmm.h \                  sequence.h \		  psequence.h \                  xmlreader.h \                  xmlwriter.h \                  model.h \		  foba.h \                  viterbi.h \                  gradescent.h \                  kbest.h \                  discrime.h \                  cluster.h \                  scluster.h \                  reestimate.h \                  sfoba.h \                  sviterbi.h \                  smodel.h \		  sdmodel.h \                  sdfoba.h \                  sreestimate.h \                  sgenerate.h \                  smixturehmm.h \                  smap_classify.h \		  pmodel.h \		  pviterbi.h \		  pviterbi_propagate.h \		  rng.h \		  scanner.h \		  obsolete.h \		  unsupported.hCOPYRIGHT = $(top_srcdir)/COPYRIGHT.txtdist-hook:	test -z "$(AWK)" && exit 0 ;\	TMPFILE="$(distdir)/tmp"; \	for f in $(DISTFILES) ; do \	  distfile=$(distdir)/$$f ; \	  if grep '__copyright__ *$$' $$distfile >/dev/null ; then \	    mv $$distfile $$TMPFILE; \	    $(AWK) 'BEGIN {nr=0;while(getline < "$(COPYRIGHT)" ==1) copyright[nr++]=$$0;} /__copyright__ *$$/{sub("__copyright__.*","");for(i=0;i<nr;i++) print $$0 copyright[i];} //' \	    $$TMPFILE >$$distfile; \	    touch -m -a -r $$TMPFILE $$distfile; \	  fi; \	done ; \	rm -f $$TMPFILE

⌨️ 快捷键说明

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