## @configure_input@ ## ## Filename : Makefile.in ## Description : Makefile template for libsbml src/common ## Author(s) : SBML Team ## Organization: California Institute of Technology ## Created : 2005-03-27 ## Revision : $Id: Makefile.in 8704 2009-01-04 02:26:05Z mhucka $ ## $HeadURL: https://sbml.svn.sourceforge.net/svnroot/sbml/trunk/libsbml/src/common/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 = src/common # Variables `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. headers = \ common.h \ extern.h \ libsbml-config.h \ libsbml-config-unix.h \ libsbml-config-win.h \ libsbml-version.h \ sbmlfwd.h sources = libsbml-version.cpp header_inst_prefix = common # `distfiles' determines the files and directories included in a distribution. # `distfiles_exclude' is used to filter out specific items, so that even if # they appear in `distfiles', they will not be copied in the distribution. distfiles = \ Makefile.in \ common.h \ extern.h \ libsbml-config.h \ libsbml-config-unix.h \ libsbml-config-unix.h.in \ libsbml-config-win.h \ libsbml-package.h \ libsbml-package.h.in \ libsbml-version.h \ libsbml-version.h.in \ libsbml-version.cpp \ sbmlfwd.h # ----------------------------------------------------------------------------- # Primary build actions # ----------------------------------------------------------------------------- all: Makefile default # ----------------------------------------------------------------------------- # Checking. # ----------------------------------------------------------------------------- check: # ----------------------------------------------------------------------------- # Tags. # ----------------------------------------------------------------------------- tags: etags ctags # ----------------------------------------------------------------------------- # Installation # ----------------------------------------------------------------------------- # This doesn't actually get installed as a library. The main libsbml library # (in ../sbml) slurps in the object files when it's built. Here we just put # in 'all' as a default to make sure files get compiled if someone does # 'make install' from the top level without first doing a 'make'. install: all install-headers installcheck: all installcheck-headers uninstall: uninstall-headers # ----------------------------------------------------------------------------- # Cleaning. # ----------------------------------------------------------------------------- clean: clean-normal distclean: distclean-normal mostlyclean: mostlyclean-normal maintainer-clean: maintainer-clean-normal # ----------------------------------------------------------------------------- # Creating distribution (for libSBML maintainers only) # ----------------------------------------------------------------------------- dist: dist-normal distcheck: distcheck-normal # ----------------------------------------------------------------------------- # Miscellaneous # ----------------------------------------------------------------------------- include @top_srcdir@/config/makefile-common-actions.mk # ----------------------------------------------------------------------------- # End. # -----------------------------------------------------------------------------