## @configure_input@ ## ## Filename : Makefile.in ## Description : Makefile template for libsbml src/util ## Author(s) : SBML Team ## Organization: California Institute of Technology ## Created : 2005-03-02 ## Revision : $Id: Makefile.in 8704 2009-01-04 02:26:05Z mhucka $ ## $HeadURL: https://sbml.svn.sourceforge.net/svnroot/sbml/trunk/libsbml/src/util/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/util # Variables `headers', `sources', `libraries', `extra_CPPFLAGS', # `extra_CXXFLAGS', `extra_LDFLAGS', `distfiles', 'header_inst_prefix' and # others are used by the default rules in `makefile-common-actions.mk'. headers = \ List.h \ memory.h \ Stack.h \ StringBuffer.h \ util.h header_inst_prefix = util sources = \ List.cpp \ memory.c \ Stack.c \ StringBuffer.c \ util.c \ extra_CPPFLAGS = -DPACKAGE_NAME=\"$(PACKAGE_NAME)\" subdirs = test # `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 = $(sources) $(headers) Makefile.in # ----------------------------------------------------------------------------- # Primary build actions # ----------------------------------------------------------------------------- # The default action is to remake the object files. Those rules which are # not defined below are defined in makefile-common-actions.mk. all: Makefile default # ----------------------------------------------------------------------------- # Checking. # ----------------------------------------------------------------------------- # Targets of the form 'foo-recursive' are interpreted by the common # makefile rules as meaning "go into every subdir and do 'make foo' in # each". Here the recursive command is needed because of the ./test # subdiretory. check: check-recursive # ----------------------------------------------------------------------------- # Tags. # ----------------------------------------------------------------------------- tags: etags ctags # ----------------------------------------------------------------------------- # Installation # ----------------------------------------------------------------------------- # This library doesn't actually get installed. The main libsbml library # (in ../src) slurps in the object files when it's built. Only the headers # get installed. install: all install-headers installcheck: all installcheck-headers uninstall: uninstall-headers # ----------------------------------------------------------------------------- # Cleaning. # ----------------------------------------------------------------------------- # The recursive command is needed because of the ./test subdiretory. clean: clean-normal clean-recursive distclean: distclean-normal distclean-recursive mostlyclean: mostlyclean-normal mostlyclean-recursive maintainer-clean: maintainer-clean-normal maintainer-clean-recursive # ----------------------------------------------------------------------------- # Creating distribution (for libSBML maintainers only) # ----------------------------------------------------------------------------- # The recursive command is needed because of the ./test subdiretory. dist: all dist-normal dist-recursive distcheck: all distcheck-normal distcheck-recursive # ----------------------------------------------------------------------------- # Miscellaneous # ----------------------------------------------------------------------------- include @top_srcdir@/config/makefile-common-actions.mk # ----------------------------------------------------------------------------- # End. # -----------------------------------------------------------------------------