* Makefile.am (.c.x): Use same rule as in libguile.
[bpt/guile.git] / Makefile.in
dissimilarity index 98%
index 1677718..e2e8fa0 100644 (file)
-#      Copyright (C) 1994,1995 Free Software Foundation, Inc.
-#
-# 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, 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 software; see the file COPYING.  If not, write to
-# the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-VERSION = @GUILE_VERSION@
-
-SHELL = /bin/sh
-
-srcdir=@srcdir@
-subdirs=@build_subdirs@
-dist_dirs=@existingdirs@ doc
-
-DISTFILES =    COPYING \
-               ChangeLog \
-               GUILE-VERSION \
-               INSTALL \
-               NEWS \
-               README \
-               TODO \
-               Makefile.in \
-               configure \
-               configure.in \
-               config.sub \
-               config.guess \
-               install-sh
-
-# `all'
-#     Compile the entire program.  This should be the default target.
-#     This target need not rebuild any documentation files; info files
-#     should normally be included in the distribution, and DVI files
-#     should be made only when explicitly asked for.
-all:
-       @for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} all; \
-               cd .. ;\
-       done
-
-#`install'
-#     Compile the program and copy the executables, libraries, and so on
-#     to the file names where they should reside for actual use.  If
-#     there is a simple test to verify that a program is properly
-#     installed then run that test.
-#
-#     Use `-' before any command for installing a man page, so that
-#     `make' will ignore any errors.  This is in case there are systems
-#     that don't have the Unix man page documentation system installed.
-#
-#     In the future, when we have a standard way of installing info
-#     files, `install' targets will be the proper place to do so.
-#
-subdir-inst-target=install-nobuild
-
-install: all
-       ${MAKE} subdir-inst-target=install install-nobuild
-
-install-nobuild:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} ${subdir-inst-target}; \
-               cd ..  ;\
-       done
-
-#`uninstall'
-#     Delete all the installed files that the `install' target would
-#     create (but not the noninstalled files such as `make all' would
-#     create).
-uninstall:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} uninstall; \
-               cd ..  ;\
-       done
-
-
-#`clean'
-#     Delete all files from the current directory that are normally
-#     created by building the program.  Don't delete the files that
-#     record the configuration.  Also preserve files that could be made
-#     by building, but normally aren't because the distribution comes
-#     with them.
-#
-#     Delete `.dvi' files here if they are not part of the distribution.
-#
-clean:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} clean; \
-               cd ..  ;\
-       done
-
-#`distclean'
-#     Delete all files from the current directory that are created by
-#     configuring or building the program.  If you have unpacked the
-#     source and built the program without creating any other files,
-#     `make distclean' should leave only the files that were in the
-#     distribution.
-distclean:
-       rm -f config.cache
-       rm -f config.log
-       rm -f config.status
-       rm -f Makefile
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} distclean; \
-               cd ..  ;\
-       done
-
-
-#`mostlyclean'
-#     Like `clean', but may refrain from deleting a few files that people
-#     normally don't want to recompile.  For example, the `mostlyclean'
-#     target for GCC does not delete `libgcc.a', because recompiling it
-#     is rarely necessary and takes a lot of time.
-mostlyclean:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} mostlyclean; \
-               cd ..  ;\
-       done
-
-
-#`realclean'
-#     Delete everything from the current directory that can be
-#     reconstructed with this Makefile.  This typically includes
-#     everything deleted by distclean, plus more: C source files
-#     produced by Bison, tags tables, info files, and so on.
-#
-#     One exception, however: `make realclean' should not delete
-#     `configure' even if `configure' can be remade using a rule in the
-#     Makefile.  More generally, `make realclean' should not delete
-#     anything that needs to exist in order to run `configure' and then
-#     begin to build the program.
-realclean:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} realclean; \
-               cd ..  ;\
-       done
-
-
-#`TAGS'
-#     Update a tags table for this program.
-#     We could allow each subdirectory to create its own TAGS file,
-#     and then use etags' --include option to incorporate them all by
-#     reference into a top-level TAGS file, but the --include option
-#     seems to be deprecated, and this works fine.
-TAGS:
-       etags \
-         --regex='/SCM_PROC[^"]*"[^"]*"/' \
-         `find . -name '*.[ch]' -o -name '*.scm'`
-
-#`info'
-#     Generate any info files needed.  The best way to write the rules
-#     is as follows:
-#
-#          info:  foo.info
-#          
-#          foo.info: $(srcdir)/foo.texi $(srcdir)/chap1.texi $(srcdir)/chap2.texi
-#                  $(MAKEINFO) $(srcdir)/foo.texi
-#
-#     You must define the variable `MAKEINFO' in the Makefile.  It
-#     should run the Makeinfo program, which is part of the Texinfo2
-#     distribution.
-info:
-       cd doc; ${MAKE} info
-
-#`dvi'
-#     Generate DVI files for all TeXinfo documentation.  For example:
-#
-#          dvi: foo.dvi
-#          
-#          foo.dvi: $(srcdir)/foo.texi $(srcdir)/chap1.texi $(srcdir)/chap2.texi
-#                  $(TEXI2DVI) $(srcdir)/foo.texi
-#
-#     You must define the variable `TEXI2DVI' in the Makefile.  It should
-#     run the program `texi2dvi', which is part of the Texinfo2
-#     distribution.  Alternatively, write just the dependencies, and
-#     allow GNU Make to provide the command.
-dvi:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} dvi; \
-               cd ..  ;\
-       done
-
-#`dist'
-#     Create a distribution tar file for this program.  The tar file
-#     should be set up so that the file names in the tar file start with
-#     a subdirectory name which is the name of the package it is a
-#     distribution for.  This name can include the version number.
-#
-#     For example, the distribution tar file of GCC version 1.40 unpacks
-#     into a subdirectory named `gcc-1.40'.
-#
-#     The easiest way to do this is to create a subdirectory
-#     appropriately named, use `ln' or `cp' to install the proper files
-#     in it, and then `tar' that subdirectory.
-#
-#     The `dist' target should explicitly depend on all non-source files
-#     that are in the distribution, to make sure they are up to date in
-#     the distribution.  *Ref Making Releases: (standards)Releases.
-.PHONY: dist
-GZIP=gzip --best
-GZIP_EXT=.gz
-TAR_VERBOSE=v
-DIST_NAME=guile-${VERSION}
-dist: info
-       @echo "Creating distribution for ${DIST_NAME}."
-       rm -rf ${DIST_NAME} ${DIST_NAME}.tar${GZIP_EXT}
-       ${MAKE} dist-dir DISTDIR="${DIST_NAME}"
-       for dir in ${dist_dirs}; do \
-         ( DISTDIR="../${DIST_NAME}/$${dir}"; \
-           cd $${dir} && \
-           ${MAKE} dist-dir DISTDIR="$${DISTDIR}" \
-         ); \
-       done
-       tar chf${TAR_VERBOSE} - ${DIST_NAME} | ${GZIP} > "${DIST_NAME}.tar${GZIP_EXT}"
-       rm -rf ${DIST_NAME}
-
-# The `dist' target in the top-level Makefile uses this `dist-dir'
-# target to select the appropriate files for distribution from the
-# directory containing this Makefile.
-.PHONY: dist-dir
-dist-dir:
-       mkdir ${DISTDIR}
-       for i in ${DISTFILES}; do \
-         ln $(srcdir)/$${i} ${DISTDIR}; \
-        done
-
-#`check'
-#     Perform self-tests (if any).  The user must build the program
-#     before running the tests, but need not install the program; you
-#     should write the self-tests so that they work when the program is
-#     built but not installed.
-check:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} check; \
-               cd ..  ;\
-       done
-
-
-#`installcheck'
-#     Perform installation tests (if any).  The user must build and
-#     install the program before running the tests.  You should not
-#     assume that `$(bindir)' is in the search path.
-installcheck:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} installcheck; \
-               cd ..  ;\
-       done
-
-
-#`installdirs'
-#     It's useful to add a target named `installdirs' to create the
-#     directories where files are installed, and their parent
-#     directories.  There is a script called `mkinstalldirs' which is
-#     convenient for this; find it in the Texinfo package.You can use a
-#     rule like this:
-#
-#          # Make sure all installation directories, e.g. $(bindir) actually exist by
-#          # making them if necessary.
-#          installdirs: mkinstalldirs
-#                  $(srcdir)/mkinstalldirs $(bindir) $(datadir) $(libdir) \
-#                                          $(infodir) $(mandir)
-installdirs:
-       for dir in ${subdirs}; do \
-               cd $$dir; \
-               ${MAKE} installdirs; \
-               cd ..  ;\
-       done
-
-
-
-# Cygnus extention:
-# 
-#    `Makefile'
-#          Calls `./config.status' to rebuild the `Makefile' in this
-#          directory.
-Makefile:
-       ${SHELL-/bin/sh} config.status
+# Makefile.in generated automatically by automake 1.4 from Makefile.am
+
+# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+
+DESTDIR =
+
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+
+top_builddir = .
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+transform = @program_transform_name@
+
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+AS = @AS@
+AWK = @AWK@
+CC = @CC@
+CPP = @CPP@
+DLLTOOL = @DLLTOOL@
+GUILE_LIBS = @GUILE_LIBS@
+GUILE_MAJOR_VERSION = @GUILE_MAJOR_VERSION@
+GUILE_MINOR_VERSION = @GUILE_MINOR_VERSION@
+GUILE_VERSION = @GUILE_VERSION@
+LD = @LD@
+LIBLOBJS = @LIBLOBJS@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+MAINT = @MAINT@
+MAKEINFO = @MAKEINFO@
+NM = @NM@
+OBJDUMP = @OBJDUMP@
+PACKAGE = @PACKAGE@
+QTHREAD_LTLIBS = @QTHREAD_LTLIBS@
+RANLIB = @RANLIB@
+THREAD_CPPFLAGS = @THREAD_CPPFLAGS@
+THREAD_LIBS_INSTALLED = @THREAD_LIBS_INSTALLED@
+THREAD_LIBS_LOCAL = @THREAD_LIBS_LOCAL@
+THREAD_PACKAGE = @THREAD_PACKAGE@
+VERSION = @VERSION@
+qtdmdb_s = @qtdmdb_s@
+qthread_asflags = @qthread_asflags@
+qtmd_h = @qtmd_h@
+qtmdc_c = @qtmdc_c@
+qtmds_s = @qtmds_s@
+
+SUBDIRS = ice-9 qt libguile guile-config guile-readline doc
+
+aclocaldir = $(datadir)/aclocal
+aclocal_DATA = guile.m4 qthreads.m4
+
+EXTRA_DIST = $(aclocal_DATA) ltconfig ltmain.sh acconfig.h     HACKING GUILE-VERSION ANON-CVS SNAPSHOTS
+
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = ./libguile/scmconfig.h
+CONFIG_CLEAN_FILES = 
+DATA =  $(aclocal_DATA)
+
+DIST_COMMON =  README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
+Makefile.in NEWS THANKS TODO acconfig.h acinclude.m4 aclocal.m4 \
+config.guess config.sub configure configure.in install-sh \
+libguile/scmconfig.h.in libguile/stamp-h.in ltconfig ltmain.sh mdate-sh \
+missing mkinstalldirs
+
+
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
+
+TAR = tar
+GZIP_ENV = --best
+all: all-redirect
+.SUFFIXES:
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
+       cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile
+
+Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
+       cd $(top_builddir) \
+         && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in  acinclude.m4
+       cd $(srcdir) && $(ACLOCAL)
+
+config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+       $(SHELL) ./config.status --recheck
+$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
+       cd $(srcdir) && $(AUTOCONF)
+
+libguile/scmconfig.h: libguile/stamp-h
+       @if test ! -f $@; then \
+               rm -f libguile/stamp-h; \
+               $(MAKE) libguile/stamp-h; \
+       else :; fi
+libguile/stamp-h: $(srcdir)/libguile/scmconfig.h.in $(top_builddir)/config.status
+       cd $(top_builddir) \
+         && CONFIG_FILES= CONFIG_HEADERS=libguile/scmconfig.h \
+            $(SHELL) ./config.status
+       @echo timestamp > libguile/stamp-h 2> /dev/null
+$(srcdir)/libguile/scmconfig.h.in: @MAINTAINER_MODE_TRUE@$(srcdir)/libguile/stamp-h.in
+       @if test ! -f $@; then \
+               rm -f $(srcdir)/libguile/stamp-h.in; \
+               $(MAKE) $(srcdir)/libguile/stamp-h.in; \
+       else :; fi
+$(srcdir)/libguile/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
+       cd $(top_srcdir) && $(AUTOHEADER)
+       @echo timestamp > $(srcdir)/libguile/stamp-h.in 2> /dev/null
+
+mostlyclean-hdr:
+
+clean-hdr:
+
+distclean-hdr:
+       -rm -f libguile/scmconfig.h
+
+maintainer-clean-hdr:
+
+install-aclocalDATA: $(aclocal_DATA)
+       @$(NORMAL_INSTALL)
+       $(mkinstalldirs) $(DESTDIR)$(aclocaldir)
+       @list='$(aclocal_DATA)'; for p in $$list; do \
+         if test -f $(srcdir)/$$p; then \
+           echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(aclocaldir)/$$p"; \
+           $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(aclocaldir)/$$p; \
+         else if test -f $$p; then \
+           echo " $(INSTALL_DATA) $$p $(DESTDIR)$(aclocaldir)/$$p"; \
+           $(INSTALL_DATA) $$p $(DESTDIR)$(aclocaldir)/$$p; \
+         fi; fi; \
+       done
+
+uninstall-aclocalDATA:
+       @$(NORMAL_UNINSTALL)
+       list='$(aclocal_DATA)'; for p in $$list; do \
+         rm -f $(DESTDIR)$(aclocaldir)/$$p; \
+       done
+
+# This directory's subdirectories are mostly independent; you can cd
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+#     (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+
+@SET_MAKE@
+
+all-recursive install-data-recursive install-exec-recursive \
+installdirs-recursive install-recursive uninstall-recursive  \
+check-recursive installcheck-recursive info-recursive dvi-recursive:
+       @set fnord $(MAKEFLAGS); amf=$$2; \
+       dot_seen=no; \
+       target=`echo $@ | sed s/-recursive//`; \
+       list='$(SUBDIRS)'; for subdir in $$list; do \
+         echo "Making $$target in $$subdir"; \
+         if test "$$subdir" = "."; then \
+           dot_seen=yes; \
+           local_target="$$target-am"; \
+         else \
+           local_target="$$target"; \
+         fi; \
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+          || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+       done; \
+       if test "$$dot_seen" = "no"; then \
+         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
+       fi; test -z "$$fail"
+
+mostlyclean-recursive clean-recursive distclean-recursive \
+maintainer-clean-recursive:
+       @set fnord $(MAKEFLAGS); amf=$$2; \
+       dot_seen=no; \
+       rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
+         rev="$$subdir $$rev"; \
+         test "$$subdir" = "." && dot_seen=yes; \
+       done; \
+       test "$$dot_seen" = "no" && rev=". $$rev"; \
+       target=`echo $@ | sed s/-recursive//`; \
+       for subdir in $$rev; do \
+         echo "Making $$target in $$subdir"; \
+         if test "$$subdir" = "."; then \
+           local_target="$$target-am"; \
+         else \
+           local_target="$$target"; \
+         fi; \
+         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+          || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+       done && test -z "$$fail"
+tags-recursive:
+       list='$(SUBDIRS)'; for subdir in $$list; do \
+         test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+       done
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP)
+       list='$(SOURCES) $(HEADERS)'; \
+       unique=`for i in $$list; do echo $$i; done | \
+         awk '    { files[$$0] = 1; } \
+              END { for (i in files) print i; }'`; \
+       here=`pwd` && cd $(srcdir) \
+         && mkid -f$$here/ID $$unique $(LISP)
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
+       tags=; \
+       here=`pwd`; \
+       list='$(SUBDIRS)'; for subdir in $$list; do \
+   if test "$$subdir" = .; then :; else \
+           test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
+   fi; \
+       done; \
+       list='$(SOURCES) $(HEADERS)'; \
+       unique=`for i in $$list; do echo $$i; done | \
+         awk '    { files[$$0] = 1; } \
+              END { for (i in files) print i; }'`; \
+       test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
+         || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
+
+mostlyclean-tags:
+
+clean-tags:
+
+distclean-tags:
+       -rm -f TAGS ID
+
+maintainer-clean-tags:
+
+distdir = $(PACKAGE)-$(VERSION)
+top_distdir = $(distdir)
+
+# This target untars the dist file and tries a VPATH configuration.  Then
+# it guarantees that the distribution is self-contained by making another
+# tarfile.
+distcheck: dist
+       -rm -rf $(distdir)
+       GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
+       mkdir $(distdir)/=build
+       mkdir $(distdir)/=inst
+       dc_install_base=`cd $(distdir)/=inst && pwd`; \
+       cd $(distdir)/=build \
+         && ../configure --srcdir=.. --prefix=$$dc_install_base \
+         && $(MAKE) $(AM_MAKEFLAGS) \
+         && $(MAKE) $(AM_MAKEFLAGS) dvi \
+         && $(MAKE) $(AM_MAKEFLAGS) check \
+         && $(MAKE) $(AM_MAKEFLAGS) install \
+         && $(MAKE) $(AM_MAKEFLAGS) installcheck \
+         && $(MAKE) $(AM_MAKEFLAGS) dist
+       -rm -rf $(distdir)
+       @banner="$(distdir).tar.gz is ready for distribution"; \
+       dashes=`echo "$$banner" | sed s/./=/g`; \
+       echo "$$dashes"; \
+       echo "$$banner"; \
+       echo "$$dashes"
+dist: distdir
+       -chmod -R a+r $(distdir)
+       GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
+       -rm -rf $(distdir)
+dist-all: distdir
+       -chmod -R a+r $(distdir)
+       GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
+       -rm -rf $(distdir)
+distdir: $(DISTFILES)
+       -rm -rf $(distdir)
+       mkdir $(distdir)
+       -chmod 777 $(distdir)
+       here=`cd $(top_builddir) && pwd`; \
+       top_distdir=`cd $(distdir) && pwd`; \
+       distdir=`cd $(distdir) && pwd`; \
+       cd $(top_srcdir) \
+         && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile
+       @for file in $(DISTFILES); do \
+         d=$(srcdir); \
+         if test -d $$d/$$file; then \
+           cp -pr $$/$$file $(distdir)/$$file; \
+         else \
+           test -f $(distdir)/$$file \
+           || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
+           || cp -p $$d/$$file $(distdir)/$$file || :; \
+         fi; \
+       done
+       for subdir in $(SUBDIRS); do \
+         if test "$$subdir" = .; then :; else \
+           test -d $(distdir)/$$subdir \
+           || mkdir $(distdir)/$$subdir \
+           || exit 1; \
+           chmod 777 $(distdir)/$$subdir; \
+           (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
+             || exit 1; \
+         fi; \
+       done
+info-am:
+info: info-recursive
+dvi-am:
+dvi: dvi-recursive
+check-am: all-am
+check: check-recursive
+installcheck-am:
+installcheck: installcheck-recursive
+install-exec-am:
+install-exec: install-exec-recursive
+
+install-data-am: install-aclocalDATA
+install-data: install-data-recursive
+
+install-am: all-am
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+install: install-recursive
+uninstall-am: uninstall-aclocalDATA
+uninstall: uninstall-recursive
+all-am: Makefile $(DATA)
+all-redirect: all-recursive
+install-strip:
+       $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
+installdirs: installdirs-recursive
+installdirs-am:
+       $(mkinstalldirs)  $(DESTDIR)$(aclocaldir)
+
+
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+       -rm -f Makefile $(CONFIG_CLEAN_FILES)
+       -rm -f config.cache config.log stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+mostlyclean-am:  mostlyclean-hdr mostlyclean-tags mostlyclean-generic
+
+mostlyclean: mostlyclean-recursive
+
+clean-am:  clean-hdr clean-tags clean-generic mostlyclean-am
+
+clean: clean-recursive
+
+distclean-am:  distclean-hdr distclean-tags distclean-generic clean-am
+       -rm -f libtool
+
+distclean: distclean-recursive
+       -rm -f config.status
+
+maintainer-clean-am:  maintainer-clean-hdr maintainer-clean-tags \
+               maintainer-clean-generic distclean-am
+       @echo "This command is intended for maintainers to use;"
+       @echo "it deletes files that may require special tools to rebuild."
+
+maintainer-clean: maintainer-clean-recursive
+       -rm -f config.status
+
+.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
+uninstall-aclocalDATA install-aclocalDATA install-data-recursive \
+uninstall-data-recursive install-exec-recursive \
+uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
+all-recursive check-recursive installcheck-recursive info-recursive \
+dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
+maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
+distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs-am \
+installdirs mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
+
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT: