/ghmm-0.7.0/tests/data/Makefile.am
http://github.com/jcnossen/hmmgenefinder · Makefile · 53 lines · 17 code · 11 blank · 25 comment · 3 complexity · f607f062dd1b2de21a505f8a73008d75 MD5 · raw file
- # author : Achim Gaedke
- # filename : ghmm/tests/data/Makefile.am
- # created : DATE: April 2001
- # $Id: Makefile.am 116 2001-06-29 10:13:07Z achim $
- #
- # Copyright (C) 1998-2005 Alexander Schliep
- # Copyright (C) 1998-2001 ZAIK/ZPR, Universitaet zu Koeln
- # Copyright (C) 2002-2005 Max-Planck-Institut fuer Molekulare Genetik, Berlin
- #
- # 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= .
- MAINTAINERCLEANFILES = Makefile.in
- EXTRA_DIST = test.smo test10.sqd test100.sqd viterbi.sh
- COPYRIGHT = $(top_srcdir)/COPYRIGHT.txt
- dist-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