## @configure_input@ ## ## Filename : Makefile.in ## Description : Makefile for libSBML docs subdiretory ## Author(s) : SBML Team ## Organization: California Institute of Technology ## Created : 2004-07-13 ## Revision : $Id: Makefile.in 8704 2009-01-04 02:26:05Z mhucka $ ## $HeadURL: https://sbml.svn.sourceforge.net/svnroot/sbml/trunk/libsbml/docs/Makefile.in $ ## ##*/ # ----------------------------------------------------------------------------- # Configuration variables # ----------------------------------------------------------------------------- # Some of the following are substituted automatically by `configure'. If # you are looking at "Makefile", do not edit these values; instead, run the # configure script at the top level of the src tree. It will recreate # "Makefile". include @top_srcdir@/config/makefile-common-vars.mk # `srcdir' points to the current directory, but should be set by configure. # `subdir' must be set manually to the relative dir under srcdir. Don't # set `subdir' to an absolute path, or some `make' actions will fail. srcdir = @srcdir@ thisdir = docs # Variables `subdirs', `headers', `sources', `libraries', `extra_CPPFLAGS', # `extra_CXXFLAGS', `extra_LDFLAGS' and `distfiles' are used by the default # rules in `makefile-common-actions.mk' included at the end. # Although there are two subdirectories here ("src" and "formatted"), the # actions in this makefile work using a single sub-makefile in "src". subdirs = src distfiles = $(wildcard formatted/*-api) Makefile.in README-for-Windows.txt # ----------------------------------------------------------------------------- # Primary build actions # ----------------------------------------------------------------------------- # The default rules in `makefile-common-actions.mk' know to interpret goals # of the form `foo-recursive' to run 'make foo' in directories defined in # variable `subdirs'. all: docs: docs-recursive # ----------------------------------------------------------------------------- # Checking. # ----------------------------------------------------------------------------- check: # ----------------------------------------------------------------------------- # Tags. # ----------------------------------------------------------------------------- # Nothing to be done for tags right now. We could actually use tags for # the LaTeX files -- should we? Nobody seems to care for it right now. tags: # ----------------------------------------------------------------------------- # Installation. # ----------------------------------------------------------------------------- install: install-docs: install-docs-recursive uninstall: uninstall-recursive installcheck: installcheck-recursive # ----------------------------------------------------------------------------- # Cleaning. # ----------------------------------------------------------------------------- clean: clean-recursive distclean: distclean-recursive mostlyclean: mostlyclean-recursive maintainer-clean: maintainer-clean-recursive # ----------------------------------------------------------------------------- # Creating distribution (for libSBML maintainers only) # ----------------------------------------------------------------------------- dist: dist-recursive dist-normal distcheck: distcheck-recursive distcheck-normal # ----------------------------------------------------------------------------- # Common default rules. # ----------------------------------------------------------------------------- include @top_srcdir@/config/makefile-common-actions.mk # ----------------------------------------------------------------------------- # End. # -----------------------------------------------------------------------------