📄 makefile.am
字号:
# author : Achim Gaedke# filename : /zpr/bspk/src/hmm/ghmm/ghmm++/examples/Makefile.am# created : DATE: 28 June 2001# $Id: Makefile.am,v 1.14 2004/02/26 11:59:01 wasinee Exp $# revision date : $Date: 2004/02/26 11:59:01 $# # Copyright (C) 1998-2001, ZAIK/ZPR, Universit鋞 zu K鰈n# # This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.# # This program 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 General Public License for more details.# # You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA# SUBDIRS= .CLEANFILES = \chmm.tmp \message.txtDISTCLEANFILES = *~MAINTAINERCLEANFILES = Makefile.in## if you want to link ghmm++ from C-code, you must use dynamic linking, ## NOTICE: It is important to link libstdc++ when linking from gcc to a C++ library. #CCLD = $(CC) -lstdc++CXXLD = $(CXX) -lstdc++INCLUDES = -I$(top_srcdir) $(XMLIO_INCLUDES)LDADD = -L/project/algorithmics/lib -lxmlio $(top_builddir)/ghmm++/libghmm++.la $(top_builddir)/ghmm/.libs/libghmm.a EXTRA_DIST = nvs.xml nvs.mod nvs.sqd gene_hmm.gmlnoinst_PROGRAMS = dna chmm generiere_nvs generiere_nvs_old_files coin_toss_test vector_test create_sequence read_graphml # noinst_PROGRAMS = read_cxmlcoin_toss_test_SOURCES = coin_toss_test.cppchmm_SOURCES = chmm.cppgeneriere_nvs_SOURCES = generiere_nvs.cppgeneriere_nvs_old_files_SOURCES = generiere_nvs_old_files.cppdna_SOURCES = dna.cppvector_test_SOURCES = vector_test.cppcreate_sequence_SOURCES = create_sequence.cppread_graphml_SOURCES = read_graphml.cpptestviterbi_SOURCES = testviterbi.cppCOPYRIGHT = $(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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -