## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am 2526 2011-07-25 02:03:35Z peter $ # Copyright (C) 2003 Jari Häkkinen # Copyright (C) 2005 Peter Johansson # Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson # Copyright (C) 2009, 2010, 2011 Peter Johansson # # This file is part of the yat library, http://dev.thep.lu.se/yat # # The yat library 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 3 of the # License, or (at your option) any later version. # # The yat 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 # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with yat. If not, see . DOXYGEN_FILES = $(srcdir)/build_tool.doxygen \ $(builddir)/first_page.doxygen \ $(srcdir)/footer.html \ $(srcdir)/namespaces.doxygen \ $(srcdir)/concepts.doxygen \ $(srcdir)/Statistics.doxygen EXTRA_DIST = $(DOXYGEN_FILES) @am__include@ @am__quote@./$(top_builddir)/yat/classifier/doxygen.mk@am__quote@ @am__include@ @am__quote@./$(top_builddir)/yat/normalizer/doxygen.mk@am__quote@ @am__include@ @am__quote@./$(top_builddir)/yat/omic/doxygen.mk@am__quote@ @am__include@ @am__quote@./$(top_builddir)/yat/random/doxygen.mk@am__quote@ @am__include@ @am__quote@./$(top_builddir)/yat/regression/doxygen.mk@am__quote@ @am__include@ @am__quote@./$(top_builddir)/yat/statistics/doxygen.mk@am__quote@ @am__include@ @am__quote@./$(top_builddir)/yat/utility/doxygen.mk@am__quote@ DOXYGEN_INPUT=$(classifier_doxygen_input) \ $(yat_normalizer_doxygen_input) \ $(yat_omic_doxygen_input) \ $(yat_random_doxygen_input) \ $(yat_regression_doxygen_input) \ $(yat_statistics_doxygen_input) \ $(yat_utility_doxygen_input) \ $(DOXYGEN_FILES) DOXYGEN_DEPS = $(DOXYGEN_INPUT) doxygen.config \ $(top_builddir)/yat/classifier/doxygen.mk \ $(top_builddir)/yat/normalizer/doxygen.mk \ $(top_builddir)/yat/omic/doxygen.mk \ $(top_builddir)/yat/random/doxygen.mk \ $(top_builddir)/yat/regression/doxygen.mk \ $(top_builddir)/yat/statistics/doxygen.mk \ $(top_builddir)/yat/utility/doxygen.mk doc: html # these are supported by automake and *-local will add target to * if DX_ENABLE_HTML html-local: $(DX_HTML_OUTPUT)/index.html endif $(DX_HTML_OUTPUT)/index.html: $(DOXYGEN_DEPS) @{ cat doxygen.config && echo "INPUT = $(DOXYGEN_INPUT)" && \ echo GENERATE_HTML = YES; } | $(DOXYGEN) -; install-data-hook: @$(NORMAL_INSTALL) @$(MAKE) $(AM_MAKEFLAGS) install-html installdirs-local: test -z "$(DESTDIR)$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"; # local install rules does not generate any documentation, in order to # follow the recommendation in GCS that `make install' should not # modify/create anything in builddir, proved `make all' has just been # done. This is for the common case that `make all' is issued as one # user and `make install' is issued as, for example, superuser. install-html-local: @$(NORMAL_INSTALL) @if test -d $(DX_HTML_OUTPUT); then \ test -z "$(DESTDIR)$(htmldir)" || \ { $(MKDIR_P) "$(DESTDIR)$(htmldir)"; \ $(INSTALL_DATA) $(DX_HTML_OUTPUT)/* $(DESTDIR)$(htmldir); \ } \ fi uninstall-local: @$(NORMAL_UNINSTALL) rm -rf $(DESTDIR)$(htmldir) mostlyclean-local: rm -f doxygen.error *~ clean-local: rm -rf $(DX_HTML_OUTPUT) FORCE: