Commit 2d52e9e3 by Phil Edwards Committed by Phil Edwards

configure.ac (AM_INIT_AUTOMAKE): Don't warn about GNU Make.

2003-12-16  Phil Edwards  <phil@codesourcery.com>

	* configure.ac (AM_INIT_AUTOMAKE):  Don't warn about GNU Make.
	* configure:  Regenerated.
	* Makefile.am (check-%):  New catch-all forwarding target.
	* Makefile.in:  Regenerated.

From-SVN: r74718
parent da2fd948
2003-12-16 Phil Edwards <phil@codesourcery.com>
* configure.ac (AM_INIT_AUTOMAKE): Don't warn about GNU Make.
* configure: Regenerated.
* Makefile.am (check-%): New catch-all forwarding target.
* Makefile.in: Regenerated.
2003-12-16 Paolo Carlini <pcarlini@suse.de> 2003-12-16 Paolo Carlini <pcarlini@suse.de>
* testsuite/performance/container_benchmark.cc: New, a * testsuite/performance/container_benchmark.cc: New, a
......
...@@ -52,6 +52,10 @@ doxygen-man: ...@@ -52,6 +52,10 @@ doxygen-man:
.PHONY: doxygen doxygen-maint doxygen-man .PHONY: doxygen doxygen-maint doxygen-man
# Handy forwarding targets.
check-%:
cd testsuite && $(MAKE) $@
# Multilib support. # Multilib support.
MAKEOVERRIDES= MAKEOVERRIDES=
......
# Makefile.in generated by automake 1.7.8 from Makefile.am. # Makefile.in generated by automake 1.7.9 from Makefile.am.
# @configure_input@ # @configure_input@
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
...@@ -306,7 +306,7 @@ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ ...@@ -306,7 +306,7 @@ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno configure.lineno
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/fragment.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/fragment.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
cd $(top_srcdir) && \ cd $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile $(AUTOMAKE) --foreign ./Makefile
Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe) cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)
...@@ -590,7 +590,7 @@ install-am: all-am ...@@ -590,7 +590,7 @@ install-am: all-am
installcheck: installcheck-recursive installcheck: installcheck-recursive
install-strip: install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
INSTALL_STRIP_FLAG=-s \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \ `test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic: mostlyclean-generic:
...@@ -696,6 +696,10 @@ doxygen-man: ...@@ -696,6 +696,10 @@ doxygen-man:
.PHONY: doxygen doxygen-maint doxygen-man .PHONY: doxygen doxygen-maint doxygen-man
# Handy forwarding targets.
check-%:
cd testsuite && $(MAKE) $@
# Multilib support. # Multilib support.
.PHONY: all-multi mostlyclean-multi clean-multi distclean-multi \ .PHONY: all-multi mostlyclean-multi clean-multi distclean-multi \
maintainer-clean-multi maintainer-clean-multi
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -56,8 +56,9 @@ fi ...@@ -56,8 +56,9 @@ fi
# foreign: we don't follow the normal rules for GNU packages (no COPYING # foreign: we don't follow the normal rules for GNU packages (no COPYING
# file in the top srcdir, etc, etc), so stop complaining. # file in the top srcdir, etc, etc), so stop complaining.
# no-dependencies: turns off auto dependency generation (just for now) # no-dependencies: turns off auto dependency generation (just for now)
# -Wall: turns on all automake warnings # -Wall: turns on all automake warnings...
AM_INIT_AUTOMAKE([1.7.6 no-define foreign no-dependencies -Wall]) # -Wno-portability: ...except this one, since GNU make is now required.
AM_INIT_AUTOMAKE([1.7.6 no-define foreign no-dependencies -Wall -Wno-portability])
# Runs configure.host, finds CC, CXX, and assorted other critical bits. Sets # Runs configure.host, finds CC, CXX, and assorted other critical bits. Sets
# up critical shell variables. # up critical shell variables.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment