(autom4te-update): New.
* Makefile.cfg (update): Bind autom4te-update.
+2003-08-20 Akim Demaille <akim@epita.fr>
+
+ * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
+ (autom4te-update): New.
+ * Makefile.cfg (update): Bind autom4te-update.
+
2003-08-19 Derek Price <derek@ximbiot.com>
* lib/autotest/general.m4: Comment various HELP_* diversions.
## Process this file with automake to create Makefile.in. -*-Makefile-*-
## Makefile for Autoconf.
-## Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+## Copyright (C) 1999, 2000, 2001, 2002, 2003 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
maintainer-check: maintainer-check-tests
maintainer-check-tests:
cd tests && make maintainer-check
+
+
+## ----------------------------------- ##
+## Updating Perl files from Automake. ##
+## ----------------------------------- ##
+
+## Fetch the latest versions of files we care about.
+automake_cvsweb = \
+ http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~/automake
+automake_cvsargs = \
+ 'content-type=text/plain&cvsroot=automake'
+autom4te_files = \
+ Autom4te/Configure_ac.pm \
+ Autom4te/Channels.pm \
+ Autom4te/FileUtils.pm
+
+autom4te-update:
+ rm -rf Fetchdir > /dev/null 2>&1
+ mkdir Fetchdir; mkdir Fetchdir/Autom4te
+## If a get fails then that is a problem.
+ (cd Fetchdir && \
+ $(WGET) $(automake_cvsweb)/lib/Automake/Configure_ac.pm?$(automake_cvsargs) -O Autom4te/Configure_ac.pm; \
+ $(WGET) $(automake_cvsweb)/lib/Automake/Channels.pm?$(automake_cvsargs) -O Autom4te/Channels.pm; \
+ $(WGET) $(automake_cvsweb)/lib/Automake/FileUtils.pm?$(automake_cvsargs) -O Autom4te/FileUtils.pm; \
+ :)
+ perl -pi -e 's/Automake::/Autom4te::/g' Fetchdir/Autom4te/*.pm
+ for file in $(autom4te_files); do \
+ $(move_if_change) Fetchdir/$$file $(srcdir)/lib/$$file; \
+ done
$(srcdir)/config/missing \
$(srcdir)/config/mkinstalldirs
-local_updates = wget-update cvs-update
+# autom4te-update is defined in Makefile.am.
+local_updates = wget-update cvs-update autom4te-update
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = README $(am__configure_deps) AUTHORS COPYING ChangeLog \
- INSTALL Makefile.am Makefile.in NEWS README-alpha THANKS TODO \
- aclocal.m4 configure configure.ac
subdir = .
+DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.in \
+ $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL \
+ Makefile.am NEWS README-alpha THANKS TODO aclocal.m4 configure \
+ configure.ac
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
MAINTAINERCLEANFILES = INSTALL
pkgdata_DATA = INSTALL
AM_MAKEINFOFLAGS = --no-headers --no-validate --no-split
+automake_cvsweb = \
+ http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~/automake
+
+automake_cvsargs = \
+ 'content-type=text/plain&cvsroot=automake'
+
+autom4te_files = \
+ Autom4te/Configure_ac.pm \
+ Autom4te/Channels.pm \
+ Autom4te/FileUtils.pm
+
all: all-recursive
.SUFFIXES:
am--refresh:
+ @:
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) $(am__configure_deps)
@for dep in $?; do \
case '$(top_srcdir)/configure.ac $(ACLOCAL_M4) $(am__configure_deps)' in \
clean-generic:
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
distclean: distclean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
+
+ -rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
dvi: dvi-recursive
maintainer-clean: maintainer-clean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
+
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
maintainer-check: maintainer-check-tests
maintainer-check-tests:
cd tests && make maintainer-check
+
+autom4te-update:
+ rm -rf Fetchdir > /dev/null 2>&1
+ mkdir Fetchdir; mkdir Fetchdir/Autom4te
+ (cd Fetchdir && \
+ $(WGET) $(automake_cvsweb)/lib/Automake/Configure_ac.pm?$(automake_cvsargs) -O Autom4te/Configure_ac.pm; \
+ $(WGET) $(automake_cvsweb)/lib/Automake/Channels.pm?$(automake_cvsargs) -O Autom4te/Channels.pm; \
+ $(WGET) $(automake_cvsweb)/lib/Automake/FileUtils.pm?$(automake_cvsargs) -O Autom4te/FileUtils.pm; \
+ :)
+ perl -pi -e 's/Automake::/Autom4te::/g' Fetchdir/Autom4te/*.pm
+ for file in $(autom4te_files); do \
+ $(move_if_change) Fetchdir/$$file $(srcdir)/lib/$$file; \
+ done
# 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:
# using a relative directory.
cp "$am_depcomp" conftest.dir
cd conftest.dir
+ # We will build objects and dependencies in a subdirectory because
+ # it helps to detect inapplicable dependency modes. For instance
+ # both Tru64's cc and ICC support -MD to output dependencies as a
+ # side effect of compilation, but ICC will put the dependencies in
+ # the current directory while Tru64 will put them in the object
+ # directory.
+ mkdir sub
am_cv_$1_dependencies_compiler_type=none
if test "$am_compiler_list" = ""; then
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
fi
for depmode in $am_compiler_list; do
+ # Setup a source with many dependencies, because some compilers
+ # like to wrap large dependency lists on column 80 (with \), and
+ # we should not choose a depcomp mode which is confused by this.
+ #
# We need to recreate these files for each test, as the compiler may
# overwrite some of them when testing with obscure command lines.
# This happens at least with the AIX C compiler.
- echo '#include "conftest.h"' > conftest.c
- echo 'int i;' > conftest.h
- echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf
+ : > sub/conftest.c
+ for i in 1 2 3 4 5 6; do
+ echo '#include "conftst'$i'.h"' >> sub/conftest.c
+ : > sub/conftst$i.h
+ done
+ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
case $depmode in
nosideeffect)
# mode. It turns out that the SunPro C++ compiler does not properly
# handle `-M -o', and we need to detect this.
if depmode=$depmode \
- source=conftest.c object=conftest.o \
- depfile=conftest.Po tmpdepfile=conftest.TPo \
- $SHELL ./depcomp $depcc -c -o conftest.o conftest.c \
+ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
+ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
+ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
>/dev/null 2>conftest.err &&
- grep conftest.h conftest.Po > /dev/null 2>&1 &&
+ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
+ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
# icc doesn't choke on unknown options, it will just issue warnings
# (even with -Werror). So we grep stderr for any message
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = $(srcdir)/../lib/freeze.mk Makefile.am Makefile.in
+DIST_COMMON = $(srcdir)/../lib/freeze.mk $(srcdir)/Makefile.in \
+ Makefile.am
subdir = bin
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
check-am: all-am
check: check-am
all-am: Makefile $(SCRIPTS)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(bindir)
install: install-am
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = Makefile.am Makefile.in config.guess config.sub \
- elisp-comp install-sh mdate-sh missing mkinstalldirs \
- texinfo.tex
subdir = config
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
+DIST_COMMON = $(srcdir)/Makefile.in Makefile.am config.guess \
+ config.sub elisp-comp install-sh mdate-sh missing \
+ mkinstalldirs texinfo.tex
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_CLEAN_FILES =
SOURCES =
check-am: all-am
check: check-am
all-am: Makefile
-
installdirs:
install: install-am
install-exec: install-exec-am
clean-generic:
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.57a for GNU Autoconf 2.57b.
+# Generated by GNU Autoconf 2.57b for GNU Autoconf 2.57b.
#
# Report bugs to <bug-autoconf@gnu.org>.
#
if $ac_init_version; then
cat <<\_ACEOF
GNU Autoconf configure 2.57b
-generated by GNU Autoconf 2.57a
+generated by GNU Autoconf 2.57b
Copyright (C) 2003 Free Software Foundation, Inc.
This configure script is free software; the Free Software Foundation
running configure, to aid debugging if configure makes a mistake.
It was created by GNU Autoconf $as_me 2.57b, which was
-generated by GNU Autoconf 2.57a. Invocation command line was
+generated by GNU Autoconf 2.57b. Invocation command line was
$ $0 $@
cat >&5 <<_CSEOF
This file was extended by GNU Autoconf $as_me 2.57b, which was
-generated by GNU Autoconf 2.57a. Invocation command line was
+generated by GNU Autoconf 2.57b. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
CONFIG_HEADERS = $CONFIG_HEADERS
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
GNU Autoconf config.status 2.57b
-configured by $0, generated by GNU Autoconf 2.57a,
+configured by $0, generated by GNU Autoconf 2.57b,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
Copyright (C) 2003 Free Software Foundation, Inc.
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = $(autoconf_TEXINFOS) $(standards_TEXINFOS) Makefile.am \
- Makefile.in stamp-vti version.texi
subdir = doc
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
+DIST_COMMON = $(autoconf_TEXINFOS) $(srcdir)/Makefile.in \
+ $(standards_TEXINFOS) Makefile.am stamp-vti version.texi
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_CLEAN_FILES =
SOURCES =
check-am: all-am
check: check-am
all-am: Makefile $(INFO_DEPS)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(infodir)
install: install-am
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-aminfo \
maintainer-clean-generic maintainer-clean-vti
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = $(dist_perllib_DATA) Makefile.am Makefile.in
subdir = lib/Autom4te
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
+DIST_COMMON = $(dist_perllib_DATA) $(srcdir)/Makefile.in Makefile.am
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_CLEAN_FILES =
SOURCES =
check-am: all-am
check: check-am
all-am: Makefile $(DATA)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(perllibdir)
install: install-am
clean-generic:
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = Makefile.am Makefile.in
subdir = lib
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
+DIST_COMMON = $(srcdir)/Makefile.in Makefile.am
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_CLEAN_FILES =
SOURCES =
DIST_SOURCES =
-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
- ps-recursive html-recursive install-info-recursive \
- uninstall-info-recursive all-recursive install-data-recursive \
- install-exec-recursive installdirs-recursive install-recursive \
- uninstall-recursive check-recursive installcheck-recursive
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
+ html-recursive info-recursive install-data-recursive \
+ install-exec-recursive install-info-recursive \
+ install-recursive installcheck-recursive installdirs-recursive \
+ pdf-recursive ps-recursive uninstall-info-recursive \
+ uninstall-recursive
am__installdirs = $(DESTDIR)$(pkgdatadir)
nodist_pkgdataDATA_INSTALL = $(INSTALL_DATA)
DATA = $(nodist_pkgdata_DATA)
installdirs: installdirs-recursive
installdirs-am:
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
-
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-recursive
-
+ -rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
dvi: dvi-recursive
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
clean clean-generic clean-recursive ctags ctags-recursive \
distclean distclean-generic distclean-recursive distclean-tags \
- distdir dvi dvi-am dvi-recursive html html-am html-recursive \
- info info-am info-recursive install install-am install-data \
- install-data-am install-data-recursive install-exec \
- install-exec-am install-exec-recursive install-info \
- install-info-am install-info-recursive install-man \
- install-nodist_pkgdataDATA install-recursive install-strip \
- installcheck installcheck-am installdirs installdirs-am \
- installdirs-recursive maintainer-clean \
+ distdir dvi dvi-am html html-am info info-am install \
+ install-am install-data install-data-am install-exec \
+ install-exec-am install-info install-info-am install-man \
+ install-nodist_pkgdataDATA install-strip installcheck \
+ installcheck-am installdirs installdirs-am maintainer-clean \
maintainer-clean-generic maintainer-clean-recursive \
mostlyclean mostlyclean-generic mostlyclean-recursive pdf \
- pdf-am pdf-recursive ps ps-am ps-recursive tags tags-recursive \
- uninstall uninstall-am uninstall-info-am \
- uninstall-info-recursive uninstall-nodist_pkgdataDATA \
- uninstall-recursive
+ pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
+ uninstall-info-am uninstall-nodist_pkgdataDATA
autom4te.cfg: $(srcdir)/autom4te.in Makefile
rm -f autom4te.cfg autom4te.tmp
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
PRE_UNINSTALL = :
POST_UNINSTALL = :
DIST_COMMON = $(dist_autoconflib_DATA) $(srcdir)/../freeze.mk \
- Makefile.am Makefile.in
+ $(srcdir)/Makefile.in Makefile.am
subdir = lib/autoconf
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
$(MAKE) $(AM_MAKEFLAGS) check-local
check: check-am
all-am: Makefile $(DATA)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(autoconflibdir) $(DESTDIR)$(autoconflibdir)
install: install-am
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = $(srcdir)/../freeze.mk Makefile.am Makefile.in
+DIST_COMMON = $(srcdir)/../freeze.mk $(srcdir)/Makefile.in Makefile.am
subdir = lib/autoscan
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
check-am: all-am
check: check-am
all-am: Makefile $(DATA)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(autoscanlibdir)
install: install-am
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
PRE_UNINSTALL = :
POST_UNINSTALL = :
DIST_COMMON = $(dist_autotestlib_DATA) $(srcdir)/../freeze.mk \
- Makefile.am Makefile.in
+ $(srcdir)/Makefile.in Makefile.am
subdir = lib/autotest
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
$(MAKE) $(AM_MAKEFLAGS) check-local
check: check-am
all-am: Makefile $(DATA)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(autotestlibdir) $(DESTDIR)$(autotestlibdir)
install: install-am
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = $(dist_lisp_LISP) Makefile.am Makefile.in
subdir = lib/emacs
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
+DIST_COMMON = $(dist_lisp_LISP) $(srcdir)/Makefile.in Makefile.am
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_CLEAN_FILES =
SOURCES =
check-am: all-am
check: check-am
all-am: Makefile $(LISP) elc-stamp $(ELCFILES)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(lispdir)
install: install-am
clean-generic:
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic clean-lisp mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
PRE_UNINSTALL = :
POST_UNINSTALL = :
DIST_COMMON = $(dist_m4sugarlib_DATA) $(srcdir)/../freeze.mk \
- Makefile.am Makefile.in
+ $(srcdir)/Makefile.in Makefile.am
subdir = lib/m4sugar
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
$(MAKE) $(AM_MAKEFLAGS) check-local
check: check-am
all-am: Makefile $(DATA)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(m4sugarlibdir) $(DESTDIR)$(m4sugarlibdir)
install: install-am
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic distclean-tags
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = $(dist_man_MANS) Makefile.am Makefile.in
subdir = man
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
+DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in Makefile.am
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_CLEAN_FILES =
SOURCES =
check-am: all-am
check: check-am
all-am: Makefile $(MANS)
-
installdirs:
$(mkinstalldirs) $(DESTDIR)$(man1dir)
install: install-am
clean-generic:
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic
installcheck-am:
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
# Makefile.in generated by automake 1.7a from Makefile.am.
# @configure_input@
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-DIST_COMMON = $(srcdir)/../lib/freeze.mk Makefile.am Makefile.in \
- atlocal.in wrapper.in
+DIST_COMMON = $(srcdir)/../lib/freeze.mk $(srcdir)/Makefile.in \
+ Makefile.am atlocal.in wrapper.in
subdir = tests
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__configure_deps = $(top_srcdir)/config/m4.m4
$(MAKE) $(AM_MAKEFLAGS) check-local
check: check-am
all-am: Makefile
-
installdirs:
install: install-am
install-exec: install-exec-am
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
- -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f $(CONFIG_CLEAN_FILES)
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
maintainer-clean-generic:
clean-am: clean-generic clean-local mostlyclean-am
distclean: distclean-am
+ -rm -f Makefile
distclean-am: clean-am distclean-generic
installcheck-am: installcheck-local
maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic